We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6736987 commit fe369e6Copy full SHA for fe369e6
1 file changed
src/platform/packages/shared/kbn-eval-kql/src/eval_kql.test.ts
@@ -337,9 +337,9 @@ describe('evaluateKql', () => {
337
const kql = 'timestamp > now-7d';
338
// now-7d is 2025-01-08T12:00:00Z
339
expect(evaluateKql(kql, { timestamp: '2025-01-09T00:00:00.000Z' })).toBe(true);
340
- expect(
341
- evaluateKql(kql, { timestamp: dateMath.parse('now-7d')!.toISOString() })
342
- ).toBe(false);
+ expect(evaluateKql(kql, { timestamp: dateMath.parse('now-7d')!.toISOString() })).toBe(
+ false
+ );
343
});
344
345
it('should evaluate <= with datemath on the right side', () => {
0 commit comments