2020-04-22 17:21:12 +01:00
|
|
|
// Copyright (C) 2020 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
2023-05-16 13:09:46 +01:00
|
|
|
import { shallowMount } from '@vue/test-utils';
|
2020-04-22 17:21:12 +01:00
|
|
|
|
2022-09-08 15:11:09 +01:00
|
|
|
import OnboardingTourArea from '@/components/onboardingTour/OnboardingTourArea.vue';
|
2020-04-22 17:21:12 +01:00
|
|
|
|
|
|
|
describe('OnboardingTourArea.vue', () => {
|
|
|
|
it('renders correctly', (): void => {
|
2023-05-16 13:09:46 +01:00
|
|
|
const wrapper = shallowMount(OnboardingTourArea);
|
2020-04-22 17:21:12 +01:00
|
|
|
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
});
|