Add annotations in searchValues
This commit is contained in:
parent
1e2d17fd96
commit
70f442e93a
|
|
@ -176,6 +176,7 @@ function cacheSearchValues(test: TestCaseSummary): SearchValues {
|
|||
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())
|
||||
};
|
||||
(test as any)[searchValuesSymbol] = searchValues;
|
||||
return searchValues;
|
||||
|
|
|
|||
Loading…
Reference in a new issue