2

I am trying to setup a travis build, except that the test script isn't executing fully. It starts, but then travis says it's exited with code 0 when it's still in the middle of running.

Here is the travis page.
I'm using jasmine-node to run the tests, and it works just fine on my computer.

Let me know if I'm missing any vital information.

Thanks,
-tlf

thislooksfun
  • 1,049
  • 10
  • 23

1 Answers1

1

It turns out that the error was caused by my attempting to use mongodb without actually starting it first. Adding

services:
  - mongodb

to my .travis.yml file fixed the issue.

thislooksfun
  • 1,049
  • 10
  • 23