storj/web/satellite/tests/unit/onboardingTour/steps/paymentStates/AddCardState.spec.ts
VitaliiShpital befe7574e1 web/satellite: onboarding tour: adding payment methods step
Change-Id: I40c6680de4778700611f2f6978a02688d50d792f
2020-04-27 12:59:43 +03:00

15 lines
410 B
TypeScript

// 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();
});
});