Skip to content

Commit

Permalink
Merge pull request #91 from Pineappletooth/windows_support
Browse files Browse the repository at this point in the history
fix windows support
  • Loading branch information
haydenmeade authored Feb 12, 2024
2 parents a394106 + 24569db commit c211844
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lua/neotest-jest/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,6 @@ local function parsed_json_to_results(data, output_file, consoleOut)

for _, testResult in pairs(data.testResults) do
local testFn = testResult.name

for _, assertionResult in pairs(testResult.assertionResults) do
local status, name = assertionResult.status, assertionResult.title

Expand Down Expand Up @@ -410,7 +409,7 @@ function adapter.build_spec(args)
"--outputFile=" .. results_path,
"--testNamePattern=" .. testNamePattern,
"--forceExit",
pos.path,
vim.fs.normalize(pos.path),
})

local cwd = getCwd(pos.path)
Expand Down

0 comments on commit c211844

Please sign in to comment.