-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Mocha-style multi-line string diffs.
Instead of using eyes for strings, use diff to present a colored diff of the expected vs. actual results.
- Loading branch information
Showing
2 changed files
with
123 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,37 @@ | ||
{ | ||
"name" : "vows", | ||
"description" : "Asynchronous BDD & continuous integration for node.js", | ||
"url" : "http://vowsjs.org", | ||
"keywords" : ["testing", "spec", "test", "BDD"], | ||
"author" : "Alexis Sellier <self@cloudhead.net>", | ||
"contributors" : [{ "name": "Charlie Robbins", "email": "charlie.robbins@gmail.com" }], | ||
"dependencies" : {"eyes": ">=0.1.6"}, | ||
"main" : "./lib/vows", | ||
"bin" : { "vows": "./bin/vows" }, | ||
"directories" : { "test": "./test", "bin": "./bin" }, | ||
"version" : "0.6.2", | ||
"scripts" : {"test": "./bin/vows --spec"}, | ||
"engines" : {"node": ">=0.2.6"} | ||
"name": "vows", | ||
"description": "Asynchronous BDD & continuous integration for node.js", | ||
"url": "http://vowsjs.org", | ||
"keywords": [ | ||
"testing", | ||
"spec", | ||
"test", | ||
"BDD" | ||
], | ||
"author": "Alexis Sellier <self@cloudhead.net>", | ||
"contributors": [ | ||
{ | ||
"name": "Charlie Robbins", | ||
"email": "charlie.robbins@gmail.com" | ||
} | ||
], | ||
"dependencies": { | ||
"eyes": ">=0.1.6", | ||
"diff": "~1.0.3" | ||
}, | ||
"main": "./lib/vows", | ||
"bin": { | ||
"vows": "./bin/vows" | ||
}, | ||
"directories": { | ||
"test": "./test", | ||
"bin": "./bin" | ||
}, | ||
"version": "0.6.2", | ||
"scripts": { | ||
"test": "./bin/vows --spec" | ||
}, | ||
"engines": { | ||
"node": ">=0.2.6" | ||
} | ||
} |