-
Testing behaviour and outcomes is an important part of developing software for many teams. Making it easier to test `Rihanna` job behaviour in `ExUnit` tests would be helpful to this aim.
Ideally w…
-
The idea is to read the file that is used by ExUnit to write failed tests, so next time when you open summary of tests, you can already see failed tests even though they were run from the CLI.
https:…
-
We can use https://hexdocs.pm/ex_unit/ExUnit.CaptureLog.html#content to capture logs, but for some reason it's outputting ANSI data in the log data when it shouldn't be. Once that's resolved, this sho…
-
Hey there,
I just started using this mail client, and it works like a charm! Thank you all for your hard work :)
One thing that really surprised me during integration testing is that the assertion…
-
- From `test/test_helper.exs`, let's add `exclude` option to skip tests you don't want to run
```elixir
# test/test_helper.exs
ExUnit.start(exclude: [:skip])
```
After that, add `@tag :skip` …
-
First, I wanted to say thank you for work. I have the feeling `asyncrun` will be a plugin I will use a lot. Kudos for neovim support 😄 .
I have read your [FAQ about how to process the content in qu…
-
There are some things that you can do in a test that's run asynchronously that you shouldn't do, like using `ExUnit.CaptureIO.capture_io/2` with a device other than `:stdio`. It would be nice if Credo…
-
My project's application starts with a few workers that shouldn't start during testing. When I run `mix white_bread.run --no-start`, the context fails to find any module in the project.
Referring to …
-
If process linked with test failed for some reason `after` block of with_mock macro isn't guaranteed to run and mocks isn't unloaded correctly, since if linked process exits test process will also exi…
-
**Describe the bug**
Elixir and erlang installed via asdf. When running a test, an error appears as follows:
```
/Users/matthewgibson/.asdf/installs/erlang/23.2.4/bin/erl -pa /Users/matthewgibson…