Daniel St. Jules

Results 35 comments of Daniel St. Jules

Hey, sorry - pretty busy and don't have much time to maintain this project. Would welcome a PR!

Will test this out today! :)

We previously outputted diffs: ![screenshot](http://danielstjules.com/github/jsinspect-example.png) However, they didn't work very well when they were n-way diffs, such that N was more than 2 instances in a match. The output was...

It would be pretty straightforward to implement. Curious, what sort of custom reporter are you interested in using with the tool?

Can you post a small example reproduce case? Are the imports es6 module syntax?

Thanks! Somewhat related to https://github.com/danielstjules/jsinspect/issues/26 I'll need to setup better detection of this kind of dependency-related code, as I've currently hardcoded checks for AMD/CommonJS/ES6 style modules.

Might be nice to have some config for this as well. Maybe skipping blocks that start with a given line? Since there's a pattern here, I'd like that better than...

Thinking about this again, would this feature ignore only the next line, or all nodes contained in that line? And thus potentially multiples lines if a node spans that many?

The final output could be: ``` 27 passing (1m) 1 skipped 1 pending 1 failing ``` Introducing a new state for specs would be a major breaking change, so it'd...

Looks like this was never completed: ``` javascript $ cat example.js beforeEach(function(done) { setTimeout(done, 180); }); it('foo', function(done) { setTimeout(done, 100); }); it('bar', function(done) { done(); }); $ ./bin/mocha --reporter...