befe7574e1
Change-Id: I40c6680de4778700611f2f6978a02688d50d792f
15 lines
372 B
TypeScript
15 lines
372 B
TypeScript
// Copyright (C) 2020 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import ProgressBar from '@/components/onboardingTour/ProgressBar.vue';
|
|
|
|
import { mount } from '@vue/test-utils';
|
|
|
|
describe('ProgressBar.vue', () => {
|
|
it('renders correctly', (): void => {
|
|
const wrapper = mount(ProgressBar);
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|