vscode-elixir-test
vscode-elixir-test copied to clipboard
Visual Studio Code extension to interact with elixir tests
When in a file `wrong_test_file_extension.ex` and trying to jumpo to `wrong_test_file_extension_test.exs`, it tries to jump somewhere it can't find (probably `wrong_file_extension_test.exs` ). It is probably this part of the code...
The `watchTestAtCursor` command was using the `mix.testFileAt` function which didn't really watch for file changes at all, but rather just ran the function once. This change will fix that by...
Fixes #86 Shows the terminal if it isn't already showing.
The extension stopped working for me, and I believe it was after a VSCodium update. ## Steps to reproduce 1. Have VSCodium 1.84.2 and elixir-text 1.8.1 installed. 2. Try to...
With version 1.8.x, when I try to run a test, the terminal does not open. I have to manually open it in order to see the test run. I like...
Sometimes I trigger the shortcut to run the test, but my terminal is attached to a iex, tig or something else, and it does not work because it tries to...
When running the test suite on a umbrella app, I want to be able to run `mix test` in the current app or in the umbrella's root. I usually run...
Thank you for being part of the Open VSX community by adding your extensions to the Open VSX Registry. Please note that the service was recently transferred to the Eclipse...
Currently we don't have snippets when typing any test syntax to create tests on elixir. It would be good to have some snippets when typing `describe`, or `test`, for example...