Travis CI no output

GinMu

No output has been received in the last 10 minutes, this potentially indicates a stalled build or something wrong with the build itself.

this is my project https://github.com/GinMu/node-test-demo.git

thank you !

griffio

The build is timing out as gulp.watch waits for changes; normally this is fine for local development. This is setup in your gulp build script as the default task, so the npm test command is calling the npm script in your package.json and calling just gulp.

With your project's package.json, try using just the mocha task to run tests. e.g. change your script to :-

"scripts": {
   "test": "gulp mocha"
 }

The mocha tests should now run without the watchers preventing the build from completing.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related