Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
keroxp committed Feb 19, 2024
1 parent e1a265b commit 88c9dcc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/pure/testName.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,3 @@ export function transformTestPattern({ testName, isEach }: { testName: string; i
}
return result
}

3 changes: 2 additions & 1 deletion src/watch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,8 @@ export function syncTestStatusToVsCode(
function groupTasksByPattern(
map: Map<TestCase | TestDescribe, Task[]>,
vscode: (TestDescribe | TestCase)[],
vitest: Task[]) {
vitest: Task[],
) {
const set = new Set(vitest)
for (const descOrTest of vscode) {
const tasks = matchTask(descOrTest, set)
Expand Down

0 comments on commit 88c9dcc

Please sign in to comment.