Comparing version 0.0.4 to 0.0.5
0.0.5 / 2011-11-24 | ||
================== | ||
* Fixed: make mocha.opts whitespace less picky [kkaefer] | ||
0.0.4 / 2011-11-24 | ||
@@ -3,0 +8,0 @@ ================== |
@@ -12,3 +12,3 @@ | ||
exports.version = '0.0.4'; | ||
exports.version = '0.0.5'; | ||
@@ -15,0 +15,0 @@ exports.interfaces = require('./interfaces'); |
@@ -112,4 +112,4 @@ | ||
// format | ||
var fmt = color('error title', ' %s) %s: ') | ||
+ color('error message', '%s') | ||
var fmt = color('error title', ' %s) %s:\n') | ||
+ color('error message', ' %s') | ||
+ color('error stack', '\n%s\n'); | ||
@@ -116,0 +116,0 @@ |
{ | ||
"name": "mocha" | ||
, "version": "0.0.4" | ||
, "version": "0.0.5" | ||
, "description": "Test framework inspired by JSpec, Expresso, & Qunit" | ||
@@ -5,0 +5,0 @@ , "keywords": ["test", "bdd", "tdd", "tap"] |
@@ -13,3 +13,3 @@ | ||
http.get({ path: '/', port: 8888 }, function(res){ | ||
res.statusCode.should.equal(200); | ||
res.should.have.status(200); | ||
done(); | ||
@@ -16,0 +16,0 @@ }) |
@@ -32,3 +32,3 @@ | ||
var buf = ''; | ||
res.statusCode.should.equal(200); | ||
res.should.have.status(200); | ||
res.setEncoding('utf8'); | ||
@@ -35,0 +35,0 @@ res.on('data', function(chunk){ buf += chunk }); |
@@ -28,3 +28,3 @@ | ||
var buf = ''; | ||
res.statusCode.should.equal(200); | ||
res.should.have.status(200); | ||
res.setEncoding('utf8'); | ||
@@ -31,0 +31,0 @@ res.on('data', function(chunk){ buf += chunk }); |
Sorry, the diff of this file is not supported yet
116313