Skip to content

Commit 49963b3

Browse files
author
James Halliday
committed
using object-inspect for comparisons, passing the undef test
1 parent 9ee8421 commit 49963b3

File tree

3 files changed

+59
-78
lines changed

3 files changed

+59
-78
lines changed

lib/results.js

+3-24
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
var EventEmitter = require('events').EventEmitter;
22
var inherits = require('inherits');
3-
var json = typeof JSON === 'object' ? JSON : require('jsonify');
43
var through = require('through');
54
var resumer = require('resumer');
5+
var inspect = require('object-inspect');
66
var nextTick = typeof setImmediate !== 'undefined'
77
? setImmediate
88
: process.nextTick
@@ -141,8 +141,8 @@ function encodeResult (res, count) {
141141
output += outer + '---\n';
142142
output += inner + 'operator: ' + res.operator + '\n';
143143

144-
var ex = json.stringify(res.expected, getSerialize()) || '';
145-
var ac = json.stringify(res.actual, getSerialize()) || '';
144+
var ex = inspect(res.expected);
145+
var ac = inspect(res.actual);
146146

147147
if (Math.max(ex.length, ac.length) > 65) {
148148
output += inner + 'expected:\n' + inner + ' ' + ex + '\n';
@@ -168,27 +168,6 @@ function encodeResult (res, count) {
168168
return output;
169169
}
170170

171-
function getSerialize () {
172-
var seen = [];
173-
174-
return function (key, value) {
175-
var ret = value;
176-
if (typeof value === 'object' && value) {
177-
var found = false;
178-
for (var i = 0; i < seen.length; i++) {
179-
if (seen[i] === value) {
180-
found = true
181-
break;
182-
}
183-
}
184-
185-
if (found) ret = '[Circular]'
186-
else seen.push(value)
187-
}
188-
return ret;
189-
};
190-
}
191-
192171
function getNextTest (results) {
193172
if (!results._only) {
194173
return results.tests.shift();

package.json

+55-53
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,57 @@
11
{
2-
"name" : "tape",
3-
"version" : "2.6.0",
4-
"description" : "tap-producing test harness for node and browsers",
5-
"main" : "index.js",
6-
"bin" : "./bin/tape",
7-
"directories" : {
8-
"example" : "example",
9-
"test" : "test"
10-
},
11-
"dependencies" : {
12-
"jsonify" : "~0.0.0",
13-
"deep-equal" : "~0.2.0",
14-
"defined" : "~0.0.0",
15-
"through": "~2.3.4",
16-
"resumer": "~0.0.0",
17-
"inherits": "~2.0.1"
18-
},
19-
"devDependencies" : {
20-
"tap" : "~0.3.0",
21-
"falafel" : "~0.1.4"
22-
},
23-
"scripts" : {
24-
"test" : "tap test/*.js"
25-
},
26-
"testling" : {
27-
"files" : "test/browser/*.js",
28-
"browsers" : [
29-
"ie/6..latest",
30-
"chrome/20..latest",
31-
"firefox/10..latest",
32-
"safari/latest",
33-
"opera/11.0..latest",
34-
"iphone/6", "ipad/6"
35-
]
36-
},
37-
"repository" : {
38-
"type" : "git",
39-
"url" : "git://github.com/substack/tape.git"
40-
},
41-
"homepage" : "https://github.com/substack/tape",
42-
"keywords" : [
43-
"tap",
44-
"test",
45-
"harness",
46-
"assert",
47-
"browser"
48-
],
49-
"author" : {
50-
"name" : "James Halliday",
51-
"email" : "[email protected]",
52-
"url" : "http://substack.net"
53-
},
54-
"license" : "MIT"
2+
"name": "tape",
3+
"version": "2.6.0",
4+
"description": "tap-producing test harness for node and browsers",
5+
"main": "index.js",
6+
"bin": "./bin/tape",
7+
"directories": {
8+
"example": "example",
9+
"test": "test"
10+
},
11+
"dependencies": {
12+
"deep-equal": "~0.2.0",
13+
"defined": "~0.0.0",
14+
"inherits": "~2.0.1",
15+
"object-inspect": "~0.3.0",
16+
"resumer": "~0.0.0",
17+
"through": "~2.3.4"
18+
},
19+
"devDependencies": {
20+
"tap": "~0.3.0",
21+
"concat": "~1.4.1",
22+
"falafel": "~0.1.4"
23+
},
24+
"scripts": {
25+
"test": "tap test/*.js"
26+
},
27+
"testling": {
28+
"files": "test/browser/*.js",
29+
"browsers": [
30+
"ie/6..latest",
31+
"chrome/20..latest",
32+
"firefox/10..latest",
33+
"safari/latest",
34+
"opera/11.0..latest",
35+
"iphone/6",
36+
"ipad/6"
37+
]
38+
},
39+
"repository": {
40+
"type": "git",
41+
"url": "git://github.com/substack/tape.git"
42+
},
43+
"homepage": "https://github.com/substack/tape",
44+
"keywords": [
45+
"tap",
46+
"test",
47+
"harness",
48+
"assert",
49+
"browser"
50+
],
51+
"author": {
52+
"name": "James Halliday",
53+
"email": "[email protected]",
54+
"url": "http://substack.net"
55+
},
56+
"license": "MIT"
5557
}

test/circular-things.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ tap.test('circular test', function (assert) {
2020
, name: " should be equal"
2121
, operator: "equal"
2222
, expected: "{}"
23-
, actual: '{"circular":"[Circular]"}'
23+
, actual: '{ circular: [Circular] }'
2424
}
2525
, "tests 1"
2626
, "pass 0"

0 commit comments

Comments
 (0)