Mneme v0.10.0 is now available
This release adds mix mneme.test
, a basic wrapper around mix test
that allows Mneme's configuration options to be passed at the command line in addition to all the options normally accepted when running tests. Additionally, mix mneme.watch
now wraps mneme.test
and therefore takes the same options.
I recommend you add :"mneme.test"
to your :preferred_cli_env
in mix.exs
:
def project do
[
...
preferred_cli_env: [
"mneme.test": :test,
"mneme.watch": :test
],
...
]
end
You can also simply run MIX_ENV=test mix mneme.install
to update your setup.