debian-mirror-gitlab/spec/frontend/registry/shared/utils_spec.js

38 lines
1.2 KiB
JavaScript
Raw Normal View History

2021-01-03 14:25:43 +05:30
import {
formOptionsGenerator,
optionLabelGenerator,
olderThanTranslationGenerator,
} from '~/registry/shared/utils';
describe('Utils', () => {
describe('optionLabelGenerator', () => {
it('returns an array with a set label', () => {
const result = optionLabelGenerator(
[{ variable: 1 }, { variable: 2 }],
olderThanTranslationGenerator,
);
expect(result).toEqual([
{ variable: 1, label: '1 day until tags are automatically removed' },
{ variable: 2, label: '2 days until tags are automatically removed' },
]);
});
});
describe('formOptionsGenerator', () => {
it('returns an object containing olderThan', () => {
expect(formOptionsGenerator().olderThan).toBeDefined();
expect(formOptionsGenerator().olderThan).toMatchSnapshot();
});
it('returns an object containing cadence', () => {
expect(formOptionsGenerator().cadence).toBeDefined();
expect(formOptionsGenerator().cadence).toMatchSnapshot();
});
it('returns an object containing keepN', () => {
expect(formOptionsGenerator().keepN).toBeDefined();
expect(formOptionsGenerator().keepN).toMatchSnapshot();
});
});
});