27d9d9f6d4
Start using new pinia module instead of old vuex module Change-Id: I6bb5d4a5cf0eeb4d0a86afce760f5c258c20c1e5
40 lines
1.0 KiB
TypeScript
40 lines
1.0 KiB
TypeScript
// Copyright (C) 2020 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import Vuex from 'vuex';
|
|
import { createLocalVue, shallowMount } from '@vue/test-utils';
|
|
|
|
import { NotificatorPlugin } from '@/utils/plugins/notificator';
|
|
|
|
import CreateProject from '@/components/project/CreateProject.vue';
|
|
|
|
const localVue = createLocalVue();
|
|
|
|
localVue.use(Vuex);
|
|
|
|
const store = new Vuex.Store({});
|
|
|
|
localVue.use(new NotificatorPlugin(store));
|
|
|
|
describe('CreateProject.vue', (): void => {
|
|
it('renders correctly', (): void => {
|
|
const wrapper = shallowMount<CreateProject>(CreateProject, {
|
|
store,
|
|
localVue,
|
|
});
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
|
|
it('renders correctly with project name', async (): Promise<void> => {
|
|
const wrapper = shallowMount<CreateProject>(CreateProject, {
|
|
store,
|
|
localVue,
|
|
});
|
|
|
|
await wrapper.vm.setProjectName('testName');
|
|
|
|
expect(wrapper.findAll('.disabled').length).toBe(0);
|
|
});
|
|
});
|