用的koa2的框架
所以会使用到es6和es7的内容
目前使用了mocha 的单元测试
mocha --compilers js:babel-core/register
运行时加入这个bebel 的编译模块,但是怀疑只能编译ES6?
编译和打包是使用了babel-cli ,那么如何结合mocha使用呢?
还是还有其他方法?
迷茫2017-04-11 11:04:38
用npm来调用你的mocha,可以在测试前先编译。我的package.json就添加了几个script.
"test-build": "tsc -p ./src/test && cp -r ./src/test/assets ./build/test/assets",
"pretest": "npm run test-build",
"test": "mocha --require source-map-support/register -t 10000 --recursive build/test"
这时候,只需要 npm test
就可以了。我使用的是TypeScript