Skip to content

Commit

Permalink
Merge 0dce9bc into efd7c69
Browse files Browse the repository at this point in the history
  • Loading branch information
hbenl authored Mar 22, 2024
2 parents efd7c69 + 0dce9bc commit 05f3be5
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ export function TestRunTestPanel() {
const selectedTest = tests?.find(
t =>
t.testId === testId &&
(filterTestsByText === "" || t.sourcePath.toLowerCase().includes(filterTestsByText))
(filterTestsByText === "" ||
t.sourcePath.toLowerCase().includes(filterTestsByText) ||
t.title.toLowerCase().includes(filterTestsByText))
);

if (!tests?.length) {
Expand Down

0 comments on commit 05f3be5

Please sign in to comment.