Skip to content

Releases: namuol/tap-difflet

0.7.2

08 Jul 16:55
db2a372
Compare
Choose a tag to compare
Removed the use of an arrow function for older node compatibility purposes.

0.7.1

23 Mar 22:09
Compare
Choose a tag to compare

Upgraded chalk dependency (thank you @yunzhu-li!)

0.7.0

09 Oct 22:25
Compare
Choose a tag to compare

Node API

You can now use tap-difflet inside node code:

var tapDifflet = require('tap-difflet');

var formatter = tapDifflet({
  pessimistic: true // Only output failed tests. `false` by default.
});

Thanks to @infernalmaster for separating TAP processing from CLI code. ❤️

0.6.0

16 Jun 19:35
Compare
Choose a tag to compare

Slightly cleaner output. See #7

0.5.0

13 Jun 22:26
Compare
Choose a tag to compare

Added pessimistic option (use -p or --pessimistic on the command line) -- only failures are printed.