Skip to content

Commit a5385a4

Browse files
authoredMay 2, 2020
Use configured depth limit for diffs in assertion failures
1 parent 7df4397 commit a5385a4

15 files changed

+598
-211
lines changed
 

‎lib/assert.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@ const concordance = require('concordance');
33
const isError = require('is-error');
44
const isPromise = require('is-promise');
55
const concordanceOptions = require('./concordance-options').default;
6-
const concordanceDiffOptions = require('./concordance-options').diff;
76
const snapshotManager = require('./snapshot-manager');
87

98
function formatDescriptorDiff(actualDescriptor, expectedDescriptor, options) {
10-
options = {...options, ...concordanceDiffOptions};
9+
options = {...options, ...concordanceOptions};
1110
return {
1211
label: 'Difference:',
1312
formatted: concordance.diffDescriptors(actualDescriptor, expectedDescriptor, options)

‎lib/concordance-options.js

-1
Original file line numberDiff line numberDiff line change
@@ -135,5 +135,4 @@ exports.default = {
135135
theme
136136
};
137137

138-
exports.diff = {maxDepth: 1, plugins, theme};
139138
exports.snapshotManager = {plugins, theme: plainTheme};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
const test = require('../../../..');
2+
const util = require('util');
3+
4+
util.inspect.defaultOptions.depth = 4;
5+
6+
test('format with max depth 4', t => {
7+
const exp = {
8+
a: {
9+
b: {
10+
foo: 'bar'
11+
}
12+
}
13+
};
14+
const act = {
15+
a: {
16+
b: {
17+
foo: 'bar'
18+
}
19+
},
20+
c: {
21+
d: {
22+
e: {
23+
foo: 'bar'
24+
}
25+
}
26+
}
27+
};
28+
t.deepEqual(exp, act);
29+
});

‎test-tap/reporters/mini.regular.v10.log

+57-22
Original file line numberDiff line numberDiff line change
@@ -3,161 +3,166 @@
33
---tty-stream-chunk-separator
44
* ---tty-stream-chunk-separator
55
---tty-stream-chunk-separator
6-
* output-in-hook › passing test
6+
* nested-objects › format with max depth 4
77

8-
1 passed---tty-stream-chunk-separator
8+
1 test failed---tty-stream-chunk-separator
99
---tty-stream-chunk-separator
10-
* output-in-hook › failing test
10+
* output-in-hook › passing test
1111

1212
1 passed
1313
1 test failed---tty-stream-chunk-separator
1414
---tty-stream-chunk-separator
15+
* output-in-hook › failing test
16+
17+
1 passed
18+
2 tests failed---tty-stream-chunk-separator
19+
---tty-stream-chunk-separator
1520
* test › passes
1621

1722
2 passed
18-
1 test failed
23+
2 tests failed
1924
1 skipped
2025
1 todo---tty-stream-chunk-separator
2126
---tty-stream-chunk-separator
2227
* test › fails
2328

2429
2 passed
25-
2 tests failed
30+
3 tests failed
2631
1 skipped
2732
1 todo---tty-stream-chunk-separator
2833
---tty-stream-chunk-separator
2934
* test › known failure
3035

3136
2 passed
3237
1 known failure
33-
2 tests failed
38+
3 tests failed
3439
1 skipped
3540
1 todo---tty-stream-chunk-separator
3641
---tty-stream-chunk-separator
3742
* test › no longer failing
3843

3944
2 passed
4045
1 known failure
41-
3 tests failed
46+
4 tests failed
4247
1 skipped
4348
1 todo---tty-stream-chunk-separator
4449
---tty-stream-chunk-separator
4550
* test › logs
4651

4752
2 passed
4853
1 known failure
49-
4 tests failed
54+
5 tests failed
5055
1 skipped
5156
1 todo---tty-stream-chunk-separator
5257
---tty-stream-chunk-separator
5358
* test › formatted
5459

5560
2 passed
5661
1 known failure
57-
5 tests failed
62+
6 tests failed
5863
1 skipped
5964
1 todo---tty-stream-chunk-separator
6065
---tty-stream-chunk-separator
6166
* test › power-assert
6267

6368
2 passed
6469
1 known failure
65-
6 tests failed
70+
7 tests failed
6671
1 skipped
6772
1 todo---tty-stream-chunk-separator
6873
---tty-stream-chunk-separator
6974
* test › bad throws
7075

7176
2 passed
7277
1 known failure
73-
7 tests failed
78+
8 tests failed
7479
1 skipped
7580
1 todo---tty-stream-chunk-separator
7681
---tty-stream-chunk-separator
7782
* test › bad notThrows
7883

7984
2 passed
8085
1 known failure
81-
8 tests failed
86+
9 tests failed
8287
1 skipped
8388
1 todo---tty-stream-chunk-separator
8489
---tty-stream-chunk-separator
8590
* test › implementation throws non-error
8691

8792
2 passed
8893
1 known failure
89-
9 tests failed
94+
10 tests failed
9095
1 skipped
9196
1 todo---tty-stream-chunk-separator
9297
---tty-stream-chunk-separator
9398
* traces-in-t-throws › throws
9499

95100
2 passed
96101
1 known failure
97-
10 tests failed
102+
11 tests failed
98103
1 skipped
99104
1 todo---tty-stream-chunk-separator
100105
---tty-stream-chunk-separator
101106
* traces-in-t-throws › notThrows
102107

103108
2 passed
104109
1 known failure
105-
11 tests failed
110+
12 tests failed
106111
1 skipped
107112
1 todo---tty-stream-chunk-separator
108113
---tty-stream-chunk-separator
109114
* traces-in-t-throws › notThrowsAsync
110115

111116
2 passed
112117
1 known failure
113-
12 tests failed
118+
13 tests failed
114119
1 skipped
115120
1 todo---tty-stream-chunk-separator
116121
---tty-stream-chunk-separator
117122
* traces-in-t-throws › throwsAsync
118123

119124
2 passed
120125
1 known failure
121-
13 tests failed
126+
14 tests failed
122127
1 skipped
123128
1 todo---tty-stream-chunk-separator
124129
---tty-stream-chunk-separator
125130
* traces-in-t-throws › throwsAsync different error
126131

127132
2 passed
128133
1 known failure
129-
14 tests failed
134+
15 tests failed
130135
1 skipped
131136
1 todo---tty-stream-chunk-separator
132137
---tty-stream-chunk-separator
133138
* uncaught-exception › passes
134139

135140
3 passed
136141
1 known failure
137-
14 tests failed
142+
15 tests failed
138143
1 skipped
139144
1 todo---tty-stream-chunk-separator
140145
---tty-stream-chunk-separator
141146
* unhandled-rejection › passes
142147

143148
4 passed
144149
1 known failure
145-
14 tests failed
150+
15 tests failed
146151
1 skipped
147152
1 todo---tty-stream-chunk-separator
148153
---tty-stream-chunk-separator
149154
* unhandled-rejection › unhandled non-error rejection
150155

151156
5 passed
152157
1 known failure
153-
14 tests failed
158+
15 tests failed
154159
1 skipped
155160
1 todo---tty-stream-chunk-separator
156161
---tty-stream-chunk-separator
157162
[?25h
158163
✖ No tests found in bad-test-chain.js
159164

160-
14 tests failed
165+
15 tests failed
161166
1 known failure
162167
1 test skipped
163168
1 test todo
@@ -166,6 +171,36 @@
166171

167172
test › known failure
168173

174+
nested-objects › format with max depth 4
175+
176+
nested-objects.js:28
177+
178+
27: };
179+
 28: t.deepEqual(exp, act);
180+
29: });
181+
182+
Difference:
183+
184+
{
185+
a: {
186+
b: {
187+
foo: 'bar',
188+
},
189+
},
190+
+ c: {
191+
+ d: {
192+
+ e: {
193+
+ foo: 'bar',
194+
+ },
195+
+ },
196+
+ },
197+
}
198+
199+
› t (test-tap/fixture/report/regular/nested-objects.js:28:4)
200+
› process._tickCallback (internal/process/next_tick.js:68:7)
201+
202+
203+
169204
output-in-hook › failing test
170205

171206
output-in-hook.js:34

0 commit comments

Comments
 (0)
Please sign in to comment.