storj/web/satellite/tests/unit/common/HeaderlessInput.spec.ts

55 lines
1.6 KiB
TypeScript
Raw Normal View History

2019-01-24 20:15:10 +00:00
// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
2018-11-16 14:28:02 +00:00
import HeaderlessInput from '@/components/common/HeaderlessInput.vue';
2019-09-09 11:33:39 +01:00
import { mount, shallowMount } from '@vue/test-utils';
2019-09-09 11:33:39 +01:00
describe('HeaderlessInput.vue', () => {
it('renders correctly with default props', () => {
const wrapper = shallowMount(HeaderlessInput);
expect(wrapper).toMatchSnapshot();
});
it('renders correctly with size props', () => {
2019-09-09 11:33:39 +01:00
const placeholder = 'test';
const width = '30px';
const height = '20px';
const wrapper = shallowMount(HeaderlessInput, {
propsData: {placeholder, width, height},
});
expect(wrapper.find('input').element.style.width).toMatch(width);
expect(wrapper.find('input').element.style.height).toMatch(height);
expect(wrapper).toMatchSnapshot();
});
it('renders correctly with isPassword prop', () => {
const wrapper = mount(HeaderlessInput, {
propsData: {isPassword: true},
});
expect(wrapper).toMatchSnapshot();
});
it('emit setData on input correctly', () => {
2019-09-09 11:33:39 +01:00
const testData = 'testData';
const wrapper = mount(HeaderlessInput);
wrapper.find('input').trigger('input');
let emittedSetData = wrapper.emitted('setData');
if (emittedSetData) expect(emittedSetData.length).toEqual(1);
wrapper.vm.$emit('setData', testData);
emittedSetData = wrapper.emitted('setData');
if (emittedSetData) expect(emittedSetData[1][0]).toEqual(testData);
});
});