Open devinrhode2 opened 8 years ago
here's the colorized result:
Wow github has drag and drop down.
..reading the gulpfile, I see it's just a mocha test suite, so I'll just run mocha directly. I see the 14 tests failing. Not blocked ;)
Ah.. all the tests failed with TypeError: cannot read property 'eql' of undefined
because without gulp the should
module doesn't get injected. Seems to just add some methods to native objects prototype style, and indeed just adding var should = require('should')
to the top of the first test file fixed this. Now I'm pretty certain have the intended failures
I will take a look tomorrow. Thanks Devin! On Thu, Dec 17, 2015 at 6:51 PM Devin Rhode notifications@github.com wrote:
Ah.. all the tests failed with TypeError: cannot read property 'eql' of undefined because gulp wasn't injecting the should module. Seems to just add some methods to native objects prototype style, and indeed just adding var should = require('should') to the top of the first test file fixed this. Now I'm pretty certain have the intended failures
— Reply to this email directly or view it on GitHub https://github.com/tunein/frontend-challenge-1/issues/2#issuecomment-165654988 .
Hmm.. here's my full logs, starting with npm install