neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 0bc323850410df4c3c1dd8fabded9d2000189270
parent 824639c7c17c4870cde83dd28fed7ed6be0ed4c9
Author: dundargoc <33953936+dundargoc@users.noreply.github.com>
Date:   Thu,  6 Apr 2023 18:13:57 +0200

test(Windows): normalize paths for test summary

It previously gave a mix of forward and backslashes which was jarring.
Diffstat:
Mtest/busted/outputHandlers/nvim.lua | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/busted/outputHandlers/nvim.lua b/test/busted/outputHandlers/nvim.lua @@ -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