我正在尝试设置开发环境。我正在使用Windows,我尝试使用mocha运行单元测试并运行程序,它工作正常。当我尝试在Travis CI中执行CI时,出现以下错误:
"警告:找不到与模式匹配的任何测试文件: buildScripts / testsetup.js"
我在package.json中的代码如下所示:
"scripts": {
"start:config": "babel-node buildscripts/srcserver.js",
"start": "npm-run-all --parallel start:config test",
"test" : "mocha --reporter progress buildScripts/testsetup.js \"src/**/*.test.js\""
}
似乎在travis中,它没有将buildscripts / testsetup.js视为测试的配置,但它认为它必须包含测试代码。
如果您需要查看代码,请访问github上的我的回购: https://github.com/derhallim/testenv
我尝试在Appveyor上运行构建,它运行正常。有什么想法吗?