Something about installing lineman-browserify causes issues with the `lineman spec-ci` command. Steps to reproduce: 1. Create a project: `lineman new project` 2. Enter the directory: `cd project/` 3. Create a new simple test named: `spec/foobar-spec.js`<sup>1</sup> 4. Run the tests to confirm: `lineman spec-ci` and expect `# tests 2 # pass 2` 5. Install lineman-browserify: `npm install --save-dev lineman-browserify` 6. 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); }); }); ```