summaryrefslogtreecommitdiff
path: root/spec/frontend/registry/shared/utils_spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/registry/shared/utils_spec.js')
-rw-r--r--spec/frontend/registry/shared/utils_spec.js37
1 files changed, 0 insertions, 37 deletions
diff --git a/spec/frontend/registry/shared/utils_spec.js b/spec/frontend/registry/shared/utils_spec.js
deleted file mode 100644
index edb0c3261be..00000000000
--- a/spec/frontend/registry/shared/utils_spec.js
+++ /dev/null
@@ -1,37 +0,0 @@
-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();
- });
- });
-});