2284008b8c
Change-Id: I8ffa6d688a22c1568495a7e0e176096cadcd6eaa
48 lines
1.4 KiB
TypeScript
48 lines
1.4 KiB
TypeScript
// Copyright (C) 2020 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import ProgressBar from '@/components/onboardingTour/ProgressBar.vue';
|
|
|
|
import { mount } from '@vue/test-utils';
|
|
|
|
describe('ProgressBar.vue', () => {
|
|
it('renders correctly', (): void => {
|
|
const wrapper = mount(ProgressBar);
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
|
|
it('renders correctly if create project step is completed', (): void => {
|
|
const wrapper = mount(ProgressBar, {
|
|
propsData: {
|
|
isCreateProjectStep: true,
|
|
},
|
|
});
|
|
|
|
expect(wrapper.findAll('.completed-step').length).toBe(1);
|
|
expect(wrapper.findAll('.completed-font-color').length).toBe(1);
|
|
});
|
|
|
|
it('renders correctly if create api key step is completed', (): void => {
|
|
const wrapper = mount(ProgressBar, {
|
|
propsData: {
|
|
isCreateApiKeyStep: true,
|
|
},
|
|
});
|
|
|
|
expect(wrapper.findAll('.completed-step').length).toBe(3);
|
|
expect(wrapper.findAll('.completed-font-color').length).toBe(2);
|
|
});
|
|
|
|
it('renders correctly if upload data step is completed', (): void => {
|
|
const wrapper = mount(ProgressBar, {
|
|
propsData: {
|
|
isUploadDataStep: true,
|
|
},
|
|
});
|
|
|
|
expect(wrapper.findAll('.completed-step').length).toBe(5);
|
|
expect(wrapper.findAll('.completed-font-color').length).toBe(3);
|
|
});
|
|
});
|