3bbf08917c
WHAT: node packages updated to be up to date Change-Id: Ic5a44c548562f16b23da59d3c39c4634572f7b35
19 lines
477 B
TypeScript
19 lines
477 B
TypeScript
// Copyright (C) 2020 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import UploadDataStep from '@/components/onboardingTour/steps/UploadDataStep.vue';
|
|
|
|
import { createLocalVue, mount } from '@vue/test-utils';
|
|
|
|
const localVue = createLocalVue();
|
|
|
|
describe('UploadDataStep.vue', () => {
|
|
it('renders correctly', (): void => {
|
|
const wrapper = mount(UploadDataStep, {
|
|
localVue,
|
|
});
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|