From 74f433267ede6bce63204432e7aa5b85f748fa8d Mon Sep 17 00:00:00 2001 From: Pedro Nastasi Date: Tue, 10 Feb 2026 15:19:14 +0000 Subject: [PATCH] remove redundant comment in performance test Signed-off-by: Pedro Nastasi --- .../src/database/operations/stitcher/buildEntitySearch.test.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/catalog-backend/src/database/operations/stitcher/buildEntitySearch.test.ts b/plugins/catalog-backend/src/database/operations/stitcher/buildEntitySearch.test.ts index 11fc69aaa1..5a9e634e35 100644 --- a/plugins/catalog-backend/src/database/operations/stitcher/buildEntitySearch.test.ts +++ b/plugins/catalog-backend/src/database/operations/stitcher/buildEntitySearch.test.ts @@ -63,7 +63,6 @@ describe('buildEntitySearch', () => { const output = traverse(input); const elapsed = performance.now() - start; - // Each item produces 2 entries: { key: 'tags', value: 'tag-N' } and { key: 'tags.tag-N', value: true } expect(output).toHaveLength(1000); // Should complete well under 100ms with O(n); O(n²) would be noticeably slower expect(elapsed).toBeLessThan(100);