Something about installing lineman-browserify causes issues with the lineman spec-ci command.
Steps to reproduce:
- Create a project:
lineman new project
- Enter the directory:
cd project/
- Create a new simple test named:
spec/foobar-spec.js1
- Run the tests to confirm:
lineman spec-ci and expect # tests 2 # pass 2
- Install lineman-browserify:
npm install --save-dev lineman-browserify
- Run tests again and see reduced tests:
# tests 1 # pass 1
wat?
[1] Contents of spec/foobar-spec.js:
describe('foobar', function() {
it('foobar test', function() {
expect(true).toEqual(true);
});
});