storj/web/satellite/tests/unit/onboardingTour/steps/paymentStates/AddCardState.spec.ts

15 lines
410 B
TypeScript
Raw Normal View History

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