storj/web/satellite/tests/unit/ignore/onboardingTour/OnboardingTourArea.spec.ts
Vitalii ace0ef89a2 web/satellite: migrated Vue 2 to Vue 3
Finally migrated web/satellite UI to use Vue 3.

Issue:
https://github.com/storj/storj/issues/5862

Change-Id: I609e2332142b9092d6efeb2d4b931e34cce846cc
2023-05-17 17:31:03 +00:00

15 lines
414 B
TypeScript

// Copyright (C) 2020 Storj Labs, Inc.
// See LICENSE for copying information.
import { shallowMount } from '@vue/test-utils';
import OnboardingTourArea from '@/components/onboardingTour/OnboardingTourArea.vue';
describe('OnboardingTourArea.vue', () => {
it('renders correctly', (): void => {
const wrapper = shallowMount(OnboardingTourArea);
expect(wrapper).toMatchSnapshot();
});
});