node.js - Travis CI build exited with 1, test failed.. working on windows -


i trying setup development environment. using windows, try run units tests using mocha , run program, works fine. when try ci in travis ci, following error:

"warning: not find test files matching pattern: buildscripts/testsetup.js"

where code in package.json looks this:

 "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\"" } 

it seems in travis, doesn't see buildscripts/testsetup.js config tests, sees if must contain test code.

here's repo on github if need take @ code: https://github.com/derhallim/testenv

i tried run build on appveyor, , worked fine. ideas?


Comments

Popular posts from this blog

javascript - Clear button on addentry page doesn't work -

python - Error: Unresolved reference 'selenium' What is the reason? -

asp.net ajax - Jquery scroll to element just goes to top of page -