55b495faa2
WHAT: added untitled project creation after adding payment method. UI was slightly changed. WHY: new onboarding flow Change-Id: I6cca1c784bd0462f20f2b06cc6595b9920d4f992
38 lines
1.2 KiB
TypeScript
38 lines
1.2 KiB
TypeScript
// Copyright (C) 2020 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import Vuex from 'vuex';
|
|
|
|
import AddPaymentStep from '@/components/onboardingTour/steps/AddPaymentStep.vue';
|
|
|
|
import { PaymentsHttpApi } from '@/api/payments';
|
|
import { makePaymentsModule } from '@/store/modules/payments';
|
|
import { makeProjectsModule } from '@/store/modules/projects';
|
|
import { createLocalVue, shallowMount } from '@vue/test-utils';
|
|
|
|
import { ProjectsApiMock } from '../../mock/api/projects';
|
|
|
|
const localVue = createLocalVue();
|
|
localVue.use(Vuex);
|
|
const projectsApi = new ProjectsApiMock();
|
|
const projectsModule = makeProjectsModule(projectsApi);
|
|
const paymentsApi = new PaymentsHttpApi();
|
|
const paymentsModule = makePaymentsModule(paymentsApi);
|
|
|
|
const store = new Vuex.Store({ modules: { projectsModule, paymentsModule }});
|
|
|
|
describe('AddPaymentStep.vue', () => {
|
|
it('renders correctly', async (): Promise<void> => {
|
|
const wrapper = shallowMount(AddPaymentStep, {
|
|
store,
|
|
localVue,
|
|
});
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
await wrapper.find('.payment-step__methods-container__title-area__options-area__token').trigger('click');
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|