32 lines
783 B
TypeScript
32 lines
783 B
TypeScript
|
// Copyright (C) 2020 Storj Labs, Inc.
|
||
|
// See LICENSE for copying information.
|
||
|
|
||
|
import VBar from '@/components/common/VBar.vue';
|
||
|
|
||
|
import { mount } from '@vue/test-utils';
|
||
|
|
||
|
describe('VBar.vue', () => {
|
||
|
it('renders correctly', () => {
|
||
|
const wrapper = mount(VBar, {
|
||
|
propsData: {
|
||
|
current: 500,
|
||
|
max: 1000,
|
||
|
},
|
||
|
});
|
||
|
|
||
|
expect(wrapper).toMatchSnapshot();
|
||
|
});
|
||
|
|
||
|
it('renders correctly if current > max', () => {
|
||
|
const wrapper = mount(VBar, {
|
||
|
propsData: {
|
||
|
current: 1000,
|
||
|
max: 500,
|
||
|
},
|
||
|
});
|
||
|
|
||
|
expect(wrapper).toMatchSnapshot();
|
||
|
expect(wrapper.find('.bar-container__fill').element.style.width).toMatch('100%');
|
||
|
});
|
||
|
});
|