mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-23 00:22:19 +01:00
Remove the lastSeenAt property when checking for stale data --------- Signed-off-by: andreas-unleash <andreas@getunleash.ai>
50 lines
1.2 KiB
TypeScript
50 lines
1.2 KiB
TypeScript
import { deepOmit } from './deepOmit';
|
|
|
|
test('should omit all instances of a given field', () => {
|
|
const input = {
|
|
name: 'some-name',
|
|
color: 'blue',
|
|
children: {
|
|
name: 'some-name',
|
|
color: 'blue',
|
|
children: {
|
|
name: 'some-name',
|
|
color: 'blue',
|
|
children: {
|
|
name: 'some-name',
|
|
color: 'blue',
|
|
children: {},
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
expect(deepOmit(input, 'name')).toEqual({
|
|
color: 'blue',
|
|
children: {
|
|
color: 'blue',
|
|
children: {
|
|
color: 'blue',
|
|
children: {
|
|
color: 'blue',
|
|
children: {},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
expect(deepOmit(input, 'color')).toEqual({
|
|
name: 'some-name',
|
|
children: {
|
|
name: 'some-name',
|
|
children: {
|
|
name: 'some-name',
|
|
children: {
|
|
name: 'some-name',
|
|
children: {},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
});
|