37 lines
1.2 KiB
JavaScript
37 lines
1.2 KiB
JavaScript
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();
|
|
});
|
|
});
|
|
});
|