Skip to content

Commit

Permalink
Fixed: No tests found on Windows due to usage of backslashes instead …
Browse files Browse the repository at this point in the history
…of normal slashes
  • Loading branch information
Adam-Tg committed Oct 30, 2022
1 parent 2051686 commit 0106c5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/neotest-jest/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ function adapter.build_spec(args)
"--json",
"--outputFile=" .. results_path,
"--testNamePattern=" .. testNamePattern,
pos.path,
string.gsub(pos.path, '\\', '/'),
})

local cwd = getCwd(pos.path)
Expand Down

0 comments on commit 0106c5a

Please sign in to comment.