qunitx 0.4.4 → 0.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/tap/display-test-result.js +20 -3
- package/package.json +1 -1
- package/test-output.log +193 -194
|
@@ -22,12 +22,12 @@ export default function(COUNTER, details) { // NOTE: https://github.com/qunitjs/
|
|
|
22
22
|
console.log(' ---');
|
|
23
23
|
console.log(indentString(yaml.dump({
|
|
24
24
|
name: `Assertion #${index + 1}`, // TODO: check what happens on runtime errors
|
|
25
|
-
actual: assertion.actual
|
|
26
|
-
expected: assertion.expected
|
|
25
|
+
actual: assertion.actual ? JSON.parse(JSON.stringify(assertion.actual, getCircularReplacer())) : assertion.actual,
|
|
26
|
+
expected: assertion.expected ? JSON.parse(JSON.stringify(assertion.expected, getCircularReplacer())) : assertion.expected,
|
|
27
27
|
message: assertion.message || null,
|
|
28
28
|
stack: assertion.stack || null,
|
|
29
29
|
at: stack ? stack[0].replace('(file://', '').replace(')', '') : null
|
|
30
|
-
})
|
|
30
|
+
}), 4));
|
|
31
31
|
console.log(' ...');
|
|
32
32
|
}
|
|
33
33
|
|
|
@@ -39,6 +39,23 @@ export default function(COUNTER, details) { // NOTE: https://github.com/qunitjs/
|
|
|
39
39
|
}
|
|
40
40
|
}
|
|
41
41
|
|
|
42
|
+
function getCircularReplacer() {
|
|
43
|
+
const ancestors = [];
|
|
44
|
+
return function (key, value) {
|
|
45
|
+
if (typeof value !== "object" || value === null) {
|
|
46
|
+
return value;
|
|
47
|
+
}
|
|
48
|
+
while (ancestors.length > 0 && ancestors.at(-1) !== this) {
|
|
49
|
+
ancestors.pop();
|
|
50
|
+
}
|
|
51
|
+
if (ancestors.includes(value)) {
|
|
52
|
+
return "[Circular]";
|
|
53
|
+
}
|
|
54
|
+
ancestors.push(value);
|
|
55
|
+
return value;
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
|
|
42
59
|
// not ok 10 test exited without ending: deepEqual true works
|
|
43
60
|
// ---
|
|
44
61
|
// operator: fail
|
package/package.json
CHANGED
package/test-output.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
TAP version 13
|
|
2
|
-
# [qunitx v0.4.
|
|
2
|
+
# [qunitx v0.4.4] Usage: qunitx [targets] --$flags
|
|
3
3
|
# Input options:
|
|
4
4
|
# - File: $ qunitx test/foo.js
|
|
5
5
|
# - Folder: $ qunitx test/login
|
|
@@ -22,32 +22,32 @@ TAP version 13
|
|
|
22
22
|
# Subtest: $ qunitx -> prints help text
|
|
23
23
|
ok 1 - $ qunitx -> prints help text
|
|
24
24
|
---
|
|
25
|
-
duration_ms:
|
|
25
|
+
duration_ms: 1834.730909
|
|
26
26
|
...
|
|
27
27
|
# Subtest: $ qunitx print -> prints help text
|
|
28
28
|
ok 2 - $ qunitx print -> prints help text
|
|
29
29
|
---
|
|
30
|
-
duration_ms:
|
|
30
|
+
duration_ms: 1971.071846
|
|
31
31
|
...
|
|
32
32
|
# Subtest: $ qunitx p -> prints help text
|
|
33
33
|
ok 3 - $ qunitx p -> prints help text
|
|
34
34
|
---
|
|
35
|
-
duration_ms:
|
|
35
|
+
duration_ms: 1517.70766
|
|
36
36
|
...
|
|
37
37
|
# Subtest: $ qunitx help -> prints help text
|
|
38
38
|
ok 4 - $ qunitx help -> prints help text
|
|
39
39
|
---
|
|
40
|
-
duration_ms:
|
|
40
|
+
duration_ms: 1611.381507
|
|
41
41
|
...
|
|
42
42
|
# Subtest: $ qunitx h -> prints help text
|
|
43
43
|
ok 5 - $ qunitx h -> prints help text
|
|
44
44
|
---
|
|
45
|
-
duration_ms:
|
|
45
|
+
duration_ms: 1252.830325
|
|
46
46
|
...
|
|
47
47
|
1..5
|
|
48
48
|
ok 1 - Commands | Help tests
|
|
49
49
|
---
|
|
50
|
-
duration_ms:
|
|
50
|
+
duration_ms: 8189.831942
|
|
51
51
|
type: 'suite'
|
|
52
52
|
...
|
|
53
53
|
# Trace:
|
|
@@ -63,16 +63,16 @@ ok 1 - Commands | Help tests
|
|
|
63
63
|
# 7: placeholder: 1000,
|
|
64
64
|
# 8: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
|
|
65
65
|
# 9: }
|
|
66
|
-
# 10: ok 2 {{moduleName}} Passing Tests | async test finishes \# (
|
|
66
|
+
# 10: ok 2 {{moduleName}} Passing Tests | async test finishes \# (63 ms)
|
|
67
67
|
# 11: calling deepEqual test case
|
|
68
|
-
# 12: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (
|
|
68
|
+
# 12: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (3 ms)
|
|
69
69
|
# 13:
|
|
70
70
|
# 14: 1
|
|
71
71
|
# 15: \# tests 3
|
|
72
72
|
# 16: \# pass 3
|
|
73
73
|
# 17: \# skip 0
|
|
74
74
|
# 18: \# fail 0
|
|
75
|
-
# 19: \# duration
|
|
75
|
+
# 19: \# duration 75
|
|
76
76
|
# 20:
|
|
77
77
|
# 21: This is running from after script!!
|
|
78
78
|
# 22:
|
|
@@ -89,23 +89,23 @@ ok 1 - Commands | Help tests
|
|
|
89
89
|
# Subtest: --after works when it doesnt need to be awaited
|
|
90
90
|
ok 1 - --after works when it doesnt need to be awaited
|
|
91
91
|
---
|
|
92
|
-
duration_ms:
|
|
92
|
+
duration_ms: 2065.959633
|
|
93
93
|
...
|
|
94
94
|
# Trace:
|
|
95
95
|
# TEST NAME: --after script tests | --after works for --browser mode when it doesnt need to be awaited
|
|
96
96
|
# TEST COMMAND: node cli.js test/helpers/passing-tests.js --browser --after=test/helpers/after-script-basic.js
|
|
97
97
|
# 0: \# QUnitX running: http://localhost:1234/
|
|
98
98
|
# 1: TAP version 13
|
|
99
|
-
# 2: ok 1 {{moduleName}} Passing Tests | assert true works \# (
|
|
100
|
-
# 3: ok 2 {{moduleName}} Passing Tests | async test finishes \# (
|
|
101
|
-
# 4: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (
|
|
99
|
+
# 2: ok 1 {{moduleName}} Passing Tests | assert true works \# (2 ms)
|
|
100
|
+
# 3: ok 2 {{moduleName}} Passing Tests | async test finishes \# (174 ms)
|
|
101
|
+
# 4: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (5 ms)
|
|
102
102
|
# 5:
|
|
103
103
|
# 6: 1
|
|
104
104
|
# 7: \# tests 3
|
|
105
105
|
# 8: \# pass 3
|
|
106
106
|
# 9: \# skip 0
|
|
107
107
|
# 10: \# fail 0
|
|
108
|
-
# 11: \# duration
|
|
108
|
+
# 11: \# duration 734
|
|
109
109
|
# 12:
|
|
110
110
|
# 13: This is running from after script!!
|
|
111
111
|
# 14:
|
|
@@ -118,7 +118,7 @@ ok 1 - Commands | Help tests
|
|
|
118
118
|
# Subtest: --after works for --browser mode when it doesnt need to be awaited
|
|
119
119
|
ok 2 - --after works for --browser mode when it doesnt need to be awaited
|
|
120
120
|
---
|
|
121
|
-
duration_ms:
|
|
121
|
+
duration_ms: 3991.294109
|
|
122
122
|
...
|
|
123
123
|
# Trace:
|
|
124
124
|
# TEST NAME: --after script tests | --after works it needs to be awaited
|
|
@@ -126,23 +126,23 @@ ok 1 - Commands | Help tests
|
|
|
126
126
|
# 0: \# QUnitX running: /home/izelnakri/Github/qunitx/test/helpers/passing-tests.js
|
|
127
127
|
# 1: TAP version 13
|
|
128
128
|
# 2: calling assert true test case
|
|
129
|
-
# 3: ok 1 {{moduleName}} Passing Tests | assert true works \# (
|
|
129
|
+
# 3: ok 1 {{moduleName}} Passing Tests | assert true works \# (2 ms)
|
|
130
130
|
# 4: resolving async test
|
|
131
131
|
# 5: {
|
|
132
132
|
# 6: moduleName: 'called resolved async test with object',
|
|
133
133
|
# 7: placeholder: 1000,
|
|
134
134
|
# 8: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
|
|
135
135
|
# 9: }
|
|
136
|
-
# 10: ok 2 {{moduleName}} Passing Tests | async test finishes \# (
|
|
136
|
+
# 10: ok 2 {{moduleName}} Passing Tests | async test finishes \# (56 ms)
|
|
137
137
|
# 11: calling deepEqual test case
|
|
138
|
-
# 12: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (
|
|
138
|
+
# 12: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (0 ms)
|
|
139
139
|
# 13:
|
|
140
140
|
# 14: 1
|
|
141
141
|
# 15: \# tests 3
|
|
142
142
|
# 16: \# pass 3
|
|
143
143
|
# 17: \# skip 0
|
|
144
144
|
# 18: \# fail 0
|
|
145
|
-
# 19: \# duration
|
|
145
|
+
# 19: \# duration 62
|
|
146
146
|
# 20:
|
|
147
147
|
# 21: This is running from after script!!
|
|
148
148
|
# 22: After script result is written:
|
|
@@ -163,23 +163,23 @@ ok 1 - Commands | Help tests
|
|
|
163
163
|
# Subtest: --after works it needs to be awaited
|
|
164
164
|
ok 3 - --after works it needs to be awaited
|
|
165
165
|
---
|
|
166
|
-
duration_ms:
|
|
166
|
+
duration_ms: 1690.187141
|
|
167
167
|
...
|
|
168
168
|
# Trace:
|
|
169
169
|
# TEST NAME: --after script tests | --after works for --browser mode it needs to be awaited
|
|
170
170
|
# TEST COMMAND: node cli.js test/helpers/passing-tests.js --browser --after=test/helpers/after-script-async.js
|
|
171
|
-
# 0: \# QUnitX running: http://localhost:
|
|
171
|
+
# 0: \# QUnitX running: http://localhost:1235/
|
|
172
172
|
# 1: TAP version 13
|
|
173
173
|
# 2: ok 1 {{moduleName}} Passing Tests | assert true works \# (1 ms)
|
|
174
|
-
# 3: ok 2 {{moduleName}} Passing Tests | async test finishes \# (
|
|
175
|
-
# 4: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (
|
|
174
|
+
# 3: ok 2 {{moduleName}} Passing Tests | async test finishes \# (51 ms)
|
|
175
|
+
# 4: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (0 ms)
|
|
176
176
|
# 5:
|
|
177
177
|
# 6: 1
|
|
178
178
|
# 7: \# tests 3
|
|
179
179
|
# 8: \# pass 3
|
|
180
180
|
# 9: \# skip 0
|
|
181
181
|
# 10: \# fail 0
|
|
182
|
-
# 11: \# duration
|
|
182
|
+
# 11: \# duration 588
|
|
183
183
|
# 12:
|
|
184
184
|
# 13: This is running from after script!!
|
|
185
185
|
# 14: After script result is written:
|
|
@@ -199,12 +199,12 @@ ok 1 - Commands | Help tests
|
|
|
199
199
|
# Subtest: --after works for --browser mode it needs to be awaited
|
|
200
200
|
ok 4 - --after works for --browser mode it needs to be awaited
|
|
201
201
|
---
|
|
202
|
-
duration_ms:
|
|
202
|
+
duration_ms: 2576.408675
|
|
203
203
|
...
|
|
204
204
|
1..4
|
|
205
205
|
ok 2 - --after script tests
|
|
206
206
|
---
|
|
207
|
-
duration_ms:
|
|
207
|
+
duration_ms: 10326.819853
|
|
208
208
|
type: 'suite'
|
|
209
209
|
...
|
|
210
210
|
# Trace:
|
|
@@ -221,7 +221,7 @@ ok 2 - --after script tests
|
|
|
221
221
|
# 8: placeholder: 1000,
|
|
222
222
|
# 9: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
|
|
223
223
|
# 10: }
|
|
224
|
-
# 11: ok 2 {{moduleName}} Passing Tests | async test finishes \# (
|
|
224
|
+
# 11: ok 2 {{moduleName}} Passing Tests | async test finishes \# (57 ms)
|
|
225
225
|
# 12: calling deepEqual test case
|
|
226
226
|
# 13: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (1 ms)
|
|
227
227
|
# 14:
|
|
@@ -230,7 +230,7 @@ ok 2 - --after script tests
|
|
|
230
230
|
# 17: \# pass 3
|
|
231
231
|
# 18: \# skip 0
|
|
232
232
|
# 19: \# fail 0
|
|
233
|
-
# 20: \# duration
|
|
233
|
+
# 20: \# duration 62
|
|
234
234
|
# 21:
|
|
235
235
|
# 22:
|
|
236
236
|
#
|
|
@@ -246,24 +246,24 @@ ok 2 - --after script tests
|
|
|
246
246
|
# Subtest: --before works when it doesnt need to be awaited
|
|
247
247
|
ok 1 - --before works when it doesnt need to be awaited
|
|
248
248
|
---
|
|
249
|
-
duration_ms:
|
|
249
|
+
duration_ms: 1069.534574
|
|
250
250
|
...
|
|
251
251
|
# Trace:
|
|
252
252
|
# TEST NAME: --before script tests | --before works for --browser mode when it doesnt need to be awaited
|
|
253
253
|
# TEST COMMAND: node cli.js test/helpers/passing-tests.js --browser --before=test/helpers/before-script-basic.js
|
|
254
254
|
# 0: This is running from before script!!
|
|
255
|
-
# 1: \# QUnitX running: http://localhost:
|
|
255
|
+
# 1: \# QUnitX running: http://localhost:1234/
|
|
256
256
|
# 2: TAP version 13
|
|
257
|
-
# 3: ok 1 {{moduleName}} Passing Tests | assert true works \# (
|
|
258
|
-
# 4: ok 2 {{moduleName}} Passing Tests | async test finishes \# (
|
|
259
|
-
# 5: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (
|
|
257
|
+
# 3: ok 1 {{moduleName}} Passing Tests | assert true works \# (2 ms)
|
|
258
|
+
# 4: ok 2 {{moduleName}} Passing Tests | async test finishes \# (54 ms)
|
|
259
|
+
# 5: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (1 ms)
|
|
260
260
|
# 6:
|
|
261
261
|
# 7: 1
|
|
262
262
|
# 8: \# tests 3
|
|
263
263
|
# 9: \# pass 3
|
|
264
264
|
# 10: \# skip 0
|
|
265
265
|
# 11: \# fail 0
|
|
266
|
-
# 12: \# duration
|
|
266
|
+
# 12: \# duration 690
|
|
267
267
|
# 13:
|
|
268
268
|
# 14:
|
|
269
269
|
#
|
|
@@ -275,7 +275,7 @@ ok 2 - --after script tests
|
|
|
275
275
|
# Subtest: --before works for --browser mode when it doesnt need to be awaited
|
|
276
276
|
ok 2 - --before works for --browser mode when it doesnt need to be awaited
|
|
277
277
|
---
|
|
278
|
-
duration_ms:
|
|
278
|
+
duration_ms: 2001.36552
|
|
279
279
|
...
|
|
280
280
|
# Trace:
|
|
281
281
|
# TEST NAME: --before script tests | --before works it needs to be awaited
|
|
@@ -283,8 +283,8 @@ ok 2 - --after script tests
|
|
|
283
283
|
# 0: This is running from before script!!
|
|
284
284
|
# 1: Starting before script with:
|
|
285
285
|
# 2: DOESNT HAVE SERVER RUNNING
|
|
286
|
-
# 3: \# HTTPServer [Server]: started successfully at [localhost:
|
|
287
|
-
# 4: Web server started on port
|
|
286
|
+
# 3: \# HTTPServer [Server]: started successfully at [localhost:1234] in [3ms]
|
|
287
|
+
# 4: Web server started on port 1234
|
|
288
288
|
# 5: \# QUnitX running: /home/izelnakri/Github/qunitx/test/helpers/passing-tests.js, /home/izelnakri/Github/qunitx/test/helpers/before-script-web-server-tests.js
|
|
289
289
|
# 6: TAP version 13
|
|
290
290
|
# 7: calling assert true test case
|
|
@@ -295,18 +295,18 @@ ok 2 - --after script tests
|
|
|
295
295
|
# 12: placeholder: 1000,
|
|
296
296
|
# 13: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
|
|
297
297
|
# 14: }
|
|
298
|
-
# 15: ok 2 {{moduleName}} Passing Tests | async test finishes \# (
|
|
298
|
+
# 15: ok 2 {{moduleName}} Passing Tests | async test finishes \# (55 ms)
|
|
299
299
|
# 16: calling deepEqual test case
|
|
300
|
-
# 17: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (
|
|
300
|
+
# 17: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (1 ms)
|
|
301
301
|
# 18: req received
|
|
302
|
-
# 19: ok 4 {{moduleName}} Before script web server tests | assert true works \# (
|
|
302
|
+
# 19: ok 4 {{moduleName}} Before script web server tests | assert true works \# (316 ms)
|
|
303
303
|
# 20:
|
|
304
304
|
# 21: 1
|
|
305
305
|
# 22: \# tests 4
|
|
306
306
|
# 23: \# pass 4
|
|
307
307
|
# 24: \# skip 0
|
|
308
308
|
# 25: \# fail 0
|
|
309
|
-
# 26: \# duration
|
|
309
|
+
# 26: \# duration 378
|
|
310
310
|
# 27:
|
|
311
311
|
# 28:
|
|
312
312
|
#
|
|
@@ -319,27 +319,27 @@ ok 2 - --after script tests
|
|
|
319
319
|
# Subtest: --before works it needs to be awaited
|
|
320
320
|
ok 3 - --before works it needs to be awaited
|
|
321
321
|
---
|
|
322
|
-
duration_ms:
|
|
322
|
+
duration_ms: 1579.99456
|
|
323
323
|
...
|
|
324
324
|
# Trace:
|
|
325
325
|
# TEST NAME: --before script tests | --before works for --browser mode it needs to be awaited
|
|
326
326
|
# TEST COMMAND: node cli.js test/helpers/passing-tests.js test/helpers/before-script-web-server-tests.js --browser --before=test/helpers/before-script-async.js
|
|
327
327
|
# 0: This is running from before script!!
|
|
328
328
|
# 1: Starting before script with:
|
|
329
|
-
# 2: \# QUnitX running: http://localhost:
|
|
329
|
+
# 2: \# QUnitX running: http://localhost:1234/
|
|
330
330
|
# 3: TAP version 13
|
|
331
|
-
# 4: ok 1 {{moduleName}} Passing Tests | assert true works \# (
|
|
332
|
-
# 5: ok 2 {{moduleName}} Passing Tests | async test finishes \# (
|
|
333
|
-
# 6: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (
|
|
331
|
+
# 4: ok 1 {{moduleName}} Passing Tests | assert true works \# (3 ms)
|
|
332
|
+
# 5: ok 2 {{moduleName}} Passing Tests | async test finishes \# (52 ms)
|
|
333
|
+
# 6: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (1 ms)
|
|
334
334
|
# 7: req received
|
|
335
|
-
# 8: ok 4 {{moduleName}} Before script web server tests | assert true works \# (
|
|
335
|
+
# 8: ok 4 {{moduleName}} Before script web server tests | assert true works \# (261 ms)
|
|
336
336
|
# 9:
|
|
337
337
|
# 10: 1
|
|
338
338
|
# 11: \# tests 4
|
|
339
339
|
# 12: \# pass 4
|
|
340
340
|
# 13: \# skip 0
|
|
341
341
|
# 14: \# fail 0
|
|
342
|
-
# 15: \# duration
|
|
342
|
+
# 15: \# duration 950
|
|
343
343
|
# 16:
|
|
344
344
|
# 17:
|
|
345
345
|
#
|
|
@@ -351,48 +351,48 @@ ok 2 - --after script tests
|
|
|
351
351
|
# Subtest: --before works for --browser mode it needs to be awaited
|
|
352
352
|
ok 4 - --before works for --browser mode it needs to be awaited
|
|
353
353
|
---
|
|
354
|
-
duration_ms:
|
|
354
|
+
duration_ms: 2270.542971
|
|
355
355
|
...
|
|
356
356
|
1..4
|
|
357
357
|
ok 3 - --before script tests
|
|
358
358
|
---
|
|
359
|
-
duration_ms:
|
|
359
|
+
duration_ms: 6922.289536
|
|
360
360
|
type: 'suite'
|
|
361
361
|
...
|
|
362
362
|
# Subtest: Advanced HTML Input Tests
|
|
363
363
|
# Subtest: testing with specific html without content works
|
|
364
364
|
ok 1 - testing with specific html without content works
|
|
365
365
|
---
|
|
366
|
-
duration_ms: 0.
|
|
366
|
+
duration_ms: 0.432436
|
|
367
367
|
...
|
|
368
368
|
1..1
|
|
369
369
|
ok 4 - Advanced HTML Input Tests
|
|
370
370
|
---
|
|
371
|
-
duration_ms: 2.
|
|
371
|
+
duration_ms: 2.472823
|
|
372
372
|
type: 'suite'
|
|
373
373
|
...
|
|
374
374
|
# Subtest: Advanced Error Edge Cases Tests
|
|
375
375
|
# Subtest: todo
|
|
376
376
|
ok 1 - todo
|
|
377
377
|
---
|
|
378
|
-
duration_ms: 0.
|
|
378
|
+
duration_ms: 0.243411
|
|
379
379
|
...
|
|
380
380
|
1..1
|
|
381
381
|
ok 5 - Advanced Error Edge Cases Tests
|
|
382
382
|
---
|
|
383
|
-
duration_ms: 0.
|
|
383
|
+
duration_ms: 0.40325
|
|
384
384
|
type: 'suite'
|
|
385
385
|
...
|
|
386
386
|
# Subtest: File and Folder Combination Tests
|
|
387
387
|
# Subtest: todo
|
|
388
388
|
ok 1 - todo
|
|
389
389
|
---
|
|
390
|
-
duration_ms: 0.
|
|
390
|
+
duration_ms: 0.196483
|
|
391
391
|
...
|
|
392
392
|
1..1
|
|
393
393
|
ok 6 - File and Folder Combination Tests
|
|
394
394
|
---
|
|
395
|
-
duration_ms: 0.
|
|
395
|
+
duration_ms: 0.34287
|
|
396
396
|
type: 'suite'
|
|
397
397
|
...
|
|
398
398
|
# Trace:
|
|
@@ -408,16 +408,16 @@ ok 6 - File and Folder Combination Tests
|
|
|
408
408
|
# 7: placeholder: 1000,
|
|
409
409
|
# 8: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
|
|
410
410
|
# 9: }
|
|
411
|
-
# 10: ok 2 {{moduleName}} Passing Tests | async test finishes \# (
|
|
411
|
+
# 10: ok 2 {{moduleName}} Passing Tests | async test finishes \# (62 ms)
|
|
412
412
|
# 11: calling deepEqual test case
|
|
413
|
-
# 12: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (
|
|
413
|
+
# 12: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (3 ms)
|
|
414
414
|
# 13:
|
|
415
415
|
# 14: 1
|
|
416
416
|
# 15: \# tests 3
|
|
417
417
|
# 16: \# pass 3
|
|
418
418
|
# 17: \# skip 0
|
|
419
419
|
# 18: \# fail 0
|
|
420
|
-
# 19: \# duration
|
|
420
|
+
# 19: \# duration 70
|
|
421
421
|
# 20:
|
|
422
422
|
# 21:
|
|
423
423
|
#
|
|
@@ -433,7 +433,7 @@ ok 6 - File and Folder Combination Tests
|
|
|
433
433
|
# Subtest: testing a single passing js file works
|
|
434
434
|
ok 1 - testing a single passing js file works
|
|
435
435
|
---
|
|
436
|
-
duration_ms:
|
|
436
|
+
duration_ms: 2064.34962
|
|
437
437
|
...
|
|
438
438
|
# Trace:
|
|
439
439
|
# ERROR TEST Name: File Input Tests | testing a single failing js file works
|
|
@@ -442,7 +442,6 @@ ok 6 - File and Folder Combination Tests
|
|
|
442
442
|
#
|
|
443
443
|
#
|
|
444
444
|
# at execute (file:///home/izelnakri/Github/qunitx/test/helpers/shell.js:27:13)
|
|
445
|
-
# at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
|
|
446
445
|
# at async file:///home/izelnakri/Github/qunitx/test/inputs/file-test.js:15:7
|
|
447
446
|
# at async TestContext.<anonymous> (file:///home/izelnakri/Github/qunitx/shims/nodejs.js:21:12)
|
|
448
447
|
# at async Test.run (node:internal/test_runner/test:569:9)
|
|
@@ -450,23 +449,23 @@ ok 6 - File and Folder Combination Tests
|
|
|
450
449
|
# Subtest: testing a single failing js file works
|
|
451
450
|
ok 2 - testing a single failing js file works
|
|
452
451
|
---
|
|
453
|
-
duration_ms:
|
|
452
|
+
duration_ms: 2133.586125
|
|
454
453
|
...
|
|
455
454
|
# Trace:
|
|
456
455
|
# TEST NAME: File Input Tests | testing a single passing js file with --browser works, console output supressed
|
|
457
456
|
# TEST COMMAND: node cli.js tmp/test/passing-tests.js --browser
|
|
458
|
-
# 0: \# QUnitX running: http://localhost:
|
|
457
|
+
# 0: \# QUnitX running: http://localhost:1234/
|
|
459
458
|
# 1: TAP version 13
|
|
460
|
-
# 2: ok 1 {{moduleName}} Passing Tests | assert true works \# (
|
|
461
|
-
# 3: ok 2 {{moduleName}} Passing Tests | async test finishes \# (
|
|
462
|
-
# 4: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (
|
|
459
|
+
# 2: ok 1 {{moduleName}} Passing Tests | assert true works \# (2 ms)
|
|
460
|
+
# 3: ok 2 {{moduleName}} Passing Tests | async test finishes \# (66 ms)
|
|
461
|
+
# 4: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (1 ms)
|
|
463
462
|
# 5:
|
|
464
463
|
# 6: 1
|
|
465
464
|
# 7: \# tests 3
|
|
466
465
|
# 8: \# pass 3
|
|
467
466
|
# 9: \# skip 0
|
|
468
467
|
# 10: \# fail 0
|
|
469
|
-
# 11: \# duration
|
|
468
|
+
# 11: \# duration 713
|
|
470
469
|
# 12:
|
|
471
470
|
# 13:
|
|
472
471
|
#
|
|
@@ -478,21 +477,21 @@ ok 6 - File and Folder Combination Tests
|
|
|
478
477
|
# Subtest: testing a single passing js file with --browser works, console output supressed
|
|
479
478
|
ok 3 - testing a single passing js file with --browser works, console output supressed
|
|
480
479
|
---
|
|
481
|
-
duration_ms:
|
|
480
|
+
duration_ms: 3017.16875
|
|
482
481
|
...
|
|
483
482
|
# Trace:
|
|
484
483
|
# TEST NAME: File Input Tests | testing a single passing js file with --browser --debug works
|
|
485
484
|
# TEST COMMAND: node cli.js tmp/test/passing-tests.js --browser --debug
|
|
486
|
-
# 0: \# HTTPServer [Server]: started successfully at [localhost:
|
|
487
|
-
# 1: \# QUnitX running: http://localhost:
|
|
485
|
+
# 0: \# HTTPServer [Server]: started successfully at [localhost:1234] in [388ms]
|
|
486
|
+
# 1: \# QUnitX running: http://localhost:1234/
|
|
488
487
|
# 2: \# [HTTPServer] GET /favicon.ico
|
|
489
488
|
# 3: TAP version 13
|
|
490
|
-
# 4:
|
|
491
|
-
# 5:
|
|
489
|
+
# 4: ok 1 {{moduleName}} Passing Tests | assert true works \# (2 ms)
|
|
490
|
+
# 5: calling assert true test case
|
|
492
491
|
# 6: resolving async test
|
|
493
|
-
# 7:
|
|
494
|
-
# 8:
|
|
495
|
-
# 9: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (
|
|
492
|
+
# 7: ok 2 {{moduleName}} Passing Tests | async test finishes \# (57 ms)
|
|
493
|
+
# 8: calling deepEqual test case
|
|
494
|
+
# 9: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (1 ms)
|
|
496
495
|
# 10: {
|
|
497
496
|
# 11: moduleName: 'called resolved async test with object',
|
|
498
497
|
# 12: placeholder: 1000,
|
|
@@ -504,7 +503,7 @@ ok 6 - File and Folder Combination Tests
|
|
|
504
503
|
# 18: \# pass 3
|
|
505
504
|
# 19: \# skip 0
|
|
506
505
|
# 20: \# fail 0
|
|
507
|
-
# 21: \# duration
|
|
506
|
+
# 21: \# duration 701
|
|
508
507
|
# 22:
|
|
509
508
|
# 23: \# HTTPServer [Server]: stopped successfully
|
|
510
509
|
# 24:
|
|
@@ -517,7 +516,7 @@ ok 6 - File and Folder Combination Tests
|
|
|
517
516
|
# Subtest: testing a single passing js file with --browser --debug works
|
|
518
517
|
ok 4 - testing a single passing js file with --browser --debug works
|
|
519
518
|
---
|
|
520
|
-
duration_ms:
|
|
519
|
+
duration_ms: 2678.507117
|
|
521
520
|
...
|
|
522
521
|
# Trace:
|
|
523
522
|
# ERROR TEST Name: File Input Tests | testing a single failing js with --browser file works
|
|
@@ -533,7 +532,7 @@ ok 6 - File and Folder Combination Tests
|
|
|
533
532
|
# Subtest: testing a single failing js with --browser file works
|
|
534
533
|
ok 5 - testing a single failing js with --browser file works
|
|
535
534
|
---
|
|
536
|
-
duration_ms:
|
|
535
|
+
duration_ms: 2062.026471
|
|
537
536
|
...
|
|
538
537
|
# Trace:
|
|
539
538
|
# ERROR TEST Name: File Input Tests | testing a single failing js file with --browser --debug works
|
|
@@ -549,23 +548,23 @@ ok 6 - File and Folder Combination Tests
|
|
|
549
548
|
# Subtest: testing a single failing js file with --browser --debug works
|
|
550
549
|
ok 6 - testing a single failing js file with --browser --debug works
|
|
551
550
|
---
|
|
552
|
-
duration_ms:
|
|
551
|
+
duration_ms: 1842.966084
|
|
553
552
|
...
|
|
554
553
|
# Trace:
|
|
555
554
|
# TEST NAME: File Input Tests | testing a single passing ts file with --browser works, console output supressed
|
|
556
555
|
# TEST COMMAND: node cli.js tmp/test/passing-tests.ts --browser
|
|
557
|
-
# 0: \# QUnitX running: http://localhost:
|
|
556
|
+
# 0: \# QUnitX running: http://localhost:1235/
|
|
558
557
|
# 1: TAP version 13
|
|
559
|
-
# 2: ok 1 {{moduleName}} Passing Tests | assert true works \# (
|
|
560
|
-
# 3: ok 2 {{moduleName}} Passing Tests | async test finishes \# (
|
|
561
|
-
# 4: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (
|
|
558
|
+
# 2: ok 1 {{moduleName}} Passing Tests | assert true works \# (1 ms)
|
|
559
|
+
# 3: ok 2 {{moduleName}} Passing Tests | async test finishes \# (52 ms)
|
|
560
|
+
# 4: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (0 ms)
|
|
562
561
|
# 5:
|
|
563
562
|
# 6: 1
|
|
564
563
|
# 7: \# tests 3
|
|
565
564
|
# 8: \# pass 3
|
|
566
565
|
# 9: \# skip 0
|
|
567
566
|
# 10: \# fail 0
|
|
568
|
-
# 11: \# duration
|
|
567
|
+
# 11: \# duration 646
|
|
569
568
|
# 12:
|
|
570
569
|
# 13:
|
|
571
570
|
#
|
|
@@ -577,20 +576,20 @@ ok 6 - File and Folder Combination Tests
|
|
|
577
576
|
# Subtest: testing a single passing ts file with --browser works, console output supressed
|
|
578
577
|
ok 7 - testing a single passing ts file with --browser works, console output supressed
|
|
579
578
|
---
|
|
580
|
-
duration_ms:
|
|
579
|
+
duration_ms: 1794.087257
|
|
581
580
|
...
|
|
582
581
|
# Trace:
|
|
583
582
|
# TEST NAME: File Input Tests | testing a single passing ts file with --browser --debug works
|
|
584
583
|
# TEST COMMAND: node cli.js tmp/test/passing-tests.ts --browser --debug
|
|
585
|
-
# 0: \# HTTPServer [Server]: started successfully at [localhost:
|
|
586
|
-
# 1: \# QUnitX running: http://localhost:
|
|
584
|
+
# 0: \# HTTPServer [Server]: started successfully at [localhost:1235] in [243ms]
|
|
585
|
+
# 1: \# QUnitX running: http://localhost:1235/
|
|
587
586
|
# 2: \# [HTTPServer] GET /favicon.ico
|
|
588
587
|
# 3: TAP version 13
|
|
589
588
|
# 4: calling assert true test case
|
|
590
589
|
# 5: ok 1 {{moduleName}} Passing Tests | assert true works \# (2 ms)
|
|
591
590
|
# 6: resolving async test
|
|
592
|
-
# 7:
|
|
593
|
-
# 8:
|
|
591
|
+
# 7: calling deepEqual test case
|
|
592
|
+
# 8: ok 2 {{moduleName}} Passing Tests | async test finishes \# (51 ms)
|
|
594
593
|
# 9: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (1 ms)
|
|
595
594
|
# 10: {
|
|
596
595
|
# 11: moduleName: 'called resolved async test with object',
|
|
@@ -603,7 +602,7 @@ ok 6 - File and Folder Combination Tests
|
|
|
603
602
|
# 18: \# pass 3
|
|
604
603
|
# 19: \# skip 0
|
|
605
604
|
# 20: \# fail 0
|
|
606
|
-
# 21: \# duration
|
|
605
|
+
# 21: \# duration 694
|
|
607
606
|
# 22:
|
|
608
607
|
# 23: \# HTTPServer [Server]: stopped successfully
|
|
609
608
|
# 24:
|
|
@@ -616,7 +615,7 @@ ok 6 - File and Folder Combination Tests
|
|
|
616
615
|
# Subtest: testing a single passing ts file with --browser --debug works
|
|
617
616
|
ok 8 - testing a single passing ts file with --browser --debug works
|
|
618
617
|
---
|
|
619
|
-
duration_ms:
|
|
618
|
+
duration_ms: 1915.417188
|
|
620
619
|
...
|
|
621
620
|
# Trace:
|
|
622
621
|
# ERROR TEST Name: File Input Tests | testing a single failing ts with --browser file works
|
|
@@ -632,7 +631,7 @@ ok 6 - File and Folder Combination Tests
|
|
|
632
631
|
# Subtest: testing a single failing ts with --browser file works
|
|
633
632
|
ok 9 - testing a single failing ts with --browser file works
|
|
634
633
|
---
|
|
635
|
-
duration_ms:
|
|
634
|
+
duration_ms: 1993.983142
|
|
636
635
|
...
|
|
637
636
|
# Trace:
|
|
638
637
|
# ERROR TEST Name: File Input Tests | testing a single failing ts file with --browser --debug works
|
|
@@ -648,48 +647,48 @@ ok 6 - File and Folder Combination Tests
|
|
|
648
647
|
# Subtest: testing a single failing ts file with --browser --debug works
|
|
649
648
|
ok 10 - testing a single failing ts file with --browser --debug works
|
|
650
649
|
---
|
|
651
|
-
duration_ms:
|
|
650
|
+
duration_ms: 1932.323632
|
|
652
651
|
...
|
|
653
652
|
1..10
|
|
654
653
|
ok 7 - File Input Tests
|
|
655
654
|
---
|
|
656
|
-
duration_ms:
|
|
655
|
+
duration_ms: 21439.17379
|
|
657
656
|
type: 'suite'
|
|
658
657
|
...
|
|
659
658
|
# Trace:
|
|
660
659
|
# TEST NAME: Folder Input Tests | works for a single folder input with all passing tests
|
|
661
|
-
# TEST COMMAND: node cli.js tmp/
|
|
662
|
-
# 0: \# QUnitX running: /home/izelnakri/Github/qunitx/tmp/
|
|
660
|
+
# TEST COMMAND: node cli.js tmp/988bcbfd-c7ba-4de7-ab42-5ce78605cca8
|
|
661
|
+
# 0: \# QUnitX running: /home/izelnakri/Github/qunitx/tmp/988bcbfd-c7ba-4de7-ab42-5ce78605cca8/first-module-pass.js, /home/izelnakri/Github/qunitx/tmp/988bcbfd-c7ba-4de7-ab42-5ce78605cca8/second-module-pass.js
|
|
663
662
|
# 1: TAP version 13
|
|
664
663
|
# 2: calling assert true test case
|
|
665
|
-
# 3: ok 1
|
|
664
|
+
# 3: ok 1 988bcbfd-c7ba-4de7-ab42-5ce78605cca8 | first-module-pass Passing Tests | assert true works \# (0 ms)
|
|
666
665
|
# 4: resolving async test
|
|
667
666
|
# 5: {
|
|
668
667
|
# 6: moduleName: 'called resolved async test with object',
|
|
669
668
|
# 7: placeholder: 1000,
|
|
670
669
|
# 8: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
|
|
671
670
|
# 9: }
|
|
672
|
-
# 10: ok 2
|
|
671
|
+
# 10: ok 2 988bcbfd-c7ba-4de7-ab42-5ce78605cca8 | first-module-pass Passing Tests | async test finishes \# (56 ms)
|
|
673
672
|
# 11: calling deepEqual test case
|
|
674
|
-
# 12: ok 3
|
|
673
|
+
# 12: ok 3 988bcbfd-c7ba-4de7-ab42-5ce78605cca8 | first-module-pass Passing Tests | deepEqual true works \# (1 ms)
|
|
675
674
|
# 13: calling assert true test case
|
|
676
|
-
# 14: ok 4
|
|
675
|
+
# 14: ok 4 988bcbfd-c7ba-4de7-ab42-5ce78605cca8 | second-module-pass Passing Tests | assert true works \# (0 ms)
|
|
677
676
|
# 15: resolving async test
|
|
678
677
|
# 16: {
|
|
679
678
|
# 17: moduleName: 'called resolved async test with object',
|
|
680
679
|
# 18: placeholder: 1000,
|
|
681
680
|
# 19: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
|
|
682
681
|
# 20: }
|
|
683
|
-
# 21: ok 5
|
|
682
|
+
# 21: ok 5 988bcbfd-c7ba-4de7-ab42-5ce78605cca8 | second-module-pass Passing Tests | async test finishes \# (54 ms)
|
|
684
683
|
# 22: calling deepEqual test case
|
|
685
|
-
# 23: ok 6
|
|
684
|
+
# 23: ok 6 988bcbfd-c7ba-4de7-ab42-5ce78605cca8 | second-module-pass Passing Tests | deepEqual true works \# (0 ms)
|
|
686
685
|
# 24:
|
|
687
686
|
# 25: 1
|
|
688
687
|
# 26: \# tests 6
|
|
689
688
|
# 27: \# pass 6
|
|
690
689
|
# 28: \# skip 0
|
|
691
690
|
# 29: \# fail 0
|
|
692
|
-
# 30: \# duration
|
|
691
|
+
# 30: \# duration 117
|
|
693
692
|
# 31:
|
|
694
693
|
# 32:
|
|
695
694
|
#
|
|
@@ -705,12 +704,12 @@ ok 7 - File Input Tests
|
|
|
705
704
|
# Subtest: works for a single folder input with all passing tests
|
|
706
705
|
ok 1 - works for a single folder input with all passing tests
|
|
707
706
|
---
|
|
708
|
-
duration_ms:
|
|
707
|
+
duration_ms: 932.9871
|
|
709
708
|
...
|
|
710
709
|
# Trace:
|
|
711
710
|
# ERROR TEST Name: Folder Input Tests | works for a single folder input with few failing tests
|
|
712
|
-
# ERROR TEST COMMAND: node cli.js tmp/
|
|
713
|
-
# Error: Command failed: node cli.js tmp/
|
|
711
|
+
# ERROR TEST COMMAND: node cli.js tmp/d30dcbe7-6301-456d-8afc-42311d345ff8
|
|
712
|
+
# Error: Command failed: node cli.js tmp/d30dcbe7-6301-456d-8afc-42311d345ff8
|
|
714
713
|
#
|
|
715
714
|
#
|
|
716
715
|
# at execute (file:///home/izelnakri/Github/qunitx/test/helpers/shell.js:27:13)
|
|
@@ -722,57 +721,57 @@ ok 7 - File Input Tests
|
|
|
722
721
|
# Subtest: works for a single folder input with few failing tests
|
|
723
722
|
ok 2 - works for a single folder input with few failing tests
|
|
724
723
|
---
|
|
725
|
-
duration_ms:
|
|
724
|
+
duration_ms: 1099.770804
|
|
726
725
|
...
|
|
727
726
|
# Trace:
|
|
728
727
|
# TEST NAME: Folder Input Tests |
|
|
729
|
-
# TEST COMMAND: node cli.js tmp/
|
|
730
|
-
# 0: \# QUnitX running: /home/izelnakri/Github/qunitx/tmp/
|
|
728
|
+
# TEST COMMAND: node cli.js tmp/949fa069-a10f-4776-8aa0-bfad7e42fbc6 tmp/0386e4cf-4a4b-41de-a6ab-7e90b609d9f9
|
|
729
|
+
# 0: \# QUnitX running: /home/izelnakri/Github/qunitx/tmp/949fa069-a10f-4776-8aa0-bfad7e42fbc6/first-module-pass.js, /home/izelnakri/Github/qunitx/tmp/949fa069-a10f-4776-8aa0-bfad7e42fbc6/second-module-pass.js, /home/izelnakri/Github/qunitx/tmp/0386e4cf-4a4b-41de-a6ab-7e90b609d9f9/first-module-pass.js, /home/izelnakri/Github/qunitx/tmp/0386e4cf-4a4b-41de-a6ab-7e90b609d9f9/second-module-pass.js
|
|
731
730
|
# 1: TAP version 13
|
|
732
731
|
# 2: calling assert true test case
|
|
733
|
-
# 3: ok 1
|
|
732
|
+
# 3: ok 1 949fa069-a10f-4776-8aa0-bfad7e42fbc6 | first-module-pass Passing Tests | assert true works \# (1 ms)
|
|
734
733
|
# 4: resolving async test
|
|
735
734
|
# 5: {
|
|
736
735
|
# 6: moduleName: 'called resolved async test with object',
|
|
737
736
|
# 7: placeholder: 1000,
|
|
738
737
|
# 8: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
|
|
739
738
|
# 9: }
|
|
740
|
-
# 10: ok 2
|
|
739
|
+
# 10: ok 2 949fa069-a10f-4776-8aa0-bfad7e42fbc6 | first-module-pass Passing Tests | async test finishes \# (59 ms)
|
|
741
740
|
# 11: calling deepEqual test case
|
|
742
|
-
# 12: ok 3
|
|
741
|
+
# 12: ok 3 949fa069-a10f-4776-8aa0-bfad7e42fbc6 | first-module-pass Passing Tests | deepEqual true works \# (1 ms)
|
|
743
742
|
# 13: calling assert true test case
|
|
744
|
-
# 14: ok 4
|
|
743
|
+
# 14: ok 4 949fa069-a10f-4776-8aa0-bfad7e42fbc6 | second-module-pass Passing Tests | assert true works \# (0 ms)
|
|
745
744
|
# 15: resolving async test
|
|
746
745
|
# 16: {
|
|
747
746
|
# 17: moduleName: 'called resolved async test with object',
|
|
748
747
|
# 18: placeholder: 1000,
|
|
749
748
|
# 19: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
|
|
750
749
|
# 20: }
|
|
751
|
-
# 21: ok 5
|
|
750
|
+
# 21: ok 5 949fa069-a10f-4776-8aa0-bfad7e42fbc6 | second-module-pass Passing Tests | async test finishes \# (53 ms)
|
|
752
751
|
# 22: calling deepEqual test case
|
|
753
|
-
# 23: ok 6
|
|
752
|
+
# 23: ok 6 949fa069-a10f-4776-8aa0-bfad7e42fbc6 | second-module-pass Passing Tests | deepEqual true works \# (0 ms)
|
|
754
753
|
# 24: calling assert true test case
|
|
755
|
-
# 25: ok 7
|
|
754
|
+
# 25: ok 7 0386e4cf-4a4b-41de-a6ab-7e90b609d9f9 | first-module-pass Passing Tests | assert true works \# (0 ms)
|
|
756
755
|
# 26: resolving async test
|
|
757
756
|
# 27: {
|
|
758
757
|
# 28: moduleName: 'called resolved async test with object',
|
|
759
758
|
# 29: placeholder: 1000,
|
|
760
759
|
# 30: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
|
|
761
760
|
# 31: }
|
|
762
|
-
# 32: ok 8
|
|
761
|
+
# 32: ok 8 0386e4cf-4a4b-41de-a6ab-7e90b609d9f9 | first-module-pass Passing Tests | async test finishes \# (51 ms)
|
|
763
762
|
# 33: calling deepEqual test case
|
|
764
|
-
# 34: ok 9
|
|
763
|
+
# 34: ok 9 0386e4cf-4a4b-41de-a6ab-7e90b609d9f9 | first-module-pass Passing Tests | deepEqual true works \# (0 ms)
|
|
765
764
|
# 35: calling assert true test case
|
|
766
|
-
# 36: ok 10
|
|
765
|
+
# 36: ok 10 0386e4cf-4a4b-41de-a6ab-7e90b609d9f9 | second-module-pass Passing Tests | assert true works \# (0 ms)
|
|
767
766
|
# 37: resolving async test
|
|
768
767
|
# 38: {
|
|
769
768
|
# 39: moduleName: 'called resolved async test with object',
|
|
770
769
|
# 40: placeholder: 1000,
|
|
771
770
|
# 41: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
|
|
772
771
|
# 42: }
|
|
773
|
-
# 43: ok 11
|
|
772
|
+
# 43: ok 11 0386e4cf-4a4b-41de-a6ab-7e90b609d9f9 | second-module-pass Passing Tests | async test finishes \# (54 ms)
|
|
774
773
|
# 44: calling deepEqual test case
|
|
775
|
-
# 45: ok 12
|
|
774
|
+
# 45: ok 12 0386e4cf-4a4b-41de-a6ab-7e90b609d9f9 | second-module-pass Passing Tests | deepEqual true works \# (0 ms)
|
|
776
775
|
# 46:
|
|
777
776
|
# 47: 1
|
|
778
777
|
# 48: \# tests 12
|
|
@@ -792,12 +791,12 @@ ok 7 - File Input Tests
|
|
|
792
791
|
# Subtest: works for a multiple folders input with all passing tests
|
|
793
792
|
ok 3 - works for a multiple folders input with all passing tests
|
|
794
793
|
---
|
|
795
|
-
duration_ms:
|
|
794
|
+
duration_ms: 1046.421437
|
|
796
795
|
...
|
|
797
796
|
# Trace:
|
|
798
797
|
# ERROR TEST Name: Folder Input Tests |
|
|
799
|
-
# ERROR TEST COMMAND: node cli.js tmp/
|
|
800
|
-
# Error: Command failed: node cli.js tmp/
|
|
798
|
+
# ERROR TEST COMMAND: node cli.js tmp/20b9a622-19c8-4f05-99e2-99df51966c05 tmp/4ad6d263-e829-4c6b-ac75-301a686658e2
|
|
799
|
+
# Error: Command failed: node cli.js tmp/20b9a622-19c8-4f05-99e2-99df51966c05 tmp/4ad6d263-e829-4c6b-ac75-301a686658e2
|
|
801
800
|
#
|
|
802
801
|
#
|
|
803
802
|
# at execute (file:///home/izelnakri/Github/qunitx/test/helpers/shell.js:27:13)
|
|
@@ -809,26 +808,26 @@ ok 7 - File Input Tests
|
|
|
809
808
|
# Subtest: works for a multiple folders input with few failing tests
|
|
810
809
|
ok 4 - works for a multiple folders input with few failing tests
|
|
811
810
|
---
|
|
812
|
-
duration_ms:
|
|
811
|
+
duration_ms: 1261.483516
|
|
813
812
|
...
|
|
814
813
|
# Trace:
|
|
815
814
|
# TEST NAME: Folder Input Tests | works for a single folder input in browser mode with all passing tests
|
|
816
|
-
# TEST COMMAND: node cli.js tmp/
|
|
815
|
+
# TEST COMMAND: node cli.js tmp/bcea3451-2403-4dbd-b853-b4a654bd10fa --browser
|
|
817
816
|
# 0: \# QUnitX running: http://localhost:1234/
|
|
818
817
|
# 1: TAP version 13
|
|
819
|
-
# 2: ok 1
|
|
820
|
-
# 3: ok 2
|
|
821
|
-
# 4: ok 3
|
|
822
|
-
# 5: ok 4
|
|
823
|
-
# 6: ok 5
|
|
824
|
-
# 7: ok 6
|
|
818
|
+
# 2: ok 1 bcea3451-2403-4dbd-b853-b4a654bd10fa | first-module-pass Passing Tests | assert true works \# (1 ms)
|
|
819
|
+
# 3: ok 2 bcea3451-2403-4dbd-b853-b4a654bd10fa | first-module-pass Passing Tests | async test finishes \# (57 ms)
|
|
820
|
+
# 4: ok 3 bcea3451-2403-4dbd-b853-b4a654bd10fa | first-module-pass Passing Tests | deepEqual true works \# (1 ms)
|
|
821
|
+
# 5: ok 4 bcea3451-2403-4dbd-b853-b4a654bd10fa | second-module-pass Passing Tests | assert true works \# (0 ms)
|
|
822
|
+
# 6: ok 5 bcea3451-2403-4dbd-b853-b4a654bd10fa | second-module-pass Passing Tests | async test finishes \# (53 ms)
|
|
823
|
+
# 7: ok 6 bcea3451-2403-4dbd-b853-b4a654bd10fa | second-module-pass Passing Tests | deepEqual true works \# (1 ms)
|
|
825
824
|
# 8:
|
|
826
825
|
# 9: 1
|
|
827
826
|
# 10: \# tests 6
|
|
828
827
|
# 11: \# pass 6
|
|
829
828
|
# 12: \# skip 0
|
|
830
829
|
# 13: \# fail 0
|
|
831
|
-
# 14: \# duration
|
|
830
|
+
# 14: \# duration 849
|
|
832
831
|
# 15:
|
|
833
832
|
# 16:
|
|
834
833
|
#
|
|
@@ -840,12 +839,12 @@ ok 7 - File Input Tests
|
|
|
840
839
|
# Subtest: works for a single folder input in browser mode with all passing tests
|
|
841
840
|
ok 5 - works for a single folder input in browser mode with all passing tests
|
|
842
841
|
---
|
|
843
|
-
duration_ms:
|
|
842
|
+
duration_ms: 2071.056293
|
|
844
843
|
...
|
|
845
844
|
# Trace:
|
|
846
845
|
# ERROR TEST Name: Folder Input Tests | works for a single folder input in browser mode with few failing tests
|
|
847
|
-
# ERROR TEST COMMAND: node cli.js tmp/
|
|
848
|
-
# Error: Command failed: node cli.js tmp/
|
|
846
|
+
# ERROR TEST COMMAND: node cli.js tmp/627c05b2-7f7f-41dc-98e3-41e89c4e2441 --browser
|
|
847
|
+
# Error: Command failed: node cli.js tmp/627c05b2-7f7f-41dc-98e3-41e89c4e2441 --browser
|
|
849
848
|
#
|
|
850
849
|
#
|
|
851
850
|
# at execute (file:///home/izelnakri/Github/qunitx/test/helpers/shell.js:27:13)
|
|
@@ -856,32 +855,32 @@ ok 7 - File Input Tests
|
|
|
856
855
|
# Subtest: works for a single folder input in browser mode with few failing tests
|
|
857
856
|
ok 6 - works for a single folder input in browser mode with few failing tests
|
|
858
857
|
---
|
|
859
|
-
duration_ms:
|
|
858
|
+
duration_ms: 2235.026185
|
|
860
859
|
...
|
|
861
860
|
# Trace:
|
|
862
861
|
# TEST NAME: Folder Input Tests | works for a multiple folders input in browser mode with all passing tests
|
|
863
|
-
# TEST COMMAND: node cli.js tmp/
|
|
862
|
+
# TEST COMMAND: node cli.js tmp/86b5260b-d588-4cda-bbb4-7eacf9bbea7a tmp/5216cb0a-c42e-48b0-a703-c02a80ff1b56 --browser
|
|
864
863
|
# 0: \# QUnitX running: http://localhost:1234/
|
|
865
864
|
# 1: TAP version 13
|
|
866
|
-
# 2: ok 1
|
|
867
|
-
# 3: ok 2
|
|
868
|
-
# 4: ok 3
|
|
869
|
-
# 5: ok 4
|
|
870
|
-
# 6: ok 5
|
|
871
|
-
# 7: ok 6
|
|
872
|
-
# 8: ok 7
|
|
873
|
-
# 9: ok 8
|
|
874
|
-
# 10: ok 9
|
|
875
|
-
# 11: ok 10
|
|
876
|
-
# 12: ok 11
|
|
877
|
-
# 13: ok 12
|
|
865
|
+
# 2: ok 1 86b5260b-d588-4cda-bbb4-7eacf9bbea7a | first-module-pass Passing Tests | assert true works \# (3 ms)
|
|
866
|
+
# 3: ok 2 86b5260b-d588-4cda-bbb4-7eacf9bbea7a | first-module-pass Passing Tests | async test finishes \# (91 ms)
|
|
867
|
+
# 4: ok 3 86b5260b-d588-4cda-bbb4-7eacf9bbea7a | first-module-pass Passing Tests | deepEqual true works \# (1 ms)
|
|
868
|
+
# 5: ok 4 86b5260b-d588-4cda-bbb4-7eacf9bbea7a | second-module-pass Passing Tests | assert true works \# (1 ms)
|
|
869
|
+
# 6: ok 5 86b5260b-d588-4cda-bbb4-7eacf9bbea7a | second-module-pass Passing Tests | async test finishes \# (60 ms)
|
|
870
|
+
# 7: ok 6 86b5260b-d588-4cda-bbb4-7eacf9bbea7a | second-module-pass Passing Tests | deepEqual true works \# (1 ms)
|
|
871
|
+
# 8: ok 7 5216cb0a-c42e-48b0-a703-c02a80ff1b56 | first-module-pass Passing Tests | assert true works \# (1 ms)
|
|
872
|
+
# 9: ok 8 5216cb0a-c42e-48b0-a703-c02a80ff1b56 | first-module-pass Passing Tests | async test finishes \# (61 ms)
|
|
873
|
+
# 10: ok 9 5216cb0a-c42e-48b0-a703-c02a80ff1b56 | first-module-pass Passing Tests | deepEqual true works \# (2 ms)
|
|
874
|
+
# 11: ok 10 5216cb0a-c42e-48b0-a703-c02a80ff1b56 | second-module-pass Passing Tests | assert true works \# (1 ms)
|
|
875
|
+
# 12: ok 11 5216cb0a-c42e-48b0-a703-c02a80ff1b56 | second-module-pass Passing Tests | async test finishes \# (55 ms)
|
|
876
|
+
# 13: ok 12 5216cb0a-c42e-48b0-a703-c02a80ff1b56 | second-module-pass Passing Tests | deepEqual true works \# (2 ms)
|
|
878
877
|
# 14:
|
|
879
878
|
# 15: 1
|
|
880
879
|
# 16: \# tests 12
|
|
881
880
|
# 17: \# pass 12
|
|
882
881
|
# 18: \# skip 0
|
|
883
882
|
# 19: \# fail 0
|
|
884
|
-
# 20: \# duration
|
|
883
|
+
# 20: \# duration 1041
|
|
885
884
|
# 21:
|
|
886
885
|
# 22:
|
|
887
886
|
#
|
|
@@ -893,12 +892,12 @@ ok 7 - File Input Tests
|
|
|
893
892
|
# Subtest: works for a multiple folders input in browser mode with all passing tests
|
|
894
893
|
ok 7 - works for a multiple folders input in browser mode with all passing tests
|
|
895
894
|
---
|
|
896
|
-
duration_ms:
|
|
895
|
+
duration_ms: 2277.697984
|
|
897
896
|
...
|
|
898
897
|
# Trace:
|
|
899
898
|
# ERROR TEST Name: Folder Input Tests | works for a multiple folders input in browser mode with few failing tests
|
|
900
|
-
# ERROR TEST COMMAND: node cli.js tmp/
|
|
901
|
-
# Error: Command failed: node cli.js tmp/
|
|
899
|
+
# ERROR TEST COMMAND: node cli.js tmp/8c783bec-e2c4-43d4-b841-294c6335c20f tmp/8a9e4a9f-0360-472d-b02d-3d0ad47dd24d --browser
|
|
900
|
+
# Error: Command failed: node cli.js tmp/8c783bec-e2c4-43d4-b841-294c6335c20f tmp/8a9e4a9f-0360-472d-b02d-3d0ad47dd24d --browser
|
|
902
901
|
#
|
|
903
902
|
#
|
|
904
903
|
# at execute (file:///home/izelnakri/Github/qunitx/test/helpers/shell.js:27:13)
|
|
@@ -909,31 +908,31 @@ ok 7 - File Input Tests
|
|
|
909
908
|
# Subtest: works for a multiple folders input in browser mode with few failing tests
|
|
910
909
|
ok 8 - works for a multiple folders input in browser mode with few failing tests
|
|
911
910
|
---
|
|
912
|
-
duration_ms:
|
|
911
|
+
duration_ms: 2499.011246
|
|
913
912
|
...
|
|
914
913
|
# Trace:
|
|
915
914
|
# TEST NAME: Folder Input Tests | works for a single folder input in browser mode with debug and all passing tests
|
|
916
|
-
# TEST COMMAND: node cli.js tmp/
|
|
917
|
-
# 0: \# HTTPServer [Server]: started successfully at [localhost:1234] in [
|
|
915
|
+
# TEST COMMAND: node cli.js tmp/d5bb4e6d-d42a-4a71-9fed-7e85d2d6b1bf --browser --debug
|
|
916
|
+
# 0: \# HTTPServer [Server]: started successfully at [localhost:1234] in [228ms]
|
|
918
917
|
# 1: \# QUnitX running: http://localhost:1234/
|
|
919
918
|
# 2: \# [HTTPServer] GET /favicon.ico
|
|
920
919
|
# 3: TAP version 13
|
|
921
920
|
# 4: calling assert true test case
|
|
922
|
-
# 5: ok 1
|
|
921
|
+
# 5: ok 1 d5bb4e6d-d42a-4a71-9fed-7e85d2d6b1bf | first-module-pass Passing Tests | assert true works \# (1 ms)
|
|
923
922
|
# 6: resolving async test
|
|
924
|
-
# 7: ok 2
|
|
923
|
+
# 7: ok 2 d5bb4e6d-d42a-4a71-9fed-7e85d2d6b1bf | first-module-pass Passing Tests | async test finishes \# (52 ms)
|
|
925
924
|
# 8: calling deepEqual test case
|
|
926
|
-
# 9: ok 3
|
|
925
|
+
# 9: ok 3 d5bb4e6d-d42a-4a71-9fed-7e85d2d6b1bf | first-module-pass Passing Tests | deepEqual true works \# (1 ms)
|
|
927
926
|
# 10: calling assert true test case
|
|
928
|
-
# 11: ok 4
|
|
927
|
+
# 11: ok 4 d5bb4e6d-d42a-4a71-9fed-7e85d2d6b1bf | second-module-pass Passing Tests | assert true works \# (1 ms)
|
|
929
928
|
# 12: {
|
|
930
929
|
# 13: moduleName: 'called resolved async test with object',
|
|
931
930
|
# 14: placeholder: 1000,
|
|
932
931
|
# 15: anotherObject: { firstName: 'Izel', createdAt: {} }
|
|
933
932
|
# 16: }
|
|
934
933
|
# 17: resolving async test
|
|
935
|
-
# 18: ok 5
|
|
936
|
-
# 19: ok 6
|
|
934
|
+
# 18: ok 5 d5bb4e6d-d42a-4a71-9fed-7e85d2d6b1bf | second-module-pass Passing Tests | async test finishes \# (64 ms)
|
|
935
|
+
# 19: ok 6 d5bb4e6d-d42a-4a71-9fed-7e85d2d6b1bf | second-module-pass Passing Tests | deepEqual true works \# (1 ms)
|
|
937
936
|
# 20: calling deepEqual test case
|
|
938
937
|
# 21: {
|
|
939
938
|
# 22: moduleName: 'called resolved async test with object',
|
|
@@ -946,7 +945,7 @@ ok 7 - File Input Tests
|
|
|
946
945
|
# 29: \# pass 6
|
|
947
946
|
# 30: \# skip 0
|
|
948
947
|
# 31: \# fail 0
|
|
949
|
-
# 32: \# duration
|
|
948
|
+
# 32: \# duration 772
|
|
950
949
|
# 33:
|
|
951
950
|
# 34: \# HTTPServer [Server]: stopped successfully
|
|
952
951
|
# 35:
|
|
@@ -959,12 +958,12 @@ ok 7 - File Input Tests
|
|
|
959
958
|
# Subtest: works for a single folder input in browser mode with debug and all passing tests
|
|
960
959
|
ok 9 - works for a single folder input in browser mode with debug and all passing tests
|
|
961
960
|
---
|
|
962
|
-
duration_ms:
|
|
961
|
+
duration_ms: 2034.825306
|
|
963
962
|
...
|
|
964
963
|
# Trace:
|
|
965
964
|
# ERROR TEST Name: Folder Input Tests | works for a single folder input in browser mode with debug and few failing tests
|
|
966
|
-
# ERROR TEST COMMAND: node cli.js tmp/
|
|
967
|
-
# Error: Command failed: node cli.js tmp/
|
|
965
|
+
# ERROR TEST COMMAND: node cli.js tmp/08db0cb3-b261-44b1-971f-ab4732b23463 --browser --debug
|
|
966
|
+
# Error: Command failed: node cli.js tmp/08db0cb3-b261-44b1-971f-ab4732b23463 --browser --debug
|
|
968
967
|
#
|
|
969
968
|
#
|
|
970
969
|
# at execute (file:///home/izelnakri/Github/qunitx/test/helpers/shell.js:27:13)
|
|
@@ -975,54 +974,54 @@ ok 7 - File Input Tests
|
|
|
975
974
|
# Subtest: works for a single folder input in browser mode with debug and few failing tests
|
|
976
975
|
ok 10 - works for a single folder input in browser mode with debug and few failing tests
|
|
977
976
|
---
|
|
978
|
-
duration_ms:
|
|
977
|
+
duration_ms: 2431.62468
|
|
979
978
|
...
|
|
980
979
|
# Trace:
|
|
981
980
|
# TEST NAME: Folder Input Tests | works for a multiple folders input in browser mode with debug and all passing tests
|
|
982
|
-
# TEST COMMAND: node cli.js tmp/
|
|
983
|
-
# 0: \# HTTPServer [Server]: started successfully at [localhost:1234] in [
|
|
981
|
+
# TEST COMMAND: node cli.js tmp/ef4a9c3c-9b0d-42a0-b580-c2be8484dbc7 tmp/319eb30e-7fb6-4218-8588-2ffe575a58ed --browser --debug
|
|
982
|
+
# 0: \# HTTPServer [Server]: started successfully at [localhost:1234] in [257ms]
|
|
984
983
|
# 1: \# QUnitX running: http://localhost:1234/
|
|
985
984
|
# 2: \# [HTTPServer] GET /favicon.ico
|
|
986
985
|
# 3: TAP version 13
|
|
987
986
|
# 4: calling assert true test case
|
|
988
|
-
# 5: ok 1
|
|
987
|
+
# 5: ok 1 ef4a9c3c-9b0d-42a0-b580-c2be8484dbc7 | first-module-pass Passing Tests | assert true works \# (3 ms)
|
|
989
988
|
# 6: resolving async test
|
|
990
|
-
# 7: ok 2
|
|
991
|
-
# 8:
|
|
992
|
-
# 9:
|
|
989
|
+
# 7: ok 2 ef4a9c3c-9b0d-42a0-b580-c2be8484dbc7 | first-module-pass Passing Tests | async test finishes \# (82 ms)
|
|
990
|
+
# 8: ok 3 ef4a9c3c-9b0d-42a0-b580-c2be8484dbc7 | first-module-pass Passing Tests | deepEqual true works \# (1 ms)
|
|
991
|
+
# 9: calling deepEqual test case
|
|
993
992
|
# 10: calling assert true test case
|
|
994
|
-
# 11: ok 4
|
|
993
|
+
# 11: ok 4 ef4a9c3c-9b0d-42a0-b580-c2be8484dbc7 | second-module-pass Passing Tests | assert true works \# (1 ms)
|
|
995
994
|
# 12: {
|
|
996
995
|
# 13: moduleName: 'called resolved async test with object',
|
|
997
996
|
# 14: placeholder: 1000,
|
|
998
997
|
# 15: anotherObject: { firstName: 'Izel', createdAt: {} }
|
|
999
998
|
# 16: }
|
|
1000
999
|
# 17: resolving async test
|
|
1001
|
-
# 18: ok 5
|
|
1000
|
+
# 18: ok 5 ef4a9c3c-9b0d-42a0-b580-c2be8484dbc7 | second-module-pass Passing Tests | async test finishes \# (54 ms)
|
|
1002
1001
|
# 19: calling deepEqual test case
|
|
1003
|
-
# 20: ok 6
|
|
1002
|
+
# 20: ok 6 ef4a9c3c-9b0d-42a0-b580-c2be8484dbc7 | second-module-pass Passing Tests | deepEqual true works \# (0 ms)
|
|
1004
1003
|
# 21: calling assert true test case
|
|
1005
|
-
# 22: ok 7
|
|
1004
|
+
# 22: ok 7 319eb30e-7fb6-4218-8588-2ffe575a58ed | first-module-pass Passing Tests | assert true works \# (0 ms)
|
|
1006
1005
|
# 23: {
|
|
1007
1006
|
# 24: moduleName: 'called resolved async test with object',
|
|
1008
1007
|
# 25: placeholder: 1000,
|
|
1009
1008
|
# 26: anotherObject: { firstName: 'Izel', createdAt: {} }
|
|
1010
1009
|
# 27: }
|
|
1011
1010
|
# 28: resolving async test
|
|
1012
|
-
# 29:
|
|
1013
|
-
# 30:
|
|
1014
|
-
# 31: ok 9
|
|
1011
|
+
# 29: ok 8 319eb30e-7fb6-4218-8588-2ffe575a58ed | first-module-pass Passing Tests | async test finishes \# (58 ms)
|
|
1012
|
+
# 30: calling deepEqual test case
|
|
1013
|
+
# 31: ok 9 319eb30e-7fb6-4218-8588-2ffe575a58ed | first-module-pass Passing Tests | deepEqual true works \# (2 ms)
|
|
1015
1014
|
# 32: calling assert true test case
|
|
1016
|
-
# 33: ok 10
|
|
1015
|
+
# 33: ok 10 319eb30e-7fb6-4218-8588-2ffe575a58ed | second-module-pass Passing Tests | assert true works \# (1 ms)
|
|
1017
1016
|
# 34: {
|
|
1018
1017
|
# 35: moduleName: 'called resolved async test with object',
|
|
1019
1018
|
# 36: placeholder: 1000,
|
|
1020
1019
|
# 37: anotherObject: { firstName: 'Izel', createdAt: {} }
|
|
1021
1020
|
# 38: }
|
|
1022
1021
|
# 39: resolving async test
|
|
1023
|
-
# 40: ok 11
|
|
1022
|
+
# 40: ok 11 319eb30e-7fb6-4218-8588-2ffe575a58ed | second-module-pass Passing Tests | async test finishes \# (59 ms)
|
|
1024
1023
|
# 41: calling deepEqual test case
|
|
1025
|
-
# 42: ok 12
|
|
1024
|
+
# 42: ok 12 319eb30e-7fb6-4218-8588-2ffe575a58ed | second-module-pass Passing Tests | deepEqual true works \# (1 ms)
|
|
1026
1025
|
# 43: {
|
|
1027
1026
|
# 44: moduleName: 'called resolved async test with object',
|
|
1028
1027
|
# 45: placeholder: 1000,
|
|
@@ -1034,7 +1033,7 @@ ok 7 - File Input Tests
|
|
|
1034
1033
|
# 51: \# pass 12
|
|
1035
1034
|
# 52: \# skip 0
|
|
1036
1035
|
# 53: \# fail 0
|
|
1037
|
-
# 54: \# duration
|
|
1036
|
+
# 54: \# duration 970
|
|
1038
1037
|
# 55:
|
|
1039
1038
|
# 56: \# HTTPServer [Server]: stopped successfully
|
|
1040
1039
|
# 57:
|
|
@@ -1047,12 +1046,12 @@ ok 7 - File Input Tests
|
|
|
1047
1046
|
# Subtest: works for a multiple folders input in browser mode with debug and all passing tests
|
|
1048
1047
|
ok 11 - works for a multiple folders input in browser mode with debug and all passing tests
|
|
1049
1048
|
---
|
|
1050
|
-
duration_ms:
|
|
1049
|
+
duration_ms: 2263.130462
|
|
1051
1050
|
...
|
|
1052
1051
|
# Trace:
|
|
1053
1052
|
# ERROR TEST Name: Folder Input Tests | works for a multiple folders input in browser mode with debug and few failing tests
|
|
1054
|
-
# ERROR TEST COMMAND: node cli.js tmp/
|
|
1055
|
-
# Error: Command failed: node cli.js tmp/
|
|
1053
|
+
# ERROR TEST COMMAND: node cli.js tmp/bc06110e-fea2-4ed5-92cf-dbab7c177e53 tmp/b8a0efae-8df0-45e4-81f8-fb65491469c9 --browser --debug
|
|
1054
|
+
# Error: Command failed: node cli.js tmp/bc06110e-fea2-4ed5-92cf-dbab7c177e53 tmp/b8a0efae-8df0-45e4-81f8-fb65491469c9 --browser --debug
|
|
1056
1055
|
#
|
|
1057
1056
|
#
|
|
1058
1057
|
# at execute (file:///home/izelnakri/Github/qunitx/test/helpers/shell.js:27:13)
|
|
@@ -1063,24 +1062,24 @@ ok 7 - File Input Tests
|
|
|
1063
1062
|
# Subtest: works for a multiple folders input in browser mode with debug and few failing tests
|
|
1064
1063
|
ok 12 - works for a multiple folders input in browser mode with debug and few failing tests
|
|
1065
1064
|
---
|
|
1066
|
-
duration_ms:
|
|
1065
|
+
duration_ms: 2504.949752
|
|
1067
1066
|
...
|
|
1068
1067
|
1..12
|
|
1069
1068
|
ok 8 - Folder Input Tests
|
|
1070
1069
|
---
|
|
1071
|
-
duration_ms:
|
|
1070
|
+
duration_ms: 22661.471624
|
|
1072
1071
|
type: 'suite'
|
|
1073
1072
|
...
|
|
1074
1073
|
# Subtest: Setup | glob(*) input tests | test-file-paths tests
|
|
1075
1074
|
# Subtest: setupTestFilePaths() works correctly on different inputs
|
|
1076
1075
|
ok 1 - setupTestFilePaths() works correctly on different inputs
|
|
1077
1076
|
---
|
|
1078
|
-
duration_ms:
|
|
1077
|
+
duration_ms: 8.447342
|
|
1079
1078
|
...
|
|
1080
1079
|
1..1
|
|
1081
1080
|
ok 9 - Setup | glob(*) input tests | test-file-paths tests
|
|
1082
1081
|
---
|
|
1083
|
-
duration_ms:
|
|
1082
|
+
duration_ms: 10.974612
|
|
1084
1083
|
type: 'suite'
|
|
1085
1084
|
...
|
|
1086
1085
|
1..9
|
|
@@ -1091,4 +1090,4 @@ ok 9 - Setup | glob(*) input tests | test-file-paths tests
|
|
|
1091
1090
|
# cancelled 0
|
|
1092
1091
|
# skipped 0
|
|
1093
1092
|
# todo 0
|
|
1094
|
-
# duration_ms
|
|
1093
|
+
# duration_ms 44324.061336
|