test(Windows): normalize paths for test summary

It previously gave a mix of forward and backslashes which was jarring.
This commit is contained in:
dundargoc 2023-04-06 18:13:57 +02:00 committed by GitHub
parent 824639c7c1
commit 0bc3238504
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -204,7 +204,7 @@ return function(options)
handler.fileStart = function(file)
fileTestCount = 0
io.write(fileStartString:format(file.name))
io.write(fileStartString:format(vim.fs.normalize(file.name)))
io.flush()
return nil, true
end
@ -213,7 +213,7 @@ return function(options)
local elapsedTime_ms = getElapsedTime(file)
local tests = (fileTestCount == 1 and 'test' or 'tests')
fileCount = fileCount + 1
io.write(fileEndString:format(fileTestCount, tests, file.name, elapsedTime_ms))
io.write(fileEndString:format(fileTestCount, tests, vim.fs.normalize(file.name), elapsedTime_ms))
io.flush()
return nil, true
end