qunitx 0.4.2 → 0.4.3

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/cool.txt ADDED
File without changes
@@ -5,6 +5,7 @@ let count = 0;
5
5
  export default async function runTestsInNode(fileAbsolutePaths, config) {
6
6
  config.COUNTER = { testCount: 0, failCount: 0, skipCount: 0, passCount: 0 };
7
7
  global.testTimeout = config.timeout;
8
+ // global.self = global;
8
9
 
9
10
  window.QUnit.reset();
10
11
 
@@ -1,11 +1,28 @@
1
+ import jsdom from "jsdom";
1
2
  import QUnit from '../../index.js';
2
3
  import timeCounter from '../utils/time-counter.js';
3
4
  import runUserModule from '../utils/run-user-module.js';
4
5
  import TAPDisplayFinalResult from '../tap/display-final-result.js';
5
6
  import TAPDisplayTestResult from '../tap/display-test-result.js';
6
7
 
8
+ function setupDOM() {
9
+ const { JSDOM } = jsdom;
10
+ const dom = new JSDOM("<p>Hello</p>", {
11
+ url: "http://localhost",
12
+ });
13
+
14
+ global.window = dom.window;
15
+ global.document = window.document;
16
+ global.FormData = dom.window.FormData;
17
+ // @ts-ignore
18
+ global.self = global; // NOTE: super important for pretender
19
+ self.XMLHttpRequest = dom.window.XMLHttpRequest; // pretender reference
20
+ global.location = global.window.location; // removes href of undefined on jquery
21
+ }
22
+
7
23
  export default async function setupNodeJSEnvironment(config) {
8
- global.window = global;
24
+ setupDOM(); // NOTE: This is important for pretender & browser APIs
25
+ // global.window = global;
9
26
 
10
27
  window.QUnit = QUnit;
11
28
  window.QUnit.config.autostart = false;
@@ -208,7 +208,7 @@ function testRuntimeToInject(port, config) {
208
208
  } else {
209
209
  let connectionTrialCount = 0;
210
210
  let connectionInterval = window.setInterval(() => {
211
- if ([1, 3].includes(window.socket.readyState) || connectionTrialCount > 10) {
211
+ if ([1, 3].includes(window.socket.readyState) || connectionTrialCount > 25) {
212
212
  window.clearInterval(connectionInterval);
213
213
 
214
214
  return window.setTimeout(() => window.QUnit.start(), 10);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "qunitx",
3
3
  "type": "module",
4
- "version": "0.4.2",
4
+ "version": "0.4.3",
5
5
  "description": "Experimental improvements, suggestions for qunit CLI",
6
6
  "author": "Izel Nakri",
7
7
  "license": "MIT",
@@ -42,6 +42,7 @@
42
42
  "chokidar": "^3.5.3",
43
43
  "esbuild": "^0.17.19",
44
44
  "js-yaml": "^4.1.0",
45
+ "jsdom": "^22.0.0",
45
46
  "kleur": "^4.1.5",
46
47
  "nanoexpress": "^6.2.1",
47
48
  "picomatch": "^2.3.1",
@@ -54,8 +55,8 @@
54
55
  "cors": "^2.8.5",
55
56
  "express": "^4.17.3",
56
57
  "prettier": "^2.8.8",
57
- "qunit": "^2.18.0",
58
- "qunitx": "^0.3.8",
58
+ "qunit": "^2.19.4",
59
+ "qunitx": "^0.4.2",
59
60
  "release-it": "^15.10.3"
60
61
  },
61
62
  "volta": {
package/test-output.log CHANGED
@@ -1,5 +1,5 @@
1
1
  TAP version 13
2
- # [qunitx v0.4.0] Usage: qunitx [targets] --$flags
2
+ # [qunitx v0.4.2] 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: 786.20008
25
+ duration_ms: 744.726987
26
26
  ...
27
27
  # Subtest: $ qunitx print -> prints help text
28
28
  ok 2 - $ qunitx print -> prints help text
29
29
  ---
30
- duration_ms: 530.633588
30
+ duration_ms: 541.788171
31
31
  ...
32
32
  # Subtest: $ qunitx p -> prints help text
33
33
  ok 3 - $ qunitx p -> prints help text
34
34
  ---
35
- duration_ms: 612.423907
35
+ duration_ms: 660.096809
36
36
  ...
37
37
  # Subtest: $ qunitx help -> prints help text
38
38
  ok 4 - $ qunitx help -> prints help text
39
39
  ---
40
- duration_ms: 606.219447
40
+ duration_ms: 756.59547
41
41
  ...
42
42
  # Subtest: $ qunitx h -> prints help text
43
43
  ok 5 - $ qunitx h -> prints help text
44
44
  ---
45
- duration_ms: 539.144137
45
+ duration_ms: 572.221334
46
46
  ...
47
47
  1..5
48
48
  ok 1 - Commands | Help tests
49
49
  ---
50
- duration_ms: 3077.161616
50
+ duration_ms: 3277.459656
51
51
  type: 'suite'
52
52
  ...
53
53
  # Trace:
@@ -63,7 +63,7 @@ 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 \# (57 ms)
66
+ # 10: ok 2 {{moduleName}} Passing Tests | async test finishes \# (54 ms)
67
67
  # 11: calling deepEqual test case
68
68
  # 12: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (1 ms)
69
69
  # 13:
@@ -72,7 +72,7 @@ ok 1 - Commands | Help tests
72
72
  # 16: \# pass 3
73
73
  # 17: \# skip 0
74
74
  # 18: \# fail 0
75
- # 19: \# duration 64
75
+ # 19: \# duration 57
76
76
  # 20:
77
77
  # 21: This is running from after script!!
78
78
  # 22:
@@ -89,7 +89,7 @@ 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: 853.882898
92
+ duration_ms: 853.11027
93
93
  ...
94
94
  # Trace:
95
95
  # TEST NAME: --after script tests | --after works for --browser mode when it doesnt need to be awaited
@@ -97,7 +97,7 @@ ok 1 - Commands | Help tests
97
97
  # 0: \# QUnitX running: http://localhost:1234/
98
98
  # 1: TAP version 13
99
99
  # 2: ok 1 {{moduleName}} Passing Tests | assert true works \# (1 ms)
100
- # 3: ok 2 {{moduleName}} Passing Tests | async test finishes \# (62 ms)
100
+ # 3: ok 2 {{moduleName}} Passing Tests | async test finishes \# (53 ms)
101
101
  # 4: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (1 ms)
102
102
  # 5:
103
103
  # 6: 1
@@ -105,7 +105,7 @@ ok 1 - Commands | Help tests
105
105
  # 8: \# pass 3
106
106
  # 9: \# skip 0
107
107
  # 10: \# fail 0
108
- # 11: \# duration 792
108
+ # 11: \# duration 679
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: 1898.388421
121
+ duration_ms: 1805.844421
122
122
  ...
123
123
  # Trace:
124
124
  # TEST NAME: --after script tests | --after works it needs to be awaited
@@ -133,16 +133,16 @@ ok 1 - Commands | Help tests
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 \# (55 ms)
136
+ # 10: ok 2 {{moduleName}} Passing Tests | async test finishes \# (60 ms)
137
137
  # 11: calling deepEqual test case
138
- # 12: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (1 ms)
138
+ # 12: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (2 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 58
145
+ # 19: \# duration 66
146
146
  # 20:
147
147
  # 21: This is running from after script!!
148
148
  # 22: After script result is written:
@@ -163,15 +163,15 @@ 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: 553.421575
166
+ duration_ms: 740.956147
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:1235/
171
+ # 0: \# QUnitX running: http://localhost:1234/
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 \# (51 ms)
174
+ # 3: ok 2 {{moduleName}} Passing Tests | async test finishes \# (54 ms)
175
175
  # 4: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (1 ms)
176
176
  # 5:
177
177
  # 6: 1
@@ -179,7 +179,7 @@ ok 1 - Commands | Help tests
179
179
  # 8: \# pass 3
180
180
  # 9: \# skip 0
181
181
  # 10: \# fail 0
182
- # 11: \# duration 566
182
+ # 11: \# duration 680
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: 1571.150719
202
+ duration_ms: 1915.849383
203
203
  ...
204
204
  1..4
205
205
  ok 2 - --after script tests
206
206
  ---
207
- duration_ms: 4881.36348
207
+ duration_ms: 5318.655119
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 \# (54 ms)
224
+ # 11: ok 2 {{moduleName}} Passing Tests | async test finishes \# (53 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 57
233
+ # 20: \# duration 56
234
234
  # 21:
235
235
  # 22:
236
236
  #
@@ -246,24 +246,26 @@ 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: 400.056453
249
+ duration_ms: 719.456129
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
255
  # 1: \# QUnitX running: http://localhost:1235/
256
- # 2: ok 1 {{moduleName}} Passing Tests | async test finishes \# (113 ms)
257
- # 3: ok 2 {{moduleName}} Passing Tests | deepEqual true works \# (1 ms)
258
- # 4:
259
- # 5: 1
260
- # 6: \# tests 2
261
- # 7: \# pass 2
262
- # 8: \# skip 0
263
- # 9: \# fail 0
264
- # 10: \# duration 735
265
- # 11:
266
- # 12:
256
+ # 2: TAP version 13
257
+ # 3: ok 1 {{moduleName}} Passing Tests | assert true works \# (1 ms)
258
+ # 4: ok 2 {{moduleName}} Passing Tests | async test finishes \# (63 ms)
259
+ # 5: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (0 ms)
260
+ # 6:
261
+ # 7: 1
262
+ # 8: \# tests 3
263
+ # 9: \# pass 3
264
+ # 10: \# skip 0
265
+ # 11: \# fail 0
266
+ # 12: \# duration 577
267
+ # 13:
268
+ # 14:
267
269
  #
268
270
  # at execute (file:///home/izelnakri/Github/qunitx/test/helpers/shell.js:11:13)
269
271
  # at async file:///home/izelnakri/Github/qunitx/test/flags/before-test.js:15:24
@@ -271,22 +273,9 @@ ok 2 - --after script tests
271
273
  # at async Test.run (node:internal/test_runner/test:569:9)
272
274
  # at async Suite.processPendingSubtests (node:internal/test_runner/test:315:7)
273
275
  # Subtest: --before works for --browser mode when it doesnt need to be awaited
274
- not ok 2 - --before works for --browser mode when it doesnt need to be awaited
276
+ ok 2 - --before works for --browser mode when it doesnt need to be awaited
275
277
  ---
276
- duration_ms: 1905.444457
277
- failureType: 'testCodeFailure'
278
- error: 'false == true'
279
- code: 'ERR_ASSERTION'
280
- name: 'AssertionError'
281
- expected: true
282
- actual: false
283
- operator: '=='
284
- stack: |-
285
- assertTAPResult (file:///home/izelnakri/Github/qunitx/test/helpers/assert-stdout.js:102:10)
286
- file:///home/izelnakri/Github/qunitx/test/flags/before-test.js:19:5
287
- async TestContext.<anonymous> (file:///home/izelnakri/Github/qunitx/shims/nodejs.js:21:12)
288
- async Test.run (node:internal/test_runner/test:569:9)
289
- async Suite.processPendingSubtests (node:internal/test_runner/test:315:7)
278
+ duration_ms: 1726.366108
290
279
  ...
291
280
  # Trace:
292
281
  # TEST NAME: --before script tests | --before works it needs to be awaited
@@ -294,30 +283,30 @@ ok 2 - --after script tests
294
283
  # 0: This is running from before script!!
295
284
  # 1: Starting before script with:
296
285
  # 2: DOESNT HAVE SERVER RUNNING
297
- # 3: \# HTTPServer [Server]: started successfully at [localhost:1235] in [6ms]
286
+ # 3: \# HTTPServer [Server]: started successfully at [localhost:1235] in [3ms]
298
287
  # 4: Web server started on port 1235
299
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
300
289
  # 6: TAP version 13
301
290
  # 7: calling assert true test case
302
- # 8: ok 1 {{moduleName}} Passing Tests | assert true works \# (1 ms)
291
+ # 8: ok 1 {{moduleName}} Passing Tests | assert true works \# (0 ms)
303
292
  # 9: resolving async test
304
293
  # 10: {
305
294
  # 11: moduleName: 'called resolved async test with object',
306
295
  # 12: placeholder: 1000,
307
296
  # 13: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
308
297
  # 14: }
309
- # 15: ok 2 {{moduleName}} Passing Tests | async test finishes \# (52 ms)
298
+ # 15: ok 2 {{moduleName}} Passing Tests | async test finishes \# (53 ms)
310
299
  # 16: calling deepEqual test case
311
- # 17: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (0 ms)
300
+ # 17: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (1 ms)
312
301
  # 18: req received
313
- # 19: ok 4 {{moduleName}} Before script web server tests | assert true works \# (340 ms)
302
+ # 19: ok 4 {{moduleName}} Before script web server tests | assert true works \# (288 ms)
314
303
  # 20:
315
304
  # 21: 1
316
305
  # 22: \# tests 4
317
306
  # 23: \# pass 4
318
307
  # 24: \# skip 0
319
308
  # 25: \# fail 0
320
- # 26: \# duration 397
309
+ # 26: \# duration 345
321
310
  # 27:
322
311
  # 28:
323
312
  #
@@ -330,7 +319,7 @@ ok 2 - --after script tests
330
319
  # Subtest: --before works it needs to be awaited
331
320
  ok 3 - --before works it needs to be awaited
332
321
  ---
333
- duration_ms: 1365.461136
322
+ duration_ms: 1072.600833
334
323
  ...
335
324
  # Trace:
336
325
  # TEST NAME: --before script tests | --before works for --browser mode it needs to be awaited
@@ -339,18 +328,18 @@ ok 2 - --after script tests
339
328
  # 1: Starting before script with:
340
329
  # 2: \# QUnitX running: http://localhost:1234/
341
330
  # 3: TAP version 13
342
- # 4: ok 1 {{moduleName}} Passing Tests | assert true works \# (1 ms)
343
- # 5: ok 2 {{moduleName}} Passing Tests | async test finishes \# (61 ms)
331
+ # 4: ok 1 {{moduleName}} Passing Tests | assert true works \# (2 ms)
332
+ # 5: ok 2 {{moduleName}} Passing Tests | async test finishes \# (72 ms)
344
333
  # 6: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (1 ms)
345
334
  # 7: req received
346
- # 8: ok 4 {{moduleName}} Before script web server tests | assert true works \# (254 ms)
335
+ # 8: ok 4 {{moduleName}} Before script web server tests | assert true works \# (266 ms)
347
336
  # 9:
348
337
  # 10: 1
349
338
  # 11: \# tests 4
350
339
  # 12: \# pass 4
351
340
  # 13: \# skip 0
352
341
  # 14: \# fail 0
353
- # 15: \# duration 843
342
+ # 15: \# duration 987
354
343
  # 16:
355
344
  # 17:
356
345
  #
@@ -362,51 +351,48 @@ ok 2 - --after script tests
362
351
  # Subtest: --before works for --browser mode it needs to be awaited
363
352
  ok 4 - --before works for --browser mode it needs to be awaited
364
353
  ---
365
- duration_ms: 2882.614762
354
+ duration_ms: 2020.024366
366
355
  ...
367
356
  1..4
368
- not ok 3 - --before script tests
357
+ ok 3 - --before script tests
369
358
  ---
370
- duration_ms: 6556.975029
359
+ duration_ms: 5539.215849
371
360
  type: 'suite'
372
- failureType: 'subtestsFailed'
373
- error: '1 subtest failed'
374
- code: 'ERR_TEST_FAILURE'
375
361
  ...
376
362
  # Subtest: Advanced HTML Input Tests
377
363
  # Subtest: testing with specific html without content works
378
364
  ok 1 - testing with specific html without content works
379
365
  ---
380
- duration_ms: 1.919472
366
+ duration_ms: 0.761424
381
367
  ...
382
368
  1..1
383
369
  ok 4 - Advanced HTML Input Tests
384
370
  ---
385
- duration_ms: 12.473361
371
+ duration_ms: 8.07698
386
372
  type: 'suite'
387
373
  ...
388
374
  # Subtest: Advanced Error Edge Cases Tests
389
375
  # Subtest: todo
390
376
  ok 1 - todo
391
377
  ---
392
- duration_ms: 0.665773
378
+ duration_ms: 0.513365
393
379
  ...
394
380
  1..1
395
381
  ok 5 - Advanced Error Edge Cases Tests
396
382
  ---
397
- duration_ms: 1.110483
383
+ duration_ms: 0.825836
398
384
  type: 'suite'
399
385
  ...
400
386
  # Subtest: File and Folder Combination Tests
401
387
  # Subtest: todo
402
388
  ok 1 - todo
403
389
  ---
404
- duration_ms: 0.277764
390
+ duration_ms: 0.438557
405
391
  ...
406
392
  1..1
407
393
  ok 6 - File and Folder Combination Tests
408
394
  ---
409
- duration_ms: 0.507111
395
+ duration_ms: 0.78893
410
396
  type: 'suite'
411
397
  ...
412
398
  # Trace:
@@ -422,16 +408,16 @@ ok 6 - File and Folder Combination Tests
422
408
  # 7: placeholder: 1000,
423
409
  # 8: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
424
410
  # 9: }
425
- # 10: ok 2 {{moduleName}} Passing Tests | async test finishes \# (58 ms)
411
+ # 10: ok 2 {{moduleName}} Passing Tests | async test finishes \# (54 ms)
426
412
  # 11: calling deepEqual test case
427
- # 12: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (1 ms)
413
+ # 12: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (0 ms)
428
414
  # 13:
429
415
  # 14: 1
430
416
  # 15: \# tests 3
431
417
  # 16: \# pass 3
432
418
  # 17: \# skip 0
433
419
  # 18: \# fail 0
434
- # 19: \# duration 64
420
+ # 19: \# duration 56
435
421
  # 20:
436
422
  # 21:
437
423
  #
@@ -447,7 +433,7 @@ ok 6 - File and Folder Combination Tests
447
433
  # Subtest: testing a single passing js file works
448
434
  ok 1 - testing a single passing js file works
449
435
  ---
450
- duration_ms: 713.888088
436
+ duration_ms: 815.266265
451
437
  ...
452
438
  # Trace:
453
439
  # ERROR TEST Name: File Input Tests | testing a single failing js file works
@@ -464,23 +450,23 @@ ok 6 - File and Folder Combination Tests
464
450
  # Subtest: testing a single failing js file works
465
451
  ok 2 - testing a single failing js file works
466
452
  ---
467
- duration_ms: 684.679829
453
+ duration_ms: 782.908771
468
454
  ...
469
455
  # Trace:
470
456
  # TEST NAME: File Input Tests | testing a single passing js file with --browser works, console output supressed
471
457
  # TEST COMMAND: node cli.js tmp/test/passing-tests.js --browser
472
- # 0: \# QUnitX running: http://localhost:1235/
458
+ # 0: \# QUnitX running: http://localhost:1234/
473
459
  # 1: TAP version 13
474
- # 2: ok 1 {{moduleName}} Passing Tests | assert true works \# (2 ms)
475
- # 3: ok 2 {{moduleName}} Passing Tests | async test finishes \# (53 ms)
476
- # 4: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (1 ms)
460
+ # 2: ok 1 {{moduleName}} Passing Tests | assert true works \# (1 ms)
461
+ # 3: ok 2 {{moduleName}} Passing Tests | async test finishes \# (57 ms)
462
+ # 4: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (0 ms)
477
463
  # 5:
478
464
  # 6: 1
479
465
  # 7: \# tests 3
480
466
  # 8: \# pass 3
481
467
  # 9: \# skip 0
482
468
  # 10: \# fail 0
483
- # 11: \# duration 599
469
+ # 11: \# duration 655
484
470
  # 12:
485
471
  # 13:
486
472
  #
@@ -492,19 +478,19 @@ ok 6 - File and Folder Combination Tests
492
478
  # Subtest: testing a single passing js file with --browser works, console output supressed
493
479
  ok 3 - testing a single passing js file with --browser works, console output supressed
494
480
  ---
495
- duration_ms: 1852.834303
481
+ duration_ms: 1969.670196
496
482
  ...
497
483
  # Trace:
498
484
  # TEST NAME: File Input Tests | testing a single passing js file with --browser --debug works
499
485
  # TEST COMMAND: node cli.js tmp/test/passing-tests.js --browser --debug
500
- # 0: \# HTTPServer [Server]: started successfully at [localhost:1234] in [228ms]
501
- # 1: \# QUnitX running: http://localhost:1234/
486
+ # 0: \# HTTPServer [Server]: started successfully at [localhost:1235] in [398ms]
487
+ # 1: \# QUnitX running: http://localhost:1235/
502
488
  # 2: \# [HTTPServer] GET /favicon.ico
503
489
  # 3: TAP version 13
504
490
  # 4: calling assert true test case
505
491
  # 5: ok 1 {{moduleName}} Passing Tests | assert true works \# (1 ms)
506
492
  # 6: resolving async test
507
- # 7: ok 2 {{moduleName}} Passing Tests | async test finishes \# (53 ms)
493
+ # 7: ok 2 {{moduleName}} Passing Tests | async test finishes \# (58 ms)
508
494
  # 8: calling deepEqual test case
509
495
  # 9: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (1 ms)
510
496
  # 10: {
@@ -518,7 +504,7 @@ ok 6 - File and Folder Combination Tests
518
504
  # 18: \# pass 3
519
505
  # 19: \# skip 0
520
506
  # 20: \# fail 0
521
- # 21: \# duration 642
507
+ # 21: \# duration 588
522
508
  # 22:
523
509
  # 23: \# HTTPServer [Server]: stopped successfully
524
510
  # 24:
@@ -531,7 +517,7 @@ ok 6 - File and Folder Combination Tests
531
517
  # Subtest: testing a single passing js file with --browser --debug works
532
518
  ok 4 - testing a single passing js file with --browser --debug works
533
519
  ---
534
- duration_ms: 1588.300407
520
+ duration_ms: 1968.77012
535
521
  ...
536
522
  # Trace:
537
523
  # ERROR TEST Name: File Input Tests | testing a single failing js with --browser file works
@@ -547,7 +533,7 @@ ok 6 - File and Folder Combination Tests
547
533
  # Subtest: testing a single failing js with --browser file works
548
534
  ok 5 - testing a single failing js with --browser file works
549
535
  ---
550
- duration_ms: 1714.33759
536
+ duration_ms: 1708.773192
551
537
  ...
552
538
  # Trace:
553
539
  # ERROR TEST Name: File Input Tests | testing a single failing js file with --browser --debug works
@@ -563,23 +549,23 @@ ok 6 - File and Folder Combination Tests
563
549
  # Subtest: testing a single failing js file with --browser --debug works
564
550
  ok 6 - testing a single failing js file with --browser --debug works
565
551
  ---
566
- duration_ms: 2419.954083
552
+ duration_ms: 1696.430083
567
553
  ...
568
554
  # Trace:
569
555
  # TEST NAME: File Input Tests | testing a single passing ts file with --browser works, console output supressed
570
556
  # TEST COMMAND: node cli.js tmp/test/passing-tests.ts --browser
571
557
  # 0: \# QUnitX running: http://localhost:1235/
572
558
  # 1: TAP version 13
573
- # 2: ok 1 {{moduleName}} Passing Tests | assert true works \# (1 ms)
574
- # 3: ok 2 {{moduleName}} Passing Tests | async test finishes \# (63 ms)
575
- # 4: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (0 ms)
559
+ # 2: ok 1 {{moduleName}} Passing Tests | assert true works \# (2 ms)
560
+ # 3: ok 2 {{moduleName}} Passing Tests | async test finishes \# (53 ms)
561
+ # 4: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (1 ms)
576
562
  # 5:
577
563
  # 6: 1
578
564
  # 7: \# tests 3
579
565
  # 8: \# pass 3
580
566
  # 9: \# skip 0
581
567
  # 10: \# fail 0
582
- # 11: \# duration 618
568
+ # 11: \# duration 643
583
569
  # 12:
584
570
  # 13:
585
571
  #
@@ -591,19 +577,19 @@ ok 6 - File and Folder Combination Tests
591
577
  # Subtest: testing a single passing ts file with --browser works, console output supressed
592
578
  ok 7 - testing a single passing ts file with --browser works, console output supressed
593
579
  ---
594
- duration_ms: 2444.373212
580
+ duration_ms: 1878.394995
595
581
  ...
596
582
  # Trace:
597
583
  # TEST NAME: File Input Tests | testing a single passing ts file with --browser --debug works
598
584
  # TEST COMMAND: node cli.js tmp/test/passing-tests.ts --browser --debug
599
- # 0: \# HTTPServer [Server]: started successfully at [localhost:1234] in [239ms]
585
+ # 0: \# HTTPServer [Server]: started successfully at [localhost:1234] in [203ms]
600
586
  # 1: \# QUnitX running: http://localhost:1234/
601
587
  # 2: \# [HTTPServer] GET /favicon.ico
602
588
  # 3: TAP version 13
603
589
  # 4: calling assert true test case
604
590
  # 5: ok 1 {{moduleName}} Passing Tests | assert true works \# (1 ms)
605
591
  # 6: resolving async test
606
- # 7: ok 2 {{moduleName}} Passing Tests | async test finishes \# (51 ms)
592
+ # 7: ok 2 {{moduleName}} Passing Tests | async test finishes \# (61 ms)
607
593
  # 8: calling deepEqual test case
608
594
  # 9: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (1 ms)
609
595
  # 10: {
@@ -617,7 +603,7 @@ ok 6 - File and Folder Combination Tests
617
603
  # 18: \# pass 3
618
604
  # 19: \# skip 0
619
605
  # 20: \# fail 0
620
- # 21: \# duration 593
606
+ # 21: \# duration 602
621
607
  # 22:
622
608
  # 23: \# HTTPServer [Server]: stopped successfully
623
609
  # 24:
@@ -630,7 +616,7 @@ ok 6 - File and Folder Combination Tests
630
616
  # Subtest: testing a single passing ts file with --browser --debug works
631
617
  ok 8 - testing a single passing ts file with --browser --debug works
632
618
  ---
633
- duration_ms: 1587.761664
619
+ duration_ms: 1729.701753
634
620
  ...
635
621
  # Trace:
636
622
  # ERROR TEST Name: File Input Tests | testing a single failing ts with --browser file works
@@ -646,7 +632,7 @@ ok 6 - File and Folder Combination Tests
646
632
  # Subtest: testing a single failing ts with --browser file works
647
633
  ok 9 - testing a single failing ts with --browser file works
648
634
  ---
649
- duration_ms: 1941.109901
635
+ duration_ms: 1671.90492
650
636
  ...
651
637
  # Trace:
652
638
  # ERROR TEST Name: File Input Tests | testing a single failing ts file with --browser --debug works
@@ -662,48 +648,48 @@ ok 6 - File and Folder Combination Tests
662
648
  # Subtest: testing a single failing ts file with --browser --debug works
663
649
  ok 10 - testing a single failing ts file with --browser --debug works
664
650
  ---
665
- duration_ms: 1466.629487
651
+ duration_ms: 1689.26707
666
652
  ...
667
653
  1..10
668
654
  ok 7 - File Input Tests
669
655
  ---
670
- duration_ms: 16415.537522
656
+ duration_ms: 15912.483509
671
657
  type: 'suite'
672
658
  ...
673
659
  # Trace:
674
660
  # TEST NAME: Folder Input Tests | works for a single folder input with all passing tests
675
- # TEST COMMAND: node cli.js tmp/28fd8385-f751-4e89-a525-6c3f20bfdd3d
676
- # 0: \# QUnitX running: /home/izelnakri/Github/qunitx/tmp/28fd8385-f751-4e89-a525-6c3f20bfdd3d/first-module-pass.js, /home/izelnakri/Github/qunitx/tmp/28fd8385-f751-4e89-a525-6c3f20bfdd3d/second-module-pass.js
661
+ # TEST COMMAND: node cli.js tmp/be796cd0-e415-4bfd-b8dc-a5ef8aa5e3c1
662
+ # 0: \# QUnitX running: /home/izelnakri/Github/qunitx/tmp/be796cd0-e415-4bfd-b8dc-a5ef8aa5e3c1/first-module-pass.js, /home/izelnakri/Github/qunitx/tmp/be796cd0-e415-4bfd-b8dc-a5ef8aa5e3c1/second-module-pass.js
677
663
  # 1: TAP version 13
678
664
  # 2: calling assert true test case
679
- # 3: ok 1 28fd8385-f751-4e89-a525-6c3f20bfdd3d | first-module-pass Passing Tests | assert true works \# (0 ms)
665
+ # 3: ok 1 be796cd0-e415-4bfd-b8dc-a5ef8aa5e3c1 | first-module-pass Passing Tests | assert true works \# (1 ms)
680
666
  # 4: resolving async test
681
667
  # 5: {
682
668
  # 6: moduleName: 'called resolved async test with object',
683
669
  # 7: placeholder: 1000,
684
670
  # 8: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
685
671
  # 9: }
686
- # 10: ok 2 28fd8385-f751-4e89-a525-6c3f20bfdd3d | first-module-pass Passing Tests | async test finishes \# (54 ms)
672
+ # 10: ok 2 be796cd0-e415-4bfd-b8dc-a5ef8aa5e3c1 | first-module-pass Passing Tests | async test finishes \# (57 ms)
687
673
  # 11: calling deepEqual test case
688
- # 12: ok 3 28fd8385-f751-4e89-a525-6c3f20bfdd3d | first-module-pass Passing Tests | deepEqual true works \# (0 ms)
674
+ # 12: ok 3 be796cd0-e415-4bfd-b8dc-a5ef8aa5e3c1 | first-module-pass Passing Tests | deepEqual true works \# (1 ms)
689
675
  # 13: calling assert true test case
690
- # 14: ok 4 28fd8385-f751-4e89-a525-6c3f20bfdd3d | second-module-pass Passing Tests | assert true works \# (0 ms)
676
+ # 14: ok 4 be796cd0-e415-4bfd-b8dc-a5ef8aa5e3c1 | second-module-pass Passing Tests | assert true works \# (0 ms)
691
677
  # 15: resolving async test
692
678
  # 16: {
693
679
  # 17: moduleName: 'called resolved async test with object',
694
680
  # 18: placeholder: 1000,
695
681
  # 19: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
696
682
  # 20: }
697
- # 21: ok 5 28fd8385-f751-4e89-a525-6c3f20bfdd3d | second-module-pass Passing Tests | async test finishes \# (53 ms)
683
+ # 21: ok 5 be796cd0-e415-4bfd-b8dc-a5ef8aa5e3c1 | second-module-pass Passing Tests | async test finishes \# (53 ms)
698
684
  # 22: calling deepEqual test case
699
- # 23: ok 6 28fd8385-f751-4e89-a525-6c3f20bfdd3d | second-module-pass Passing Tests | deepEqual true works \# (1 ms)
685
+ # 23: ok 6 be796cd0-e415-4bfd-b8dc-a5ef8aa5e3c1 | second-module-pass Passing Tests | deepEqual true works \# (0 ms)
700
686
  # 24:
701
687
  # 25: 1
702
688
  # 26: \# tests 6
703
689
  # 27: \# pass 6
704
690
  # 28: \# skip 0
705
691
  # 29: \# fail 0
706
- # 30: \# duration 113
692
+ # 30: \# duration 116
707
693
  # 31:
708
694
  # 32:
709
695
  #
@@ -719,12 +705,12 @@ ok 7 - File Input Tests
719
705
  # Subtest: works for a single folder input with all passing tests
720
706
  ok 1 - works for a single folder input with all passing tests
721
707
  ---
722
- duration_ms: 721.917836
708
+ duration_ms: 758.839476
723
709
  ...
724
710
  # Trace:
725
711
  # ERROR TEST Name: Folder Input Tests | works for a single folder input with few failing tests
726
- # ERROR TEST COMMAND: node cli.js tmp/8cbd3930-a473-43e5-9458-3eb274c9393e
727
- # Error: Command failed: node cli.js tmp/8cbd3930-a473-43e5-9458-3eb274c9393e
712
+ # ERROR TEST COMMAND: node cli.js tmp/2e8b0750-f910-46c7-aedf-ddcc32dbc4b6
713
+ # Error: Command failed: node cli.js tmp/2e8b0750-f910-46c7-aedf-ddcc32dbc4b6
728
714
  #
729
715
  #
730
716
  # at execute (file:///home/izelnakri/Github/qunitx/test/helpers/shell.js:27:13)
@@ -736,64 +722,64 @@ ok 7 - File Input Tests
736
722
  # Subtest: works for a single folder input with few failing tests
737
723
  ok 2 - works for a single folder input with few failing tests
738
724
  ---
739
- duration_ms: 719.385245
725
+ duration_ms: 950.991986
740
726
  ...
741
727
  # Trace:
742
728
  # TEST NAME: Folder Input Tests |
743
- # TEST COMMAND: node cli.js tmp/6a554b6e-b6e7-4fd1-b7b7-353c3456d015 tmp/f4ceff00-6fed-44f2-8470-2b9491be71cc
744
- # 0: \# QUnitX running: /home/izelnakri/Github/qunitx/tmp/f4ceff00-6fed-44f2-8470-2b9491be71cc/first-module-pass.js, /home/izelnakri/Github/qunitx/tmp/f4ceff00-6fed-44f2-8470-2b9491be71cc/second-module-pass.js, /home/izelnakri/Github/qunitx/tmp/6a554b6e-b6e7-4fd1-b7b7-353c3456d015/first-module-pass.js, /home/izelnakri/Github/qunitx/tmp/6a554b6e-b6e7-4fd1-b7b7-353c3456d015/second-module-pass.js
729
+ # TEST COMMAND: node cli.js tmp/8d1555c1-ad46-4e9a-9c20-0ca9548fdc78 tmp/144d0c65-96f0-491e-8b09-5c347f2d483a
730
+ # 0: \# QUnitX running: /home/izelnakri/Github/qunitx/tmp/8d1555c1-ad46-4e9a-9c20-0ca9548fdc78/first-module-pass.js, /home/izelnakri/Github/qunitx/tmp/8d1555c1-ad46-4e9a-9c20-0ca9548fdc78/second-module-pass.js, /home/izelnakri/Github/qunitx/tmp/144d0c65-96f0-491e-8b09-5c347f2d483a/first-module-pass.js, /home/izelnakri/Github/qunitx/tmp/144d0c65-96f0-491e-8b09-5c347f2d483a/second-module-pass.js
745
731
  # 1: TAP version 13
746
732
  # 2: calling assert true test case
747
- # 3: ok 1 f4ceff00-6fed-44f2-8470-2b9491be71cc | first-module-pass Passing Tests | assert true works \# (1 ms)
733
+ # 3: ok 1 8d1555c1-ad46-4e9a-9c20-0ca9548fdc78 | first-module-pass Passing Tests | assert true works \# (1 ms)
748
734
  # 4: resolving async test
749
735
  # 5: {
750
736
  # 6: moduleName: 'called resolved async test with object',
751
737
  # 7: placeholder: 1000,
752
738
  # 8: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
753
739
  # 9: }
754
- # 10: ok 2 f4ceff00-6fed-44f2-8470-2b9491be71cc | first-module-pass Passing Tests | async test finishes \# (59 ms)
740
+ # 10: ok 2 8d1555c1-ad46-4e9a-9c20-0ca9548fdc78 | first-module-pass Passing Tests | async test finishes \# (61 ms)
755
741
  # 11: calling deepEqual test case
756
- # 12: ok 3 f4ceff00-6fed-44f2-8470-2b9491be71cc | first-module-pass Passing Tests | deepEqual true works \# (1 ms)
742
+ # 12: ok 3 8d1555c1-ad46-4e9a-9c20-0ca9548fdc78 | first-module-pass Passing Tests | deepEqual true works \# (2 ms)
757
743
  # 13: calling assert true test case
758
- # 14: ok 4 f4ceff00-6fed-44f2-8470-2b9491be71cc | second-module-pass Passing Tests | assert true works \# (1 ms)
744
+ # 14: ok 4 144d0c65-96f0-491e-8b09-5c347f2d483a | first-module-pass Passing Tests | assert true works \# (1 ms)
759
745
  # 15: resolving async test
760
746
  # 16: {
761
747
  # 17: moduleName: 'called resolved async test with object',
762
748
  # 18: placeholder: 1000,
763
749
  # 19: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
764
750
  # 20: }
765
- # 21: ok 5 f4ceff00-6fed-44f2-8470-2b9491be71cc | second-module-pass Passing Tests | async test finishes \# (54 ms)
751
+ # 21: ok 5 144d0c65-96f0-491e-8b09-5c347f2d483a | first-module-pass Passing Tests | async test finishes \# (53 ms)
766
752
  # 22: calling deepEqual test case
767
- # 23: ok 6 f4ceff00-6fed-44f2-8470-2b9491be71cc | second-module-pass Passing Tests | deepEqual true works \# (0 ms)
753
+ # 23: ok 6 144d0c65-96f0-491e-8b09-5c347f2d483a | first-module-pass Passing Tests | deepEqual true works \# (1 ms)
768
754
  # 24: calling assert true test case
769
- # 25: ok 7 6a554b6e-b6e7-4fd1-b7b7-353c3456d015 | first-module-pass Passing Tests | assert true works \# (0 ms)
755
+ # 25: ok 7 8d1555c1-ad46-4e9a-9c20-0ca9548fdc78 | second-module-pass Passing Tests | assert true works \# (1 ms)
770
756
  # 26: resolving async test
771
757
  # 27: {
772
758
  # 28: moduleName: 'called resolved async test with object',
773
759
  # 29: placeholder: 1000,
774
760
  # 30: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
775
761
  # 31: }
776
- # 32: ok 8 6a554b6e-b6e7-4fd1-b7b7-353c3456d015 | first-module-pass Passing Tests | async test finishes \# (53 ms)
762
+ # 32: ok 8 8d1555c1-ad46-4e9a-9c20-0ca9548fdc78 | second-module-pass Passing Tests | async test finishes \# (54 ms)
777
763
  # 33: calling deepEqual test case
778
- # 34: ok 9 6a554b6e-b6e7-4fd1-b7b7-353c3456d015 | first-module-pass Passing Tests | deepEqual true works \# (0 ms)
764
+ # 34: ok 9 8d1555c1-ad46-4e9a-9c20-0ca9548fdc78 | second-module-pass Passing Tests | deepEqual true works \# (1 ms)
779
765
  # 35: calling assert true test case
780
- # 36: ok 10 6a554b6e-b6e7-4fd1-b7b7-353c3456d015 | second-module-pass Passing Tests | assert true works \# (0 ms)
766
+ # 36: ok 10 144d0c65-96f0-491e-8b09-5c347f2d483a | second-module-pass Passing Tests | assert true works \# (1 ms)
781
767
  # 37: resolving async test
782
768
  # 38: {
783
769
  # 39: moduleName: 'called resolved async test with object',
784
770
  # 40: placeholder: 1000,
785
771
  # 41: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
786
772
  # 42: }
787
- # 43: ok 11 6a554b6e-b6e7-4fd1-b7b7-353c3456d015 | second-module-pass Passing Tests | async test finishes \# (52 ms)
773
+ # 43: ok 11 144d0c65-96f0-491e-8b09-5c347f2d483a | second-module-pass Passing Tests | async test finishes \# (54 ms)
788
774
  # 44: calling deepEqual test case
789
- # 45: ok 12 6a554b6e-b6e7-4fd1-b7b7-353c3456d015 | second-module-pass Passing Tests | deepEqual true works \# (1 ms)
775
+ # 45: ok 12 144d0c65-96f0-491e-8b09-5c347f2d483a | second-module-pass Passing Tests | deepEqual true works \# (1 ms)
790
776
  # 46:
791
777
  # 47: 1
792
778
  # 48: \# tests 12
793
779
  # 49: \# pass 12
794
780
  # 50: \# skip 0
795
781
  # 51: \# fail 0
796
- # 52: \# duration 228
782
+ # 52: \# duration 234
797
783
  # 53:
798
784
  # 54:
799
785
  #
@@ -806,12 +792,12 @@ ok 7 - File Input Tests
806
792
  # Subtest: works for a multiple folders input with all passing tests
807
793
  ok 3 - works for a multiple folders input with all passing tests
808
794
  ---
809
- duration_ms: 584.326714
795
+ duration_ms: 888.186893
810
796
  ...
811
797
  # Trace:
812
798
  # ERROR TEST Name: Folder Input Tests |
813
- # ERROR TEST COMMAND: node cli.js tmp/7c051a28-a348-428e-b079-567a466ea926 tmp/a620a107-13a6-4dc1-affc-8d4c3bfe208d
814
- # Error: Command failed: node cli.js tmp/7c051a28-a348-428e-b079-567a466ea926 tmp/a620a107-13a6-4dc1-affc-8d4c3bfe208d
799
+ # ERROR TEST COMMAND: node cli.js tmp/86154c58-24ea-4bbb-91bd-840868a7c565 tmp/f378836b-3307-4254-bd7a-f7d6bbd77c23
800
+ # Error: Command failed: node cli.js tmp/86154c58-24ea-4bbb-91bd-840868a7c565 tmp/f378836b-3307-4254-bd7a-f7d6bbd77c23
815
801
  #
816
802
  #
817
803
  # at execute (file:///home/izelnakri/Github/qunitx/test/helpers/shell.js:27:13)
@@ -823,19 +809,19 @@ ok 7 - File Input Tests
823
809
  # Subtest: works for a multiple folders input with few failing tests
824
810
  ok 4 - works for a multiple folders input with few failing tests
825
811
  ---
826
- duration_ms: 836.68261
812
+ duration_ms: 1099.78897
827
813
  ...
828
814
  # Trace:
829
815
  # TEST NAME: Folder Input Tests | works for a single folder input in browser mode with all passing tests
830
- # TEST COMMAND: node cli.js tmp/fa7ad556-ba72-4ef0-84c1-214cb4e6a23c --browser
816
+ # TEST COMMAND: node cli.js tmp/5869a39d-d6e4-4fce-944b-e58eb82868be --browser
831
817
  # 0: \# QUnitX running: http://localhost:1234/
832
818
  # 1: TAP version 13
833
- # 2: ok 1 fa7ad556-ba72-4ef0-84c1-214cb4e6a23c | first-module-pass Passing Tests | assert true works \# (1 ms)
834
- # 3: ok 2 fa7ad556-ba72-4ef0-84c1-214cb4e6a23c | first-module-pass Passing Tests | async test finishes \# (56 ms)
835
- # 4: ok 3 fa7ad556-ba72-4ef0-84c1-214cb4e6a23c | first-module-pass Passing Tests | deepEqual true works \# (0 ms)
836
- # 5: ok 4 fa7ad556-ba72-4ef0-84c1-214cb4e6a23c | second-module-pass Passing Tests | assert true works \# (0 ms)
837
- # 6: ok 5 fa7ad556-ba72-4ef0-84c1-214cb4e6a23c | second-module-pass Passing Tests | async test finishes \# (53 ms)
838
- # 7: ok 6 fa7ad556-ba72-4ef0-84c1-214cb4e6a23c | second-module-pass Passing Tests | deepEqual true works \# (1 ms)
819
+ # 2: ok 1 5869a39d-d6e4-4fce-944b-e58eb82868be | first-module-pass Passing Tests | assert true works \# (2 ms)
820
+ # 3: ok 2 5869a39d-d6e4-4fce-944b-e58eb82868be | first-module-pass Passing Tests | async test finishes \# (56 ms)
821
+ # 4: ok 3 5869a39d-d6e4-4fce-944b-e58eb82868be | first-module-pass Passing Tests | deepEqual true works \# (0 ms)
822
+ # 5: ok 4 5869a39d-d6e4-4fce-944b-e58eb82868be | second-module-pass Passing Tests | assert true works \# (0 ms)
823
+ # 6: ok 5 5869a39d-d6e4-4fce-944b-e58eb82868be | second-module-pass Passing Tests | async test finishes \# (54 ms)
824
+ # 7: ok 6 5869a39d-d6e4-4fce-944b-e58eb82868be | second-module-pass Passing Tests | deepEqual true works \# (1 ms)
839
825
  # 8:
840
826
  # 9: 1
841
827
  # 10: \# tests 6
@@ -854,12 +840,12 @@ ok 7 - File Input Tests
854
840
  # Subtest: works for a single folder input in browser mode with all passing tests
855
841
  ok 5 - works for a single folder input in browser mode with all passing tests
856
842
  ---
857
- duration_ms: 1402.395791
843
+ duration_ms: 1724.256193
858
844
  ...
859
845
  # Trace:
860
846
  # ERROR TEST Name: Folder Input Tests | works for a single folder input in browser mode with few failing tests
861
- # ERROR TEST COMMAND: node cli.js tmp/50d03ddc-455e-4b60-8ea1-8553803c27ef --browser
862
- # Error: Command failed: node cli.js tmp/50d03ddc-455e-4b60-8ea1-8553803c27ef --browser
847
+ # ERROR TEST COMMAND: node cli.js tmp/f93036fe-178c-4b1d-ad73-9feee4054974 --browser
848
+ # Error: Command failed: node cli.js tmp/f93036fe-178c-4b1d-ad73-9feee4054974 --browser
863
849
  #
864
850
  #
865
851
  # at execute (file:///home/izelnakri/Github/qunitx/test/helpers/shell.js:27:13)
@@ -870,32 +856,32 @@ ok 7 - File Input Tests
870
856
  # Subtest: works for a single folder input in browser mode with few failing tests
871
857
  ok 6 - works for a single folder input in browser mode with few failing tests
872
858
  ---
873
- duration_ms: 1575.458936
859
+ duration_ms: 1914.83251
874
860
  ...
875
861
  # Trace:
876
862
  # TEST NAME: Folder Input Tests | works for a multiple folders input in browser mode with all passing tests
877
- # TEST COMMAND: node cli.js tmp/213f65f9-276a-4c2d-bf40-34ec55e32dea tmp/d26146f4-4944-4a0a-b29b-3203ade8d46a --browser
863
+ # TEST COMMAND: node cli.js tmp/eacc510a-3b59-4b96-94f3-2cc5f5dcf48d tmp/54f6c824-0778-43c6-b954-9348db17e455 --browser
878
864
  # 0: \# QUnitX running: http://localhost:1234/
879
865
  # 1: TAP version 13
880
- # 2: ok 1 213f65f9-276a-4c2d-bf40-34ec55e32dea | first-module-pass Passing Tests | assert true works \# (2 ms)
881
- # 3: ok 2 213f65f9-276a-4c2d-bf40-34ec55e32dea | first-module-pass Passing Tests | async test finishes \# (52 ms)
882
- # 4: ok 3 213f65f9-276a-4c2d-bf40-34ec55e32dea | first-module-pass Passing Tests | deepEqual true works \# (1 ms)
883
- # 5: ok 4 213f65f9-276a-4c2d-bf40-34ec55e32dea | second-module-pass Passing Tests | assert true works \# (1 ms)
884
- # 6: ok 5 213f65f9-276a-4c2d-bf40-34ec55e32dea | second-module-pass Passing Tests | async test finishes \# (59 ms)
885
- # 7: ok 6 213f65f9-276a-4c2d-bf40-34ec55e32dea | second-module-pass Passing Tests | deepEqual true works \# (1 ms)
886
- # 8: ok 7 d26146f4-4944-4a0a-b29b-3203ade8d46a | first-module-pass Passing Tests | assert true works \# (1 ms)
887
- # 9: ok 8 d26146f4-4944-4a0a-b29b-3203ade8d46a | first-module-pass Passing Tests | async test finishes \# (64 ms)
888
- # 10: ok 9 d26146f4-4944-4a0a-b29b-3203ade8d46a | first-module-pass Passing Tests | deepEqual true works \# (1 ms)
889
- # 11: ok 10 d26146f4-4944-4a0a-b29b-3203ade8d46a | second-module-pass Passing Tests | assert true works \# (2 ms)
890
- # 12: ok 11 d26146f4-4944-4a0a-b29b-3203ade8d46a | second-module-pass Passing Tests | async test finishes \# (56 ms)
891
- # 13: ok 12 d26146f4-4944-4a0a-b29b-3203ade8d46a | second-module-pass Passing Tests | deepEqual true works \# (1 ms)
866
+ # 2: ok 1 eacc510a-3b59-4b96-94f3-2cc5f5dcf48d | first-module-pass Passing Tests | assert true works \# (4 ms)
867
+ # 3: ok 2 eacc510a-3b59-4b96-94f3-2cc5f5dcf48d | first-module-pass Passing Tests | async test finishes \# (57 ms)
868
+ # 4: ok 3 eacc510a-3b59-4b96-94f3-2cc5f5dcf48d | first-module-pass Passing Tests | deepEqual true works \# (1 ms)
869
+ # 5: ok 4 eacc510a-3b59-4b96-94f3-2cc5f5dcf48d | second-module-pass Passing Tests | assert true works \# (1 ms)
870
+ # 6: ok 5 eacc510a-3b59-4b96-94f3-2cc5f5dcf48d | second-module-pass Passing Tests | async test finishes \# (53 ms)
871
+ # 7: ok 6 eacc510a-3b59-4b96-94f3-2cc5f5dcf48d | second-module-pass Passing Tests | deepEqual true works \# (1 ms)
872
+ # 8: ok 7 54f6c824-0778-43c6-b954-9348db17e455 | first-module-pass Passing Tests | assert true works \# (1 ms)
873
+ # 9: ok 8 54f6c824-0778-43c6-b954-9348db17e455 | first-module-pass Passing Tests | async test finishes \# (62 ms)
874
+ # 10: ok 9 54f6c824-0778-43c6-b954-9348db17e455 | first-module-pass Passing Tests | deepEqual true works \# (2 ms)
875
+ # 11: ok 10 54f6c824-0778-43c6-b954-9348db17e455 | second-module-pass Passing Tests | assert true works \# (1 ms)
876
+ # 12: ok 11 54f6c824-0778-43c6-b954-9348db17e455 | second-module-pass Passing Tests | async test finishes \# (60 ms)
877
+ # 13: ok 12 54f6c824-0778-43c6-b954-9348db17e455 | second-module-pass Passing Tests | deepEqual true works \# (2 ms)
892
878
  # 14:
893
879
  # 15: 1
894
880
  # 16: \# tests 12
895
881
  # 17: \# pass 12
896
882
  # 18: \# skip 0
897
883
  # 19: \# fail 0
898
- # 20: \# duration 865
884
+ # 20: \# duration 922
899
885
  # 21:
900
886
  # 22:
901
887
  #
@@ -907,12 +893,12 @@ ok 7 - File Input Tests
907
893
  # Subtest: works for a multiple folders input in browser mode with all passing tests
908
894
  ok 7 - works for a multiple folders input in browser mode with all passing tests
909
895
  ---
910
- duration_ms: 1763.037347
896
+ duration_ms: 1849.539672
911
897
  ...
912
898
  # Trace:
913
899
  # ERROR TEST Name: Folder Input Tests | works for a multiple folders input in browser mode with few failing tests
914
- # ERROR TEST COMMAND: node cli.js tmp/f576b4a2-69f1-4bc3-ad4f-d44b1929cf05 tmp/183f01ae-18f2-4e24-a471-88399f79f962 --browser
915
- # Error: Command failed: node cli.js tmp/f576b4a2-69f1-4bc3-ad4f-d44b1929cf05 tmp/183f01ae-18f2-4e24-a471-88399f79f962 --browser
900
+ # ERROR TEST COMMAND: node cli.js tmp/dcb129e2-b4e2-41e1-bf41-bd979d558a9f tmp/7c44d2b1-363a-4bf0-b1c0-f9344bb44c29 --browser
901
+ # Error: Command failed: node cli.js tmp/dcb129e2-b4e2-41e1-bf41-bd979d558a9f tmp/7c44d2b1-363a-4bf0-b1c0-f9344bb44c29 --browser
916
902
  #
917
903
  #
918
904
  # at execute (file:///home/izelnakri/Github/qunitx/test/helpers/shell.js:27:13)
@@ -923,31 +909,31 @@ ok 7 - File Input Tests
923
909
  # Subtest: works for a multiple folders input in browser mode with few failing tests
924
910
  ok 8 - works for a multiple folders input in browser mode with few failing tests
925
911
  ---
926
- duration_ms: 2302.067171
912
+ duration_ms: 3087.106076
927
913
  ...
928
914
  # Trace:
929
915
  # TEST NAME: Folder Input Tests | works for a single folder input in browser mode with debug and all passing tests
930
- # TEST COMMAND: node cli.js tmp/92179d29-bd13-4d26-ad82-23feb32674f9 --browser --debug
931
- # 0: \# HTTPServer [Server]: started successfully at [localhost:1234] in [289ms]
916
+ # TEST COMMAND: node cli.js tmp/ac8e1db4-38b9-4836-83e8-1581aaec1d90 --browser --debug
917
+ # 0: \# HTTPServer [Server]: started successfully at [localhost:1234] in [181ms]
932
918
  # 1: \# QUnitX running: http://localhost:1234/
933
919
  # 2: \# [HTTPServer] GET /favicon.ico
934
920
  # 3: TAP version 13
935
921
  # 4: calling assert true test case
936
- # 5: ok 1 92179d29-bd13-4d26-ad82-23feb32674f9 | first-module-pass Passing Tests | assert true works \# (2 ms)
937
- # 6: ok 2 92179d29-bd13-4d26-ad82-23feb32674f9 | first-module-pass Passing Tests | async test finishes \# (106 ms)
938
- # 7: resolving async test
939
- # 8: calling deepEqual test case
940
- # 9: ok 3 92179d29-bd13-4d26-ad82-23feb32674f9 | first-module-pass Passing Tests | deepEqual true works \# (16 ms)
941
- # 10: ok 4 92179d29-bd13-4d26-ad82-23feb32674f9 | second-module-pass Passing Tests | assert true works \# (1 ms)
942
- # 11: calling assert true test case
922
+ # 5: ok 1 ac8e1db4-38b9-4836-83e8-1581aaec1d90 | first-module-pass Passing Tests | assert true works \# (1 ms)
923
+ # 6: resolving async test
924
+ # 7: calling deepEqual test case
925
+ # 8: ok 2 ac8e1db4-38b9-4836-83e8-1581aaec1d90 | first-module-pass Passing Tests | async test finishes \# (64 ms)
926
+ # 9: ok 3 ac8e1db4-38b9-4836-83e8-1581aaec1d90 | first-module-pass Passing Tests | deepEqual true works \# (2 ms)
927
+ # 10: calling assert true test case
928
+ # 11: ok 4 ac8e1db4-38b9-4836-83e8-1581aaec1d90 | second-module-pass Passing Tests | assert true works \# (1 ms)
943
929
  # 12: {
944
930
  # 13: moduleName: 'called resolved async test with object',
945
931
  # 14: placeholder: 1000,
946
932
  # 15: anotherObject: { firstName: 'Izel', createdAt: {} }
947
933
  # 16: }
948
- # 17: ok 5 92179d29-bd13-4d26-ad82-23feb32674f9 | second-module-pass Passing Tests | async test finishes \# (53 ms)
949
- # 18: ok 6 92179d29-bd13-4d26-ad82-23feb32674f9 | second-module-pass Passing Tests | deepEqual true works \# (2 ms)
950
- # 19: resolving async test
934
+ # 17: resolving async test
935
+ # 18: ok 5 ac8e1db4-38b9-4836-83e8-1581aaec1d90 | second-module-pass Passing Tests | async test finishes \# (60 ms)
936
+ # 19: ok 6 ac8e1db4-38b9-4836-83e8-1581aaec1d90 | second-module-pass Passing Tests | deepEqual true works \# (1 ms)
951
937
  # 20: calling deepEqual test case
952
938
  # 21: {
953
939
  # 22: moduleName: 'called resolved async test with object',
@@ -960,7 +946,7 @@ ok 7 - File Input Tests
960
946
  # 29: \# pass 6
961
947
  # 30: \# skip 0
962
948
  # 31: \# fail 0
963
- # 32: \# duration 932
949
+ # 32: \# duration 1267
964
950
  # 33:
965
951
  # 34: \# HTTPServer [Server]: stopped successfully
966
952
  # 35:
@@ -973,16 +959,15 @@ ok 7 - File Input Tests
973
959
  # Subtest: works for a single folder input in browser mode with debug and all passing tests
974
960
  ok 9 - works for a single folder input in browser mode with debug and all passing tests
975
961
  ---
976
- duration_ms: 2244.64355
962
+ duration_ms: 2110.819749
977
963
  ...
978
964
  # Trace:
979
965
  # ERROR TEST Name: Folder Input Tests | works for a single folder input in browser mode with debug and few failing tests
980
- # ERROR TEST COMMAND: node cli.js tmp/31012d7e-1d7c-460e-81ed-9e42f774b6b6 --browser --debug
981
- # Error: Command failed: node cli.js tmp/31012d7e-1d7c-460e-81ed-9e42f774b6b6 --browser --debug
966
+ # ERROR TEST COMMAND: node cli.js tmp/d64032a5-1d2d-4477-a080-7b3d28be279a --browser --debug
967
+ # Error: Command failed: node cli.js tmp/d64032a5-1d2d-4477-a080-7b3d28be279a --browser --debug
982
968
  #
983
969
  #
984
970
  # at execute (file:///home/izelnakri/Github/qunitx/test/helpers/shell.js:27:13)
985
- # at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
986
971
  # at async file:///home/izelnakri/Github/qunitx/test/inputs/folder-test.js:146:7
987
972
  # at async TestContext.<anonymous> (file:///home/izelnakri/Github/qunitx/shims/nodejs.js:21:12)
988
973
  # at async Test.run (node:internal/test_runner/test:569:9)
@@ -990,54 +975,54 @@ ok 7 - File Input Tests
990
975
  # Subtest: works for a single folder input in browser mode with debug and few failing tests
991
976
  ok 10 - works for a single folder input in browser mode with debug and few failing tests
992
977
  ---
993
- duration_ms: 2509.226922
978
+ duration_ms: 1938.678416
994
979
  ...
995
980
  # Trace:
996
981
  # TEST NAME: Folder Input Tests | works for a multiple folders input in browser mode with debug and all passing tests
997
- # TEST COMMAND: node cli.js tmp/44e4354a-73e9-4890-8120-8b45620704cc tmp/36e40270-10a6-4a01-9ff9-07ace042c88e --browser --debug
998
- # 0: \# HTTPServer [Server]: started successfully at [localhost:1234] in [576ms]
982
+ # TEST COMMAND: node cli.js tmp/9df9b7d2-b08c-4ed0-943d-7e4a706defbe tmp/0001f6cd-4111-49b9-8149-3dbfd818c567 --browser --debug
983
+ # 0: \# HTTPServer [Server]: started successfully at [localhost:1234] in [202ms]
999
984
  # 1: \# QUnitX running: http://localhost:1234/
1000
985
  # 2: \# [HTTPServer] GET /favicon.ico
1001
986
  # 3: TAP version 13
1002
- # 4: ok 1 44e4354a-73e9-4890-8120-8b45620704cc | first-module-pass Passing Tests | assert true works \# (2 ms)
1003
- # 5: calling assert true test case
987
+ # 4: calling assert true test case
988
+ # 5: ok 1 9df9b7d2-b08c-4ed0-943d-7e4a706defbe | first-module-pass Passing Tests | assert true works \# (2 ms)
1004
989
  # 6: resolving async test
1005
- # 7: ok 2 44e4354a-73e9-4890-8120-8b45620704cc | first-module-pass Passing Tests | async test finishes \# (74 ms)
990
+ # 7: ok 2 9df9b7d2-b08c-4ed0-943d-7e4a706defbe | first-module-pass Passing Tests | async test finishes \# (52 ms)
1006
991
  # 8: calling deepEqual test case
1007
- # 9: ok 3 44e4354a-73e9-4890-8120-8b45620704cc | first-module-pass Passing Tests | deepEqual true works \# (1 ms)
992
+ # 9: ok 3 9df9b7d2-b08c-4ed0-943d-7e4a706defbe | first-module-pass Passing Tests | deepEqual true works \# (1 ms)
1008
993
  # 10: calling assert true test case
1009
- # 11: ok 4 44e4354a-73e9-4890-8120-8b45620704cc | second-module-pass Passing Tests | assert true works \# (1 ms)
994
+ # 11: ok 4 9df9b7d2-b08c-4ed0-943d-7e4a706defbe | second-module-pass Passing Tests | assert true works \# (1 ms)
1010
995
  # 12: {
1011
996
  # 13: moduleName: 'called resolved async test with object',
1012
997
  # 14: placeholder: 1000,
1013
998
  # 15: anotherObject: { firstName: 'Izel', createdAt: {} }
1014
999
  # 16: }
1015
- # 17: ok 5 44e4354a-73e9-4890-8120-8b45620704cc | second-module-pass Passing Tests | async test finishes \# (52 ms)
1016
- # 18: ok 6 44e4354a-73e9-4890-8120-8b45620704cc | second-module-pass Passing Tests | deepEqual true works \# (1 ms)
1017
- # 19: ok 7 36e40270-10a6-4a01-9ff9-07ace042c88e | first-module-pass Passing Tests | assert true works \# (0 ms)
1018
- # 20: resolving async test
1019
- # 21: calling deepEqual test case
1020
- # 22: calling assert true test case
1000
+ # 17: resolving async test
1001
+ # 18: ok 5 9df9b7d2-b08c-4ed0-943d-7e4a706defbe | second-module-pass Passing Tests | async test finishes \# (58 ms)
1002
+ # 19: calling deepEqual test case
1003
+ # 20: ok 6 9df9b7d2-b08c-4ed0-943d-7e4a706defbe | second-module-pass Passing Tests | deepEqual true works \# (2 ms)
1004
+ # 21: calling assert true test case
1005
+ # 22: ok 7 0001f6cd-4111-49b9-8149-3dbfd818c567 | first-module-pass Passing Tests | assert true works \# (2 ms)
1021
1006
  # 23: {
1022
1007
  # 24: moduleName: 'called resolved async test with object',
1023
1008
  # 25: placeholder: 1000,
1024
1009
  # 26: anotherObject: { firstName: 'Izel', createdAt: {} }
1025
1010
  # 27: }
1026
1011
  # 28: resolving async test
1027
- # 29: ok 8 36e40270-10a6-4a01-9ff9-07ace042c88e | first-module-pass Passing Tests | async test finishes \# (56 ms)
1028
- # 30: calling deepEqual test case
1029
- # 31: ok 9 36e40270-10a6-4a01-9ff9-07ace042c88e | first-module-pass Passing Tests | deepEqual true works \# (1 ms)
1012
+ # 29: calling deepEqual test case
1013
+ # 30: ok 8 0001f6cd-4111-49b9-8149-3dbfd818c567 | first-module-pass Passing Tests | async test finishes \# (58 ms)
1014
+ # 31: ok 9 0001f6cd-4111-49b9-8149-3dbfd818c567 | first-module-pass Passing Tests | deepEqual true works \# (2 ms)
1030
1015
  # 32: calling assert true test case
1031
- # 33: ok 10 36e40270-10a6-4a01-9ff9-07ace042c88e | second-module-pass Passing Tests | assert true works \# (1 ms)
1016
+ # 33: ok 10 0001f6cd-4111-49b9-8149-3dbfd818c567 | second-module-pass Passing Tests | assert true works \# (2 ms)
1032
1017
  # 34: {
1033
1018
  # 35: moduleName: 'called resolved async test with object',
1034
1019
  # 36: placeholder: 1000,
1035
1020
  # 37: anotherObject: { firstName: 'Izel', createdAt: {} }
1036
1021
  # 38: }
1037
- # 39: ok 11 36e40270-10a6-4a01-9ff9-07ace042c88e | second-module-pass Passing Tests | async test finishes \# (51 ms)
1038
- # 40: resolving async test
1022
+ # 39: resolving async test
1023
+ # 40: ok 11 0001f6cd-4111-49b9-8149-3dbfd818c567 | second-module-pass Passing Tests | async test finishes \# (58 ms)
1039
1024
  # 41: calling deepEqual test case
1040
- # 42: ok 12 36e40270-10a6-4a01-9ff9-07ace042c88e | second-module-pass Passing Tests | deepEqual true works \# (1 ms)
1025
+ # 42: ok 12 0001f6cd-4111-49b9-8149-3dbfd818c567 | second-module-pass Passing Tests | deepEqual true works \# (3 ms)
1041
1026
  # 43: {
1042
1027
  # 44: moduleName: 'called resolved async test with object',
1043
1028
  # 45: placeholder: 1000,
@@ -1049,12 +1034,13 @@ ok 7 - File Input Tests
1049
1034
  # 51: \# pass 12
1050
1035
  # 52: \# skip 0
1051
1036
  # 53: \# fail 0
1052
- # 54: \# duration 922
1037
+ # 54: \# duration 841
1053
1038
  # 55:
1054
1039
  # 56: \# HTTPServer [Server]: stopped successfully
1055
1040
  # 57:
1056
1041
  #
1057
1042
  # at execute (file:///home/izelnakri/Github/qunitx/test/helpers/shell.js:11:13)
1043
+ # at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
1058
1044
  # at async file:///home/izelnakri/Github/qunitx/test/inputs/folder-test.js:161:24
1059
1045
  # at async TestContext.<anonymous> (file:///home/izelnakri/Github/qunitx/shims/nodejs.js:21:12)
1060
1046
  # at async Test.run (node:internal/test_runner/test:569:9)
@@ -1062,12 +1048,12 @@ ok 7 - File Input Tests
1062
1048
  # Subtest: works for a multiple folders input in browser mode with debug and all passing tests
1063
1049
  ok 11 - works for a multiple folders input in browser mode with debug and all passing tests
1064
1050
  ---
1065
- duration_ms: 3088.002408
1051
+ duration_ms: 1769.424883
1066
1052
  ...
1067
1053
  # Trace:
1068
1054
  # ERROR TEST Name: Folder Input Tests | works for a multiple folders input in browser mode with debug and few failing tests
1069
- # ERROR TEST COMMAND: node cli.js tmp/5eae46f6-7975-475e-b752-b57b91c0ddb3 tmp/a21670c1-cca0-47c9-9197-3fb57313b2bf --browser --debug
1070
- # Error: Command failed: node cli.js tmp/5eae46f6-7975-475e-b752-b57b91c0ddb3 tmp/a21670c1-cca0-47c9-9197-3fb57313b2bf --browser --debug
1055
+ # ERROR TEST COMMAND: node cli.js tmp/0208ee5c-5893-463e-84d1-a596675d6756 tmp/88e4ab24-43ff-4e53-8aca-fbe2cbf98397 --browser --debug
1056
+ # Error: Command failed: node cli.js tmp/0208ee5c-5893-463e-84d1-a596675d6756 tmp/88e4ab24-43ff-4e53-8aca-fbe2cbf98397 --browser --debug
1071
1057
  #
1072
1058
  #
1073
1059
  # at execute (file:///home/izelnakri/Github/qunitx/test/helpers/shell.js:27:13)
@@ -1078,32 +1064,32 @@ ok 7 - File Input Tests
1078
1064
  # Subtest: works for a multiple folders input in browser mode with debug and few failing tests
1079
1065
  ok 12 - works for a multiple folders input in browser mode with debug and few failing tests
1080
1066
  ---
1081
- duration_ms: 2069.898139
1067
+ duration_ms: 2748.899619
1082
1068
  ...
1083
1069
  1..12
1084
1070
  ok 8 - Folder Input Tests
1085
1071
  ---
1086
- duration_ms: 19819.356211
1072
+ duration_ms: 20843.374384
1087
1073
  type: 'suite'
1088
1074
  ...
1089
1075
  # Subtest: Setup | glob(*) input tests | test-file-paths tests
1090
1076
  # Subtest: setupTestFilePaths() works correctly on different inputs
1091
1077
  ok 1 - setupTestFilePaths() works correctly on different inputs
1092
1078
  ---
1093
- duration_ms: 28.019468
1079
+ duration_ms: 18.520909
1094
1080
  ...
1095
1081
  1..1
1096
1082
  ok 9 - Setup | glob(*) input tests | test-file-paths tests
1097
1083
  ---
1098
- duration_ms: 32.040321
1084
+ duration_ms: 21.955897
1099
1085
  type: 'suite'
1100
1086
  ...
1101
1087
  1..9
1102
1088
  # tests 39
1103
1089
  # suites 9
1104
- # pass 38
1105
- # fail 1
1090
+ # pass 39
1091
+ # fail 0
1106
1092
  # cancelled 0
1107
1093
  # skipped 0
1108
1094
  # todo 0
1109
- # duration_ms 36527.965792
1095
+ # duration_ms 37045.898117