1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00
unleash.unleash/frontend/src/utils/cleanConstraint.test.ts

32 lines
655 B
TypeScript
Raw Normal View History

import { cleanConstraint } from 'utils/cleanConstraint';
test('cleanConstraint values', () => {
expect(
cleanConstraint({
contextName: '',
operator: 'IN',
value: '1',
values: ['2'],
})
).toEqual({
contextName: '',
operator: 'IN',
values: ['2'],
});
});
test('cleanConstraint value', () => {
expect(
cleanConstraint({
contextName: '',
operator: 'NUM_EQ',
value: '1',
values: ['2'],
})
).toEqual({
contextName: '',
operator: 'NUM_EQ',
value: '1',
});
});