ace0ef89a2
Finally migrated web/satellite UI to use Vue 3. Issue: https://github.com/storj/storj/issues/5862 Change-Id: I609e2332142b9092d6efeb2d4b931e34cce846cc
23 lines
646 B
TypeScript
23 lines
646 B
TypeScript
// Copyright (C) 2020 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import { shallowMount } from '@vue/test-utils';
|
|
|
|
import CreateProject from '@/components/project/CreateProject.vue';
|
|
|
|
describe('CreateProject.vue', (): void => {
|
|
it('renders correctly', (): void => {
|
|
const wrapper = shallowMount(CreateProject);
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
|
|
it('renders correctly with project name', async (): Promise<void> => {
|
|
const wrapper = shallowMount(CreateProject);
|
|
|
|
await wrapper.vm.setProjectName('testName');
|
|
|
|
expect(wrapper.findAll('.disabled').length).toBe(0);
|
|
});
|
|
});
|