From 3e74564793b5043ab2d1310c1bef3dc7e4bc141c Mon Sep 17 00:00:00 2001 From: Aman Kumar Date: Thu, 28 Mar 2024 19:31:53 +0530 Subject: [PATCH] Refactoring --- packages/html-reporter/src/filter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/html-reporter/src/filter.ts b/packages/html-reporter/src/filter.ts index 1b4fc18209bfd..bece86e5ef9db 100644 --- a/packages/html-reporter/src/filter.ts +++ b/packages/html-reporter/src/filter.ts @@ -120,7 +120,7 @@ export class Filter { line: String(test.location.line), column: String(test.location.column), labels: test.tags.map(tag => tag.toLowerCase()), - annotations: test.annotations.map(a => a.type.toLowerCase() + ':' + a.description?.toLocaleLowerCase()) + annotations: test.annotations.map(a => a.type.toLowerCase() + '=' + a.description?.toLocaleLowerCase()) }; (test as any).searchValues = searchValues; }