grafana/public/app/features/search/page/selection.test.ts

16 lines
551 B
TypeScript
Raw Normal View History

import { newSearchSelection, updateSearchSelection } from './selection';
describe('Search selection helper', () => {
it('simple dashboard selection', () => {
let sel = newSearchSelection();
expect(sel.isSelected('dash', 'aaa')).toBe(false);
sel = updateSearchSelection(sel, true, 'dash', ['aaa']);
expect(sel.isSelected('dash', 'aaa')).toBe(true);
sel = updateSearchSelection(sel, false, 'dash', ['aaa']);
expect(sel.isSelected('dash', 'aaa')).toBe(false);
expect(sel.items).toMatchInlineSnapshot(`Map {}`);
});
});