一个典型的 Elixir 项目有这样的结构:
project
|-- lib
| `-- my_module.ex
`-- test
|-- my_module_test.exs
`-- test_helper.exs
在编写节点项目时,我喜欢将我的测试模块放在他们正在测试的模块旁边。这可以使用 Jest 等工具轻松配置:
project
|-- lib
| |-- my_module.ex
| `-- my_module.test.exs
`-- test
`-- test_helper.exs
是否可以在 Elixir/Exunit 中进行类似的设置?