mix-test.watch icon indicating copy to clipboard operation
mix-test.watch copied to clipboard

🎠 Because TDD is awesome

Results 19 mix-test.watch issues
Sort by recently updated
recently updated
newest added

Prior to this change, `MIX_ENV=test` was forced and any `preferred_cli_env` and `preferred_cli_target` configuration in the `mix.exs` would look like it was ignored. In actuality, `preferred_cli_*` wasn't ignored, but you'd have...

I'm using elixir 1.13.2 I needed this to make `config :mix_test_watch ...` work properly: ```ex if config_env() == :test do config :mix_test_watch, clear: true end ``` and no `use Mix.Config`...

This means we can remove the work done in the hotrunner.

Kind: Enhancement

`IO.ANSI.clear` + `home` seem to not clear scrollback (atleast on macOS), i.e. it prints "one screen height" of blank space and resets the cursor to the first position. A little...

hi there, i upgrade the macOS to 11.1(macOS Big Sur) recently and the test.watch package(latest 1.0.2 ) can not work like before. ```shell > mix test.watch --only wip 20:49:41.954 [error]...

Kind: Bug

This is exactly the same issue as described in https://github.com/lpil/mix-test.watch/issues/28. However, moving the options under the dev configuration (via if statement or using dedicated `config/dev.exs` file) does not solve the...

The first run when using `mix test.watch` is successful, but after a file change, there is an error when bcrypt is called (from Comeonin) as the seeds are run (which...

Kind: Bug

A common pattern we use with mix-test.watch is to run `mix tes.watcht`, and if any errors are found run `mix test.watch --failed`, fixing errors until all the failed ones are...

Hello, I get this error: ``` $ mix test.watch Running tests... ** (Mix) The database for App.Repo couldn't be dropped: ERROR 55006 (object_in_use): database "app_test" is being accessed by other...

Problem: - Combination of zombie_killer and test command quotes are causing the unit tests to not run Solution: - Remove use of exec in sh script because it is being...