storj/web/satellite/tests/unit/common/TestList.spec.ts
2019-08-09 14:38:23 +03:00

30 lines
991 B
TypeScript

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
import { mount } from '@vue/test-utils';
import TestList from '@/components/common/test/TestList.vue';
import * as sinon from 'sinon';
describe('TestList.vue', () => {
it('should render list of primitive types', function () {
const wrapper = mount(TestList, {
propsData: {
onItemClick: sinon.stub()
}
});
expect(wrapper.html()).toBe('<div class="item-component"><h1 class="item-component__item">1</h1><h1 class="item-component__item">2</h1><h1 class="item-component__item">3</h1></div>');
});
it('should retrieve callback', function () {
let onPressSpy = sinon.spy();
const wrapper = mount(TestList, {
propsData: {
onItemClick: onPressSpy,
}
});
wrapper.find('.item-component__item').trigger('click');
expect(onPressSpy.callCount).toBe(1);
});
});