2020-04-22 17:21:12 +01:00
|
|
|
// 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();
|
|
|
|
});
|
2020-04-30 21:35:09 +01:00
|
|
|
|
|
|
|
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);
|
|
|
|
});
|
2020-04-22 17:21:12 +01:00
|
|
|
});
|