ash/test/test_helper.exs
Frédérick Capovilla 76783b355b
feat: Add unknown argument error when passing an unknown key to an action. (#750)
* improvement: Add ash_three? feature flag for Ash 3.0 related behaviors.

* test: Add the ash_three test tag to exclude tests targetting Ash 3.0
2023-10-24 12:27:33 -04:00

9 lines
287 B
Elixir

exclude = [
ash_three: System.get_env("FLAG_ASH_THREE", "false") != "true"
]
ExUnit.start(stacktrace_depth: 100, exclude: exclude)
Logger.configure(level: :debug)
# We compile modules with the same name often while testing the DSL
Code.compiler_options(ignore_module_conflict: true)