storj/web/satellite/tests/unit/common/PagesBlock.spec.ts
Egon Elbre 6b153192a3 web/satellite: fix lint issues
After migrating to eslint some errors were disabled to make it easier to
migrate.

This enables all the lint rules and treats all warnings as a build
failure. Similarly, CI won't automatically try to fix mistakes.

Change-Id: I80f808af026fc51bed90421b3b24737994a52094
2021-08-10 09:22:19 +00:00

59 lines
1.6 KiB
TypeScript

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
import * as sinon from 'sinon';
import PagesBlock from '@/components/common/PagesBlock.vue';
import { Page } from '@/types/pagination';
import { shallowMount } from '@vue/test-utils';
describe('Pagination.vue', () => {
it('renders correctly without props', () => {
const wrapper = shallowMount(PagesBlock);
expect(wrapper).toMatchSnapshot();
});
it('renders correctly with props', () => {
const callbackSpy = sinon.spy();
const pagesArray: Page[] = [];
const SELECTED_PAGE_INDEX = 3;
for (let i = 1; i <= 4; i++) {
pagesArray.push(new Page(i, callbackSpy));
}
const wrapper = shallowMount(PagesBlock, {
propsData: {
pages: pagesArray,
isSelected: (i: number) => i === SELECTED_PAGE_INDEX,
},
});
expect(wrapper).toMatchSnapshot();
expect(wrapper.findAll('span').length).toBe(4);
expect(wrapper.findAll('span').at(2).classes().includes('selected')).toBe(true);
});
it('behaves correctly on page click', () => {
const callbackSpy = sinon.spy();
const pagesArray: Page[] = [];
for (let i = 1; i <= 3; i++) {
pagesArray.push(new Page(i, callbackSpy));
}
const wrapper = shallowMount(PagesBlock, {
propsData: {
pages: pagesArray,
isSelected: () => false,
},
});
wrapper.findAll('span').at(1).trigger('click');
expect(callbackSpy.callCount).toBe(1);
});
});