Evgeni Chasnovski

Results 148 comments of Evgeni Chasnovski

Thanks for bringing this! Although 'mini.test' doesn't seem to work yet on Windows, it should be possible to clone/checkout whole plugin on latest `main` branch. Would you mind check that?...

Hmmm... I tried fresh clone and checkout on Windows in Github Actions. Here is the [full job result](https://github.com/echasnovski/nvim/runs/7166899058?check_suite_focus=true). It had warnings about several paths being identical on case insensitive system,...

In 807f068db267053b7b534ad7fe925d49f8937831 I removed the name collision as well. If you have any problems with `main` branch, I hope this should help: `git reset c820abfe --hard && git pull origin...

That is... somewhat expected from Windows :) As quick search showed, does setting this git option helps? ``` git config --system core.longpaths true ``` If yes, I think I'd just...

Thank you for you patience! This gave me a lot of new information to be aware about. I think I'll still try to do something with this long file name.

Hi! Thanks! I did write initially all tests with 'plenary.nvim'. Had several observations which I either didn't like (but fixable upstream with an effort) or was against 'plenary.nvim' design (like...

> When a test fails due to an error, is there a way to display the full stacktrace? Currently, only the error message + the line in the test itself...

> What's your workflow for interactive debugging? As all tests involve child process, the best I could find and which I am fairly comfortable using is the following: - Verify...

Thanks, this is entirely valid use case. The reason this is happening is because `xpcall()` is used when executing test case. It calls `on_error` callback with argument being only error...

@rgrinberg, thanks again for suggestion! It does seem to be a more appropriate form of output. Should be implemented in latest `main`.