debian-mirror-gitlab/spec/frontend/super_sidebar/components/search_results_spec.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1.7 KiB
JavaScript
Raw Normal View History

2023-05-27 22:25:52 +05:30
import { shallowMountExtended } from 'helpers/vue_test_utils_helper';
import { s__ } from '~/locale';
import SearchResults from '~/super_sidebar/components/search_results.vue';
import ItemsList from '~/super_sidebar/components/items_list.vue';
const title = s__('Navigation|PROJECTS');
const noResultsText = s__('Navigation|No project matches found');
describe('SearchResults component', () => {
let wrapper;
const findListTitle = () => wrapper.findByTestId('list-title');
const findItemsList = () => wrapper.findComponent(ItemsList);
const findEmptyText = () => wrapper.findByTestId('empty-text');
const createWrapper = ({ props = {} } = {}) => {
wrapper = shallowMountExtended(SearchResults, {
propsData: {
title,
noResultsText,
...props,
},
});
};
describe('default state', () => {
beforeEach(() => {
createWrapper();
});
it("renders the list's title", () => {
expect(findListTitle().text()).toBe(title);
});
it('renders the empty text', () => {
expect(findEmptyText().exists()).toBe(true);
expect(findEmptyText().text()).toBe(noResultsText);
});
});
describe('when displaying search results', () => {
it('shows search results', () => {
const searchResults = [{ id: 1 }];
createWrapper({ props: { isSearch: true, searchResults } });
expect(findItemsList().props('items')[0]).toEqual(searchResults[0]);
});
it('shows the no results text if search results are empty', () => {
const searchResults = [];
createWrapper({ props: { isSearch: true, searchResults } });
expect(findItemsList().props('items').length).toEqual(0);
expect(findEmptyText().text()).toBe(noResultsText);
});
});
});