3

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!

Drazisil
  • 3,070
  • 4
  • 33
  • 53
Deepak Biswal
  • 4,280
  • 2
  • 20
  • 37
  • its hard to help with this piece of information. This question does not have enough information for error to be reproduced. – prasun Nov 23 '15 at 14:05

1 Answers1

1

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
Drazisil
  • 3,070
  • 4
  • 33
  • 53