3
votes

I'm trying to use CircleCI for one of my node.js application. I'm trying to learn the way circleci works.

My app and test cases are running fine locally. I'm using jasmine-node for test.

But when I'm trying to build my app on circleci I'm getting below error. Below is a screenshot from circleci: enter image description here

Please let me know anyone has any idea on this!

1
its hard to help with this piece of information. This question does not have enough information for error to be reproduced. - prasun

1 Answers

1
votes

CircleCi is saying that jasmine-node isn't installed.

Add the following code to your circle.yml file.

dependencies:
  post:
    - sudo npm install jasmine-node -g