标签: mocha
我的test目录中有很多测试...像这样...
test
./test/foo.js ./test/bar.js
要运行测试,我要运行
node_modules/.bin/mocha --recursive ./test
我想在运行任何这些测试之前设置我的环境。
//code I want to run before any of my tests require('dotenv');
我应该怎么做?