DEV Community

Discussion on: Setup Continuous Integration with Travis CI in Your Nodejs App

 
lauragift21 profile image
Gift Egwuenu

If you followed the steps it should work. Try adding a script command to the travis.yml file like so:

script:
  - npm run test

So it can trigger your test script.

Thread Thread
 
ray_wachaga profile image
Raymond Wachaga

Add this to the main article to make it complete. This line is the missing ingredient.