MisanthropicBit

Results 17 issues of MisanthropicBit

First of all, thanks for a great bash testing tool! 👍 Almost all of my tests rely on variables that are only expanded when the script is run as an...

First of all, thanks for this awesome project. Really spiced up my Python files! I was wondering if there are any plans to have separate syntax groups for `async` and...

It would be great if vim-test had mappings for jumping to the next or previous test with e.g. `]t` and `[t` or `` mappings so users could bind them themselves....

As mentioned [here](https://github.com/rhysd/git-messenger.vim/pull/69#issuecomment-771844576), I was still in the process of making tests for the word-diff feature #69. I can still create them but I didn't get that far if you...

enhancement

I'm having trouble installing duplicity on Mac OSX Mojave 10.14.5 via pip using Python 2.7.16 (via [`pyenv`](https://github.com/pyenv/pyenv)). Specifically, I get the following output from running `pip2 install duplicity`: ``` Collecting...

This is basically the same PR as the one I made here adrigzr/neotest-mocha#2 which allows for user-configurable test patterns instead of having to gradually accommodate more and more patterns. ###...

This PR adds support for `neotest.RunArgs.extra_args` passed to `build_spec` for adding additional arguments to the test process via `neotest.run.run`. An example use case is running tests and updating snapshots: ```lua...

I've encountered some strange behaviour when using `busted --list`. Consider the following test file: ```lua it("top", function() assert.is_true(true) end) describe("describe 1", function() it("test 1", function() assert.is_true(true) end) it("test 2", function()...