UNPKG

@intersect.mbo/govtool-delegation-pillar

Version:
28 lines (24 loc) 543 B
import { DREP_DIRECTORY_FILTERS } from './filters'; describe('DREP_DIRECTORY_FILTERS', () => { it("should exclude 'Yourself' from filters", () => { // Arrange const expectedFilters = [ { key: 'Active', label: 'Active', }, { key: 'Inactive', label: 'Inactive', }, { key: 'Retired', label: 'Retired', }, ]; // Act const actualFilters = DREP_DIRECTORY_FILTERS; // Assert expect(actualFilters).toEqual(expectedFilters); }); });