如何 运行 使用 local.example.js ENV 进行测试

How to run test with local.example.js ENV

我有 2 个环境:

i 运行 使用此命令 "mocha specs/* --opts ./mocha.opts" 和默认 运行 dev ENV 进行测试。 对于带有 local.example.js ENV 的 运行 我可以使用什么命令?

喜欢"mocha specs/* --opts ./mocha.opts --env local.example.js"

如果您使用的是 mocha 版本 6+,您可以考虑在 *.js 文件而不是旧版 *.opts 文件中定义配置。

然后您将能够 运行 mocha 测试

$ mocha specs/* --config path/to/config.js

这里有更多信息:https://mochajs.org/#-config-path