qunitx 0.4.1 → 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 +0 -0
- package/lib/commands/run/tests-in-node.js +1 -0
- package/lib/setup/node-js-environment.js +18 -1
- package/lib/setup/web-server.js +1 -1
- package/package.json +6 -5
- package/test-output.log +184 -184
package/cool.txt
ADDED
|
File without changes
|
|
@@ -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
|
-
|
|
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;
|
package/lib/setup/web-server.js
CHANGED
|
@@ -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 >
|
|
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.
|
|
4
|
+
"version": "0.4.3",
|
|
5
5
|
"description": "Experimental improvements, suggestions for qunit CLI",
|
|
6
6
|
"author": "Izel Nakri",
|
|
7
7
|
"license": "MIT",
|
|
@@ -40,12 +40,13 @@
|
|
|
40
40
|
"@nanoexpress/middleware-static-serve": "^1.0.4",
|
|
41
41
|
"cheerio": "^1.0.0-rc.10",
|
|
42
42
|
"chokidar": "^3.5.3",
|
|
43
|
-
"esbuild": "^0.17.
|
|
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",
|
|
48
|
-
"puppeteer": "20.
|
|
49
|
+
"puppeteer": "20.2.0",
|
|
49
50
|
"recursive-lookup": "1.1.0",
|
|
50
51
|
"ts-node": "^10.7.0"
|
|
51
52
|
},
|
|
@@ -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.
|
|
58
|
-
"qunitx": "^0.
|
|
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.
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
45
|
+
duration_ms: 572.221334
|
|
46
46
|
...
|
|
47
47
|
1..5
|
|
48
48
|
ok 1 - Commands | Help tests
|
|
49
49
|
---
|
|
50
|
-
duration_ms:
|
|
50
|
+
duration_ms: 3277.459656
|
|
51
51
|
type: 'suite'
|
|
52
52
|
...
|
|
53
53
|
# Trace:
|
|
@@ -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
|
|
75
|
+
# 19: \# duration 57
|
|
76
76
|
# 20:
|
|
77
77
|
# 21: This is running from after script!!
|
|
78
78
|
# 22:
|
|
@@ -89,15 +89,15 @@ 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: 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
|
|
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 \# (
|
|
99
|
+
# 2: ok 1 {{moduleName}} Passing Tests | assert true works \# (1 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,13 +105,12 @@ ok 1 - Commands | Help tests
|
|
|
105
105
|
# 8: \# pass 3
|
|
106
106
|
# 9: \# skip 0
|
|
107
107
|
# 10: \# fail 0
|
|
108
|
-
# 11: \# duration
|
|
108
|
+
# 11: \# duration 679
|
|
109
109
|
# 12:
|
|
110
110
|
# 13: This is running from after script!!
|
|
111
111
|
# 14:
|
|
112
112
|
#
|
|
113
113
|
# at execute (file:///home/izelnakri/Github/qunitx/test/helpers/shell.js:11:13)
|
|
114
|
-
# at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
|
|
115
114
|
# at async file:///home/izelnakri/Github/qunitx/test/flags/after-test.js:15:24
|
|
116
115
|
# at async TestContext.<anonymous> (file:///home/izelnakri/Github/qunitx/shims/nodejs.js:21:12)
|
|
117
116
|
# at async Test.run (node:internal/test_runner/test:569:9)
|
|
@@ -119,7 +118,7 @@ ok 1 - Commands | Help tests
|
|
|
119
118
|
# Subtest: --after works for --browser mode when it doesnt need to be awaited
|
|
120
119
|
ok 2 - --after works for --browser mode when it doesnt need to be awaited
|
|
121
120
|
---
|
|
122
|
-
duration_ms:
|
|
121
|
+
duration_ms: 1805.844421
|
|
123
122
|
...
|
|
124
123
|
# Trace:
|
|
125
124
|
# TEST NAME: --after script tests | --after works it needs to be awaited
|
|
@@ -127,23 +126,23 @@ ok 1 - Commands | Help tests
|
|
|
127
126
|
# 0: \# QUnitX running: /home/izelnakri/Github/qunitx/test/helpers/passing-tests.js
|
|
128
127
|
# 1: TAP version 13
|
|
129
128
|
# 2: calling assert true test case
|
|
130
|
-
# 3: ok 1 {{moduleName}} Passing Tests | assert true works \# (
|
|
129
|
+
# 3: ok 1 {{moduleName}} Passing Tests | assert true works \# (1 ms)
|
|
131
130
|
# 4: resolving async test
|
|
132
131
|
# 5: {
|
|
133
132
|
# 6: moduleName: 'called resolved async test with object',
|
|
134
133
|
# 7: placeholder: 1000,
|
|
135
134
|
# 8: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
|
|
136
135
|
# 9: }
|
|
137
|
-
# 10: ok 2 {{moduleName}} Passing Tests | async test finishes \# (
|
|
136
|
+
# 10: ok 2 {{moduleName}} Passing Tests | async test finishes \# (60 ms)
|
|
138
137
|
# 11: calling deepEqual test case
|
|
139
|
-
# 12: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (
|
|
138
|
+
# 12: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (2 ms)
|
|
140
139
|
# 13:
|
|
141
140
|
# 14: 1
|
|
142
141
|
# 15: \# tests 3
|
|
143
142
|
# 16: \# pass 3
|
|
144
143
|
# 17: \# skip 0
|
|
145
144
|
# 18: \# fail 0
|
|
146
|
-
# 19: \# duration
|
|
145
|
+
# 19: \# duration 66
|
|
147
146
|
# 20:
|
|
148
147
|
# 21: This is running from after script!!
|
|
149
148
|
# 22: After script result is written:
|
|
@@ -164,15 +163,15 @@ ok 1 - Commands | Help tests
|
|
|
164
163
|
# Subtest: --after works it needs to be awaited
|
|
165
164
|
ok 3 - --after works it needs to be awaited
|
|
166
165
|
---
|
|
167
|
-
duration_ms:
|
|
166
|
+
duration_ms: 740.956147
|
|
168
167
|
...
|
|
169
168
|
# Trace:
|
|
170
169
|
# TEST NAME: --after script tests | --after works for --browser mode it needs to be awaited
|
|
171
170
|
# TEST COMMAND: node cli.js test/helpers/passing-tests.js --browser --after=test/helpers/after-script-async.js
|
|
172
171
|
# 0: \# QUnitX running: http://localhost:1234/
|
|
173
172
|
# 1: TAP version 13
|
|
174
|
-
# 2: ok 1 {{moduleName}} Passing Tests | assert true works \# (
|
|
175
|
-
# 3: ok 2 {{moduleName}} Passing Tests | async test finishes \# (
|
|
173
|
+
# 2: ok 1 {{moduleName}} Passing Tests | assert true works \# (1 ms)
|
|
174
|
+
# 3: ok 2 {{moduleName}} Passing Tests | async test finishes \# (54 ms)
|
|
176
175
|
# 4: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (1 ms)
|
|
177
176
|
# 5:
|
|
178
177
|
# 6: 1
|
|
@@ -180,7 +179,7 @@ ok 1 - Commands | Help tests
|
|
|
180
179
|
# 8: \# pass 3
|
|
181
180
|
# 9: \# skip 0
|
|
182
181
|
# 10: \# fail 0
|
|
183
|
-
# 11: \# duration
|
|
182
|
+
# 11: \# duration 680
|
|
184
183
|
# 12:
|
|
185
184
|
# 13: This is running from after script!!
|
|
186
185
|
# 14: After script result is written:
|
|
@@ -200,12 +199,12 @@ ok 1 - Commands | Help tests
|
|
|
200
199
|
# Subtest: --after works for --browser mode it needs to be awaited
|
|
201
200
|
ok 4 - --after works for --browser mode it needs to be awaited
|
|
202
201
|
---
|
|
203
|
-
duration_ms:
|
|
202
|
+
duration_ms: 1915.849383
|
|
204
203
|
...
|
|
205
204
|
1..4
|
|
206
205
|
ok 2 - --after script tests
|
|
207
206
|
---
|
|
208
|
-
duration_ms:
|
|
207
|
+
duration_ms: 5318.655119
|
|
209
208
|
type: 'suite'
|
|
210
209
|
...
|
|
211
210
|
# Trace:
|
|
@@ -222,7 +221,7 @@ ok 2 - --after script tests
|
|
|
222
221
|
# 8: placeholder: 1000,
|
|
223
222
|
# 9: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
|
|
224
223
|
# 10: }
|
|
225
|
-
# 11: ok 2 {{moduleName}} Passing Tests | async test finishes \# (
|
|
224
|
+
# 11: ok 2 {{moduleName}} Passing Tests | async test finishes \# (53 ms)
|
|
226
225
|
# 12: calling deepEqual test case
|
|
227
226
|
# 13: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (1 ms)
|
|
228
227
|
# 14:
|
|
@@ -231,7 +230,7 @@ ok 2 - --after script tests
|
|
|
231
230
|
# 17: \# pass 3
|
|
232
231
|
# 18: \# skip 0
|
|
233
232
|
# 19: \# fail 0
|
|
234
|
-
# 20: \# duration
|
|
233
|
+
# 20: \# duration 56
|
|
235
234
|
# 21:
|
|
236
235
|
# 22:
|
|
237
236
|
#
|
|
@@ -247,7 +246,7 @@ ok 2 - --after script tests
|
|
|
247
246
|
# Subtest: --before works when it doesnt need to be awaited
|
|
248
247
|
ok 1 - --before works when it doesnt need to be awaited
|
|
249
248
|
---
|
|
250
|
-
duration_ms:
|
|
249
|
+
duration_ms: 719.456129
|
|
251
250
|
...
|
|
252
251
|
# Trace:
|
|
253
252
|
# TEST NAME: --before script tests | --before works for --browser mode when it doesnt need to be awaited
|
|
@@ -256,15 +255,15 @@ ok 2 - --after script tests
|
|
|
256
255
|
# 1: \# QUnitX running: http://localhost:1235/
|
|
257
256
|
# 2: TAP version 13
|
|
258
257
|
# 3: ok 1 {{moduleName}} Passing Tests | assert true works \# (1 ms)
|
|
259
|
-
# 4: ok 2 {{moduleName}} Passing Tests | async test finishes \# (
|
|
260
|
-
# 5: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (
|
|
258
|
+
# 4: ok 2 {{moduleName}} Passing Tests | async test finishes \# (63 ms)
|
|
259
|
+
# 5: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (0 ms)
|
|
261
260
|
# 6:
|
|
262
261
|
# 7: 1
|
|
263
262
|
# 8: \# tests 3
|
|
264
263
|
# 9: \# pass 3
|
|
265
264
|
# 10: \# skip 0
|
|
266
265
|
# 11: \# fail 0
|
|
267
|
-
# 12: \# duration
|
|
266
|
+
# 12: \# duration 577
|
|
268
267
|
# 13:
|
|
269
268
|
# 14:
|
|
270
269
|
#
|
|
@@ -276,7 +275,7 @@ ok 2 - --after script tests
|
|
|
276
275
|
# Subtest: --before works for --browser mode when it doesnt need to be awaited
|
|
277
276
|
ok 2 - --before works for --browser mode when it doesnt need to be awaited
|
|
278
277
|
---
|
|
279
|
-
duration_ms:
|
|
278
|
+
duration_ms: 1726.366108
|
|
280
279
|
...
|
|
281
280
|
# Trace:
|
|
282
281
|
# TEST NAME: --before script tests | --before works it needs to be awaited
|
|
@@ -284,30 +283,30 @@ ok 2 - --after script tests
|
|
|
284
283
|
# 0: This is running from before script!!
|
|
285
284
|
# 1: Starting before script with:
|
|
286
285
|
# 2: DOESNT HAVE SERVER RUNNING
|
|
287
|
-
# 3: \# HTTPServer [Server]: started successfully at [localhost:1235] in [
|
|
286
|
+
# 3: \# HTTPServer [Server]: started successfully at [localhost:1235] in [3ms]
|
|
288
287
|
# 4: Web server started on port 1235
|
|
289
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
|
|
290
289
|
# 6: TAP version 13
|
|
291
290
|
# 7: calling assert true test case
|
|
292
|
-
# 8: ok 1 {{moduleName}} Passing Tests | assert true works \# (
|
|
291
|
+
# 8: ok 1 {{moduleName}} Passing Tests | assert true works \# (0 ms)
|
|
293
292
|
# 9: resolving async test
|
|
294
293
|
# 10: {
|
|
295
294
|
# 11: moduleName: 'called resolved async test with object',
|
|
296
295
|
# 12: placeholder: 1000,
|
|
297
296
|
# 13: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
|
|
298
297
|
# 14: }
|
|
299
|
-
# 15: ok 2 {{moduleName}} Passing Tests | async test finishes \# (
|
|
298
|
+
# 15: ok 2 {{moduleName}} Passing Tests | async test finishes \# (53 ms)
|
|
300
299
|
# 16: calling deepEqual test case
|
|
301
300
|
# 17: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (1 ms)
|
|
302
301
|
# 18: req received
|
|
303
|
-
# 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 \# (288 ms)
|
|
304
303
|
# 20:
|
|
305
304
|
# 21: 1
|
|
306
305
|
# 22: \# tests 4
|
|
307
306
|
# 23: \# pass 4
|
|
308
307
|
# 24: \# skip 0
|
|
309
308
|
# 25: \# fail 0
|
|
310
|
-
# 26: \# duration
|
|
309
|
+
# 26: \# duration 345
|
|
311
310
|
# 27:
|
|
312
311
|
# 28:
|
|
313
312
|
#
|
|
@@ -320,7 +319,7 @@ ok 2 - --after script tests
|
|
|
320
319
|
# Subtest: --before works it needs to be awaited
|
|
321
320
|
ok 3 - --before works it needs to be awaited
|
|
322
321
|
---
|
|
323
|
-
duration_ms:
|
|
322
|
+
duration_ms: 1072.600833
|
|
324
323
|
...
|
|
325
324
|
# Trace:
|
|
326
325
|
# TEST NAME: --before script tests | --before works for --browser mode it needs to be awaited
|
|
@@ -329,18 +328,18 @@ ok 2 - --after script tests
|
|
|
329
328
|
# 1: Starting before script with:
|
|
330
329
|
# 2: \# QUnitX running: http://localhost:1234/
|
|
331
330
|
# 3: TAP version 13
|
|
332
|
-
# 4: ok 1 {{moduleName}} Passing Tests | assert true works \# (
|
|
333
|
-
# 5: ok 2 {{moduleName}} Passing Tests | async test finishes \# (
|
|
331
|
+
# 4: ok 1 {{moduleName}} Passing Tests | assert true works \# (2 ms)
|
|
332
|
+
# 5: ok 2 {{moduleName}} Passing Tests | async test finishes \# (72 ms)
|
|
334
333
|
# 6: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (1 ms)
|
|
335
334
|
# 7: req received
|
|
336
|
-
# 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 \# (266 ms)
|
|
337
336
|
# 9:
|
|
338
337
|
# 10: 1
|
|
339
338
|
# 11: \# tests 4
|
|
340
339
|
# 12: \# pass 4
|
|
341
340
|
# 13: \# skip 0
|
|
342
341
|
# 14: \# fail 0
|
|
343
|
-
# 15: \# duration
|
|
342
|
+
# 15: \# duration 987
|
|
344
343
|
# 16:
|
|
345
344
|
# 17:
|
|
346
345
|
#
|
|
@@ -352,48 +351,48 @@ ok 2 - --after script tests
|
|
|
352
351
|
# Subtest: --before works for --browser mode it needs to be awaited
|
|
353
352
|
ok 4 - --before works for --browser mode it needs to be awaited
|
|
354
353
|
---
|
|
355
|
-
duration_ms:
|
|
354
|
+
duration_ms: 2020.024366
|
|
356
355
|
...
|
|
357
356
|
1..4
|
|
358
357
|
ok 3 - --before script tests
|
|
359
358
|
---
|
|
360
|
-
duration_ms:
|
|
359
|
+
duration_ms: 5539.215849
|
|
361
360
|
type: 'suite'
|
|
362
361
|
...
|
|
363
362
|
# Subtest: Advanced HTML Input Tests
|
|
364
363
|
# Subtest: testing with specific html without content works
|
|
365
364
|
ok 1 - testing with specific html without content works
|
|
366
365
|
---
|
|
367
|
-
duration_ms: 0.
|
|
366
|
+
duration_ms: 0.761424
|
|
368
367
|
...
|
|
369
368
|
1..1
|
|
370
369
|
ok 4 - Advanced HTML Input Tests
|
|
371
370
|
---
|
|
372
|
-
duration_ms:
|
|
371
|
+
duration_ms: 8.07698
|
|
373
372
|
type: 'suite'
|
|
374
373
|
...
|
|
375
374
|
# Subtest: Advanced Error Edge Cases Tests
|
|
376
375
|
# Subtest: todo
|
|
377
376
|
ok 1 - todo
|
|
378
377
|
---
|
|
379
|
-
duration_ms: 0.
|
|
378
|
+
duration_ms: 0.513365
|
|
380
379
|
...
|
|
381
380
|
1..1
|
|
382
381
|
ok 5 - Advanced Error Edge Cases Tests
|
|
383
382
|
---
|
|
384
|
-
duration_ms: 0.
|
|
383
|
+
duration_ms: 0.825836
|
|
385
384
|
type: 'suite'
|
|
386
385
|
...
|
|
387
386
|
# Subtest: File and Folder Combination Tests
|
|
388
387
|
# Subtest: todo
|
|
389
388
|
ok 1 - todo
|
|
390
389
|
---
|
|
391
|
-
duration_ms: 0.
|
|
390
|
+
duration_ms: 0.438557
|
|
392
391
|
...
|
|
393
392
|
1..1
|
|
394
393
|
ok 6 - File and Folder Combination Tests
|
|
395
394
|
---
|
|
396
|
-
duration_ms: 0.
|
|
395
|
+
duration_ms: 0.78893
|
|
397
396
|
type: 'suite'
|
|
398
397
|
...
|
|
399
398
|
# Trace:
|
|
@@ -409,7 +408,7 @@ ok 6 - File and Folder Combination Tests
|
|
|
409
408
|
# 7: placeholder: 1000,
|
|
410
409
|
# 8: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
|
|
411
410
|
# 9: }
|
|
412
|
-
# 10: ok 2 {{moduleName}} Passing Tests | async test finishes \# (
|
|
411
|
+
# 10: ok 2 {{moduleName}} Passing Tests | async test finishes \# (54 ms)
|
|
413
412
|
# 11: calling deepEqual test case
|
|
414
413
|
# 12: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (0 ms)
|
|
415
414
|
# 13:
|
|
@@ -418,7 +417,7 @@ ok 6 - File and Folder Combination Tests
|
|
|
418
417
|
# 16: \# pass 3
|
|
419
418
|
# 17: \# skip 0
|
|
420
419
|
# 18: \# fail 0
|
|
421
|
-
# 19: \# duration
|
|
420
|
+
# 19: \# duration 56
|
|
422
421
|
# 20:
|
|
423
422
|
# 21:
|
|
424
423
|
#
|
|
@@ -434,7 +433,7 @@ ok 6 - File and Folder Combination Tests
|
|
|
434
433
|
# Subtest: testing a single passing js file works
|
|
435
434
|
ok 1 - testing a single passing js file works
|
|
436
435
|
---
|
|
437
|
-
duration_ms:
|
|
436
|
+
duration_ms: 815.266265
|
|
438
437
|
...
|
|
439
438
|
# Trace:
|
|
440
439
|
# ERROR TEST Name: File Input Tests | testing a single failing js file works
|
|
@@ -451,23 +450,23 @@ ok 6 - File and Folder Combination Tests
|
|
|
451
450
|
# Subtest: testing a single failing js file works
|
|
452
451
|
ok 2 - testing a single failing js file works
|
|
453
452
|
---
|
|
454
|
-
duration_ms:
|
|
453
|
+
duration_ms: 782.908771
|
|
455
454
|
...
|
|
456
455
|
# Trace:
|
|
457
456
|
# TEST NAME: File Input Tests | testing a single passing js file with --browser works, console output supressed
|
|
458
457
|
# TEST COMMAND: node cli.js tmp/test/passing-tests.js --browser
|
|
459
458
|
# 0: \# QUnitX running: http://localhost:1234/
|
|
460
459
|
# 1: TAP version 13
|
|
461
|
-
# 2: ok 1 {{moduleName}} Passing Tests | assert true works \# (
|
|
462
|
-
# 3: ok 2 {{moduleName}} Passing Tests | async test finishes \# (
|
|
463
|
-
# 4: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (
|
|
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)
|
|
464
463
|
# 5:
|
|
465
464
|
# 6: 1
|
|
466
465
|
# 7: \# tests 3
|
|
467
466
|
# 8: \# pass 3
|
|
468
467
|
# 9: \# skip 0
|
|
469
468
|
# 10: \# fail 0
|
|
470
|
-
# 11: \# duration
|
|
469
|
+
# 11: \# duration 655
|
|
471
470
|
# 12:
|
|
472
471
|
# 13:
|
|
473
472
|
#
|
|
@@ -479,21 +478,21 @@ ok 6 - File and Folder Combination Tests
|
|
|
479
478
|
# Subtest: testing a single passing js file with --browser works, console output supressed
|
|
480
479
|
ok 3 - testing a single passing js file with --browser works, console output supressed
|
|
481
480
|
---
|
|
482
|
-
duration_ms:
|
|
481
|
+
duration_ms: 1969.670196
|
|
483
482
|
...
|
|
484
483
|
# Trace:
|
|
485
484
|
# TEST NAME: File Input Tests | testing a single passing js file with --browser --debug works
|
|
486
485
|
# TEST COMMAND: node cli.js tmp/test/passing-tests.js --browser --debug
|
|
487
|
-
# 0: \# HTTPServer [Server]: started successfully at [localhost:1235] in [
|
|
486
|
+
# 0: \# HTTPServer [Server]: started successfully at [localhost:1235] in [398ms]
|
|
488
487
|
# 1: \# QUnitX running: http://localhost:1235/
|
|
489
488
|
# 2: \# [HTTPServer] GET /favicon.ico
|
|
490
489
|
# 3: TAP version 13
|
|
491
490
|
# 4: calling assert true test case
|
|
492
|
-
# 5: ok 1 {{moduleName}} Passing Tests | assert true works \# (
|
|
491
|
+
# 5: ok 1 {{moduleName}} Passing Tests | assert true works \# (1 ms)
|
|
493
492
|
# 6: resolving async test
|
|
494
|
-
# 7: ok 2 {{moduleName}} Passing Tests | async test finishes \# (
|
|
495
|
-
# 8:
|
|
496
|
-
# 9:
|
|
493
|
+
# 7: ok 2 {{moduleName}} Passing Tests | async test finishes \# (58 ms)
|
|
494
|
+
# 8: calling deepEqual test case
|
|
495
|
+
# 9: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (1 ms)
|
|
497
496
|
# 10: {
|
|
498
497
|
# 11: moduleName: 'called resolved async test with object',
|
|
499
498
|
# 12: placeholder: 1000,
|
|
@@ -505,7 +504,7 @@ ok 6 - File and Folder Combination Tests
|
|
|
505
504
|
# 18: \# pass 3
|
|
506
505
|
# 19: \# skip 0
|
|
507
506
|
# 20: \# fail 0
|
|
508
|
-
# 21: \# duration
|
|
507
|
+
# 21: \# duration 588
|
|
509
508
|
# 22:
|
|
510
509
|
# 23: \# HTTPServer [Server]: stopped successfully
|
|
511
510
|
# 24:
|
|
@@ -518,7 +517,7 @@ ok 6 - File and Folder Combination Tests
|
|
|
518
517
|
# Subtest: testing a single passing js file with --browser --debug works
|
|
519
518
|
ok 4 - testing a single passing js file with --browser --debug works
|
|
520
519
|
---
|
|
521
|
-
duration_ms:
|
|
520
|
+
duration_ms: 1968.77012
|
|
522
521
|
...
|
|
523
522
|
# Trace:
|
|
524
523
|
# ERROR TEST Name: File Input Tests | testing a single failing js with --browser file works
|
|
@@ -534,7 +533,7 @@ ok 6 - File and Folder Combination Tests
|
|
|
534
533
|
# Subtest: testing a single failing js with --browser file works
|
|
535
534
|
ok 5 - testing a single failing js with --browser file works
|
|
536
535
|
---
|
|
537
|
-
duration_ms:
|
|
536
|
+
duration_ms: 1708.773192
|
|
538
537
|
...
|
|
539
538
|
# Trace:
|
|
540
539
|
# ERROR TEST Name: File Input Tests | testing a single failing js file with --browser --debug works
|
|
@@ -550,15 +549,15 @@ ok 6 - File and Folder Combination Tests
|
|
|
550
549
|
# Subtest: testing a single failing js file with --browser --debug works
|
|
551
550
|
ok 6 - testing a single failing js file with --browser --debug works
|
|
552
551
|
---
|
|
553
|
-
duration_ms:
|
|
552
|
+
duration_ms: 1696.430083
|
|
554
553
|
...
|
|
555
554
|
# Trace:
|
|
556
555
|
# TEST NAME: File Input Tests | testing a single passing ts file with --browser works, console output supressed
|
|
557
556
|
# TEST COMMAND: node cli.js tmp/test/passing-tests.ts --browser
|
|
558
557
|
# 0: \# QUnitX running: http://localhost:1235/
|
|
559
558
|
# 1: TAP version 13
|
|
560
|
-
# 2: ok 1 {{moduleName}} Passing Tests | assert true works \# (
|
|
561
|
-
# 3: ok 2 {{moduleName}} Passing Tests | async test finishes \# (
|
|
559
|
+
# 2: ok 1 {{moduleName}} Passing Tests | assert true works \# (2 ms)
|
|
560
|
+
# 3: ok 2 {{moduleName}} Passing Tests | async test finishes \# (53 ms)
|
|
562
561
|
# 4: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (1 ms)
|
|
563
562
|
# 5:
|
|
564
563
|
# 6: 1
|
|
@@ -566,7 +565,7 @@ ok 6 - File and Folder Combination Tests
|
|
|
566
565
|
# 8: \# pass 3
|
|
567
566
|
# 9: \# skip 0
|
|
568
567
|
# 10: \# fail 0
|
|
569
|
-
# 11: \# duration
|
|
568
|
+
# 11: \# duration 643
|
|
570
569
|
# 12:
|
|
571
570
|
# 13:
|
|
572
571
|
#
|
|
@@ -578,19 +577,19 @@ ok 6 - File and Folder Combination Tests
|
|
|
578
577
|
# Subtest: testing a single passing ts file with --browser works, console output supressed
|
|
579
578
|
ok 7 - testing a single passing ts file with --browser works, console output supressed
|
|
580
579
|
---
|
|
581
|
-
duration_ms:
|
|
580
|
+
duration_ms: 1878.394995
|
|
582
581
|
...
|
|
583
582
|
# Trace:
|
|
584
583
|
# TEST NAME: File Input Tests | testing a single passing ts file with --browser --debug works
|
|
585
584
|
# TEST COMMAND: node cli.js tmp/test/passing-tests.ts --browser --debug
|
|
586
|
-
# 0: \# HTTPServer [Server]: started successfully at [localhost:1234] in [
|
|
585
|
+
# 0: \# HTTPServer [Server]: started successfully at [localhost:1234] in [203ms]
|
|
587
586
|
# 1: \# QUnitX running: http://localhost:1234/
|
|
588
587
|
# 2: \# [HTTPServer] GET /favicon.ico
|
|
589
588
|
# 3: TAP version 13
|
|
590
589
|
# 4: calling assert true test case
|
|
591
590
|
# 5: ok 1 {{moduleName}} Passing Tests | assert true works \# (1 ms)
|
|
592
591
|
# 6: resolving async test
|
|
593
|
-
# 7: ok 2 {{moduleName}} Passing Tests | async test finishes \# (
|
|
592
|
+
# 7: ok 2 {{moduleName}} Passing Tests | async test finishes \# (61 ms)
|
|
594
593
|
# 8: calling deepEqual test case
|
|
595
594
|
# 9: ok 3 {{moduleName}} Passing Tests | deepEqual true works \# (1 ms)
|
|
596
595
|
# 10: {
|
|
@@ -604,7 +603,7 @@ ok 6 - File and Folder Combination Tests
|
|
|
604
603
|
# 18: \# pass 3
|
|
605
604
|
# 19: \# skip 0
|
|
606
605
|
# 20: \# fail 0
|
|
607
|
-
# 21: \# duration
|
|
606
|
+
# 21: \# duration 602
|
|
608
607
|
# 22:
|
|
609
608
|
# 23: \# HTTPServer [Server]: stopped successfully
|
|
610
609
|
# 24:
|
|
@@ -617,7 +616,7 @@ ok 6 - File and Folder Combination Tests
|
|
|
617
616
|
# Subtest: testing a single passing ts file with --browser --debug works
|
|
618
617
|
ok 8 - testing a single passing ts file with --browser --debug works
|
|
619
618
|
---
|
|
620
|
-
duration_ms:
|
|
619
|
+
duration_ms: 1729.701753
|
|
621
620
|
...
|
|
622
621
|
# Trace:
|
|
623
622
|
# ERROR TEST Name: File Input Tests | testing a single failing ts with --browser file works
|
|
@@ -633,7 +632,7 @@ ok 6 - File and Folder Combination Tests
|
|
|
633
632
|
# Subtest: testing a single failing ts with --browser file works
|
|
634
633
|
ok 9 - testing a single failing ts with --browser file works
|
|
635
634
|
---
|
|
636
|
-
duration_ms:
|
|
635
|
+
duration_ms: 1671.90492
|
|
637
636
|
...
|
|
638
637
|
# Trace:
|
|
639
638
|
# ERROR TEST Name: File Input Tests | testing a single failing ts file with --browser --debug works
|
|
@@ -649,48 +648,48 @@ ok 6 - File and Folder Combination Tests
|
|
|
649
648
|
# Subtest: testing a single failing ts file with --browser --debug works
|
|
650
649
|
ok 10 - testing a single failing ts file with --browser --debug works
|
|
651
650
|
---
|
|
652
|
-
duration_ms:
|
|
651
|
+
duration_ms: 1689.26707
|
|
653
652
|
...
|
|
654
653
|
1..10
|
|
655
654
|
ok 7 - File Input Tests
|
|
656
655
|
---
|
|
657
|
-
duration_ms:
|
|
656
|
+
duration_ms: 15912.483509
|
|
658
657
|
type: 'suite'
|
|
659
658
|
...
|
|
660
659
|
# Trace:
|
|
661
660
|
# TEST NAME: Folder Input Tests | works for a single folder input with all passing tests
|
|
662
|
-
# TEST COMMAND: node cli.js tmp/
|
|
663
|
-
# 0: \# QUnitX running: /home/izelnakri/Github/qunitx/tmp/
|
|
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
|
|
664
663
|
# 1: TAP version 13
|
|
665
664
|
# 2: calling assert true test case
|
|
666
|
-
# 3: ok 1
|
|
665
|
+
# 3: ok 1 be796cd0-e415-4bfd-b8dc-a5ef8aa5e3c1 | first-module-pass Passing Tests | assert true works \# (1 ms)
|
|
667
666
|
# 4: resolving async test
|
|
668
667
|
# 5: {
|
|
669
668
|
# 6: moduleName: 'called resolved async test with object',
|
|
670
669
|
# 7: placeholder: 1000,
|
|
671
670
|
# 8: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
|
|
672
671
|
# 9: }
|
|
673
|
-
# 10: ok 2
|
|
672
|
+
# 10: ok 2 be796cd0-e415-4bfd-b8dc-a5ef8aa5e3c1 | first-module-pass Passing Tests | async test finishes \# (57 ms)
|
|
674
673
|
# 11: calling deepEqual test case
|
|
675
|
-
# 12: ok 3
|
|
674
|
+
# 12: ok 3 be796cd0-e415-4bfd-b8dc-a5ef8aa5e3c1 | first-module-pass Passing Tests | deepEqual true works \# (1 ms)
|
|
676
675
|
# 13: calling assert true test case
|
|
677
|
-
# 14: ok 4
|
|
676
|
+
# 14: ok 4 be796cd0-e415-4bfd-b8dc-a5ef8aa5e3c1 | second-module-pass Passing Tests | assert true works \# (0 ms)
|
|
678
677
|
# 15: resolving async test
|
|
679
678
|
# 16: {
|
|
680
679
|
# 17: moduleName: 'called resolved async test with object',
|
|
681
680
|
# 18: placeholder: 1000,
|
|
682
681
|
# 19: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
|
|
683
682
|
# 20: }
|
|
684
|
-
# 21: ok 5
|
|
683
|
+
# 21: ok 5 be796cd0-e415-4bfd-b8dc-a5ef8aa5e3c1 | second-module-pass Passing Tests | async test finishes \# (53 ms)
|
|
685
684
|
# 22: calling deepEqual test case
|
|
686
|
-
# 23: ok 6
|
|
685
|
+
# 23: ok 6 be796cd0-e415-4bfd-b8dc-a5ef8aa5e3c1 | second-module-pass Passing Tests | deepEqual true works \# (0 ms)
|
|
687
686
|
# 24:
|
|
688
687
|
# 25: 1
|
|
689
688
|
# 26: \# tests 6
|
|
690
689
|
# 27: \# pass 6
|
|
691
690
|
# 28: \# skip 0
|
|
692
691
|
# 29: \# fail 0
|
|
693
|
-
# 30: \# duration
|
|
692
|
+
# 30: \# duration 116
|
|
694
693
|
# 31:
|
|
695
694
|
# 32:
|
|
696
695
|
#
|
|
@@ -706,12 +705,12 @@ ok 7 - File Input Tests
|
|
|
706
705
|
# Subtest: works for a single folder input with all passing tests
|
|
707
706
|
ok 1 - works for a single folder input with all passing tests
|
|
708
707
|
---
|
|
709
|
-
duration_ms:
|
|
708
|
+
duration_ms: 758.839476
|
|
710
709
|
...
|
|
711
710
|
# Trace:
|
|
712
711
|
# ERROR TEST Name: Folder Input Tests | works for a single folder input with few failing tests
|
|
713
|
-
# ERROR TEST COMMAND: node cli.js tmp/
|
|
714
|
-
# Error: Command failed: node cli.js tmp/
|
|
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
|
|
715
714
|
#
|
|
716
715
|
#
|
|
717
716
|
# at execute (file:///home/izelnakri/Github/qunitx/test/helpers/shell.js:27:13)
|
|
@@ -723,64 +722,64 @@ ok 7 - File Input Tests
|
|
|
723
722
|
# Subtest: works for a single folder input with few failing tests
|
|
724
723
|
ok 2 - works for a single folder input with few failing tests
|
|
725
724
|
---
|
|
726
|
-
duration_ms:
|
|
725
|
+
duration_ms: 950.991986
|
|
727
726
|
...
|
|
728
727
|
# Trace:
|
|
729
728
|
# TEST NAME: Folder Input Tests |
|
|
730
|
-
# TEST COMMAND: node cli.js tmp/
|
|
731
|
-
# 0: \# QUnitX running: /home/izelnakri/Github/qunitx/tmp/
|
|
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
|
|
732
731
|
# 1: TAP version 13
|
|
733
732
|
# 2: calling assert true test case
|
|
734
|
-
# 3: ok 1
|
|
733
|
+
# 3: ok 1 8d1555c1-ad46-4e9a-9c20-0ca9548fdc78 | first-module-pass Passing Tests | assert true works \# (1 ms)
|
|
735
734
|
# 4: resolving async test
|
|
736
735
|
# 5: {
|
|
737
736
|
# 6: moduleName: 'called resolved async test with object',
|
|
738
737
|
# 7: placeholder: 1000,
|
|
739
738
|
# 8: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
|
|
740
739
|
# 9: }
|
|
741
|
-
# 10: ok 2
|
|
740
|
+
# 10: ok 2 8d1555c1-ad46-4e9a-9c20-0ca9548fdc78 | first-module-pass Passing Tests | async test finishes \# (61 ms)
|
|
742
741
|
# 11: calling deepEqual test case
|
|
743
|
-
# 12: ok 3
|
|
742
|
+
# 12: ok 3 8d1555c1-ad46-4e9a-9c20-0ca9548fdc78 | first-module-pass Passing Tests | deepEqual true works \# (2 ms)
|
|
744
743
|
# 13: calling assert true test case
|
|
745
|
-
# 14: ok 4
|
|
744
|
+
# 14: ok 4 144d0c65-96f0-491e-8b09-5c347f2d483a | first-module-pass Passing Tests | assert true works \# (1 ms)
|
|
746
745
|
# 15: resolving async test
|
|
747
746
|
# 16: {
|
|
748
747
|
# 17: moduleName: 'called resolved async test with object',
|
|
749
748
|
# 18: placeholder: 1000,
|
|
750
749
|
# 19: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
|
|
751
750
|
# 20: }
|
|
752
|
-
# 21: ok 5
|
|
751
|
+
# 21: ok 5 144d0c65-96f0-491e-8b09-5c347f2d483a | first-module-pass Passing Tests | async test finishes \# (53 ms)
|
|
753
752
|
# 22: calling deepEqual test case
|
|
754
|
-
# 23: ok 6
|
|
753
|
+
# 23: ok 6 144d0c65-96f0-491e-8b09-5c347f2d483a | first-module-pass Passing Tests | deepEqual true works \# (1 ms)
|
|
755
754
|
# 24: calling assert true test case
|
|
756
|
-
# 25: ok 7
|
|
755
|
+
# 25: ok 7 8d1555c1-ad46-4e9a-9c20-0ca9548fdc78 | second-module-pass Passing Tests | assert true works \# (1 ms)
|
|
757
756
|
# 26: resolving async test
|
|
758
757
|
# 27: {
|
|
759
758
|
# 28: moduleName: 'called resolved async test with object',
|
|
760
759
|
# 29: placeholder: 1000,
|
|
761
760
|
# 30: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
|
|
762
761
|
# 31: }
|
|
763
|
-
# 32: ok 8
|
|
762
|
+
# 32: ok 8 8d1555c1-ad46-4e9a-9c20-0ca9548fdc78 | second-module-pass Passing Tests | async test finishes \# (54 ms)
|
|
764
763
|
# 33: calling deepEqual test case
|
|
765
|
-
# 34: ok 9
|
|
764
|
+
# 34: ok 9 8d1555c1-ad46-4e9a-9c20-0ca9548fdc78 | second-module-pass Passing Tests | deepEqual true works \# (1 ms)
|
|
766
765
|
# 35: calling assert true test case
|
|
767
|
-
# 36: ok 10
|
|
766
|
+
# 36: ok 10 144d0c65-96f0-491e-8b09-5c347f2d483a | second-module-pass Passing Tests | assert true works \# (1 ms)
|
|
768
767
|
# 37: resolving async test
|
|
769
768
|
# 38: {
|
|
770
769
|
# 39: moduleName: 'called resolved async test with object',
|
|
771
770
|
# 40: placeholder: 1000,
|
|
772
771
|
# 41: anotherObject: { firstName: 'Izel', createdAt: 2021-03-06T00:00:00.000Z }
|
|
773
772
|
# 42: }
|
|
774
|
-
# 43: ok 11
|
|
773
|
+
# 43: ok 11 144d0c65-96f0-491e-8b09-5c347f2d483a | second-module-pass Passing Tests | async test finishes \# (54 ms)
|
|
775
774
|
# 44: calling deepEqual test case
|
|
776
|
-
# 45: ok 12
|
|
775
|
+
# 45: ok 12 144d0c65-96f0-491e-8b09-5c347f2d483a | second-module-pass Passing Tests | deepEqual true works \# (1 ms)
|
|
777
776
|
# 46:
|
|
778
777
|
# 47: 1
|
|
779
778
|
# 48: \# tests 12
|
|
780
779
|
# 49: \# pass 12
|
|
781
780
|
# 50: \# skip 0
|
|
782
781
|
# 51: \# fail 0
|
|
783
|
-
# 52: \# duration
|
|
782
|
+
# 52: \# duration 234
|
|
784
783
|
# 53:
|
|
785
784
|
# 54:
|
|
786
785
|
#
|
|
@@ -793,12 +792,12 @@ ok 7 - File Input Tests
|
|
|
793
792
|
# Subtest: works for a multiple folders input with all passing tests
|
|
794
793
|
ok 3 - works for a multiple folders input with all passing tests
|
|
795
794
|
---
|
|
796
|
-
duration_ms:
|
|
795
|
+
duration_ms: 888.186893
|
|
797
796
|
...
|
|
798
797
|
# Trace:
|
|
799
798
|
# ERROR TEST Name: Folder Input Tests |
|
|
800
|
-
# ERROR TEST COMMAND: node cli.js tmp/
|
|
801
|
-
# Error: Command failed: node cli.js tmp/
|
|
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
|
|
802
801
|
#
|
|
803
802
|
#
|
|
804
803
|
# at execute (file:///home/izelnakri/Github/qunitx/test/helpers/shell.js:27:13)
|
|
@@ -810,26 +809,26 @@ ok 7 - File Input Tests
|
|
|
810
809
|
# Subtest: works for a multiple folders input with few failing tests
|
|
811
810
|
ok 4 - works for a multiple folders input with few failing tests
|
|
812
811
|
---
|
|
813
|
-
duration_ms:
|
|
812
|
+
duration_ms: 1099.78897
|
|
814
813
|
...
|
|
815
814
|
# Trace:
|
|
816
815
|
# TEST NAME: Folder Input Tests | works for a single folder input in browser mode with all passing tests
|
|
817
|
-
# TEST COMMAND: node cli.js tmp/
|
|
816
|
+
# TEST COMMAND: node cli.js tmp/5869a39d-d6e4-4fce-944b-e58eb82868be --browser
|
|
818
817
|
# 0: \# QUnitX running: http://localhost:1234/
|
|
819
818
|
# 1: TAP version 13
|
|
820
|
-
# 2: ok 1
|
|
821
|
-
# 3: ok 2
|
|
822
|
-
# 4: ok 3
|
|
823
|
-
# 5: ok 4
|
|
824
|
-
# 6: ok 5
|
|
825
|
-
# 7: ok 6
|
|
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)
|
|
826
825
|
# 8:
|
|
827
826
|
# 9: 1
|
|
828
827
|
# 10: \# tests 6
|
|
829
828
|
# 11: \# pass 6
|
|
830
829
|
# 12: \# skip 0
|
|
831
830
|
# 13: \# fail 0
|
|
832
|
-
# 14: \# duration
|
|
831
|
+
# 14: \# duration 768
|
|
833
832
|
# 15:
|
|
834
833
|
# 16:
|
|
835
834
|
#
|
|
@@ -841,12 +840,12 @@ ok 7 - File Input Tests
|
|
|
841
840
|
# Subtest: works for a single folder input in browser mode with all passing tests
|
|
842
841
|
ok 5 - works for a single folder input in browser mode with all passing tests
|
|
843
842
|
---
|
|
844
|
-
duration_ms:
|
|
843
|
+
duration_ms: 1724.256193
|
|
845
844
|
...
|
|
846
845
|
# Trace:
|
|
847
846
|
# ERROR TEST Name: Folder Input Tests | works for a single folder input in browser mode with few failing tests
|
|
848
|
-
# ERROR TEST COMMAND: node cli.js tmp/
|
|
849
|
-
# Error: Command failed: node cli.js tmp/
|
|
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
|
|
850
849
|
#
|
|
851
850
|
#
|
|
852
851
|
# at execute (file:///home/izelnakri/Github/qunitx/test/helpers/shell.js:27:13)
|
|
@@ -857,32 +856,32 @@ ok 7 - File Input Tests
|
|
|
857
856
|
# Subtest: works for a single folder input in browser mode with few failing tests
|
|
858
857
|
ok 6 - works for a single folder input in browser mode with few failing tests
|
|
859
858
|
---
|
|
860
|
-
duration_ms:
|
|
859
|
+
duration_ms: 1914.83251
|
|
861
860
|
...
|
|
862
861
|
# Trace:
|
|
863
862
|
# TEST NAME: Folder Input Tests | works for a multiple folders input in browser mode with all passing tests
|
|
864
|
-
# TEST COMMAND: node cli.js tmp/
|
|
863
|
+
# TEST COMMAND: node cli.js tmp/eacc510a-3b59-4b96-94f3-2cc5f5dcf48d tmp/54f6c824-0778-43c6-b954-9348db17e455 --browser
|
|
865
864
|
# 0: \# QUnitX running: http://localhost:1234/
|
|
866
865
|
# 1: TAP version 13
|
|
867
|
-
# 2: ok 1
|
|
868
|
-
# 3: ok 2
|
|
869
|
-
# 4: ok 3
|
|
870
|
-
# 5: ok 4
|
|
871
|
-
# 6: ok 5
|
|
872
|
-
# 7: ok 6
|
|
873
|
-
# 8: ok 7
|
|
874
|
-
# 9: ok 8
|
|
875
|
-
# 10: ok 9
|
|
876
|
-
# 11: ok 10
|
|
877
|
-
# 12: ok 11
|
|
878
|
-
# 13: ok 12
|
|
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)
|
|
879
878
|
# 14:
|
|
880
879
|
# 15: 1
|
|
881
880
|
# 16: \# tests 12
|
|
882
881
|
# 17: \# pass 12
|
|
883
882
|
# 18: \# skip 0
|
|
884
883
|
# 19: \# fail 0
|
|
885
|
-
# 20: \# duration
|
|
884
|
+
# 20: \# duration 922
|
|
886
885
|
# 21:
|
|
887
886
|
# 22:
|
|
888
887
|
#
|
|
@@ -894,12 +893,12 @@ ok 7 - File Input Tests
|
|
|
894
893
|
# Subtest: works for a multiple folders input in browser mode with all passing tests
|
|
895
894
|
ok 7 - works for a multiple folders input in browser mode with all passing tests
|
|
896
895
|
---
|
|
897
|
-
duration_ms:
|
|
896
|
+
duration_ms: 1849.539672
|
|
898
897
|
...
|
|
899
898
|
# Trace:
|
|
900
899
|
# ERROR TEST Name: Folder Input Tests | works for a multiple folders input in browser mode with few failing tests
|
|
901
|
-
# ERROR TEST COMMAND: node cli.js tmp/
|
|
902
|
-
# Error: Command failed: node cli.js tmp/
|
|
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
|
|
903
902
|
#
|
|
904
903
|
#
|
|
905
904
|
# at execute (file:///home/izelnakri/Github/qunitx/test/helpers/shell.js:27:13)
|
|
@@ -910,32 +909,32 @@ ok 7 - File Input Tests
|
|
|
910
909
|
# Subtest: works for a multiple folders input in browser mode with few failing tests
|
|
911
910
|
ok 8 - works for a multiple folders input in browser mode with few failing tests
|
|
912
911
|
---
|
|
913
|
-
duration_ms:
|
|
912
|
+
duration_ms: 3087.106076
|
|
914
913
|
...
|
|
915
914
|
# Trace:
|
|
916
915
|
# TEST NAME: Folder Input Tests | works for a single folder input in browser mode with debug and all passing tests
|
|
917
|
-
# TEST COMMAND: node cli.js tmp/
|
|
918
|
-
# 0: \# HTTPServer [Server]: started successfully at [localhost:1234] in [
|
|
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]
|
|
919
918
|
# 1: \# QUnitX running: http://localhost:1234/
|
|
920
919
|
# 2: \# [HTTPServer] GET /favicon.ico
|
|
921
920
|
# 3: TAP version 13
|
|
922
921
|
# 4: calling assert true test case
|
|
923
|
-
# 5: ok 1
|
|
922
|
+
# 5: ok 1 ac8e1db4-38b9-4836-83e8-1581aaec1d90 | first-module-pass Passing Tests | assert true works \# (1 ms)
|
|
924
923
|
# 6: resolving async test
|
|
925
|
-
# 7:
|
|
926
|
-
# 8:
|
|
927
|
-
# 9: ok 3
|
|
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)
|
|
928
927
|
# 10: calling assert true test case
|
|
929
|
-
# 11: ok 4
|
|
928
|
+
# 11: ok 4 ac8e1db4-38b9-4836-83e8-1581aaec1d90 | second-module-pass Passing Tests | assert true works \# (1 ms)
|
|
930
929
|
# 12: {
|
|
931
930
|
# 13: moduleName: 'called resolved async test with object',
|
|
932
931
|
# 14: placeholder: 1000,
|
|
933
932
|
# 15: anotherObject: { firstName: 'Izel', createdAt: {} }
|
|
934
933
|
# 16: }
|
|
935
934
|
# 17: resolving async test
|
|
936
|
-
# 18: ok 5
|
|
937
|
-
# 19:
|
|
938
|
-
# 20:
|
|
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)
|
|
937
|
+
# 20: calling deepEqual test case
|
|
939
938
|
# 21: {
|
|
940
939
|
# 22: moduleName: 'called resolved async test with object',
|
|
941
940
|
# 23: placeholder: 1000,
|
|
@@ -947,7 +946,7 @@ ok 7 - File Input Tests
|
|
|
947
946
|
# 29: \# pass 6
|
|
948
947
|
# 30: \# skip 0
|
|
949
948
|
# 31: \# fail 0
|
|
950
|
-
# 32: \# duration
|
|
949
|
+
# 32: \# duration 1267
|
|
951
950
|
# 33:
|
|
952
951
|
# 34: \# HTTPServer [Server]: stopped successfully
|
|
953
952
|
# 35:
|
|
@@ -960,12 +959,12 @@ ok 7 - File Input Tests
|
|
|
960
959
|
# Subtest: works for a single folder input in browser mode with debug and all passing tests
|
|
961
960
|
ok 9 - works for a single folder input in browser mode with debug and all passing tests
|
|
962
961
|
---
|
|
963
|
-
duration_ms:
|
|
962
|
+
duration_ms: 2110.819749
|
|
964
963
|
...
|
|
965
964
|
# Trace:
|
|
966
965
|
# ERROR TEST Name: Folder Input Tests | works for a single folder input in browser mode with debug and few failing tests
|
|
967
|
-
# ERROR TEST COMMAND: node cli.js tmp/
|
|
968
|
-
# Error: Command failed: node cli.js tmp/
|
|
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
|
|
969
968
|
#
|
|
970
969
|
#
|
|
971
970
|
# at execute (file:///home/izelnakri/Github/qunitx/test/helpers/shell.js:27:13)
|
|
@@ -976,71 +975,72 @@ ok 7 - File Input Tests
|
|
|
976
975
|
# Subtest: works for a single folder input in browser mode with debug and few failing tests
|
|
977
976
|
ok 10 - works for a single folder input in browser mode with debug and few failing tests
|
|
978
977
|
---
|
|
979
|
-
duration_ms:
|
|
978
|
+
duration_ms: 1938.678416
|
|
980
979
|
...
|
|
981
980
|
# Trace:
|
|
982
981
|
# TEST NAME: Folder Input Tests | works for a multiple folders input in browser mode with debug and all passing tests
|
|
983
|
-
# TEST COMMAND: node cli.js tmp/
|
|
984
|
-
# 0: \# HTTPServer [Server]: started successfully at [localhost:1234] in [
|
|
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]
|
|
985
984
|
# 1: \# QUnitX running: http://localhost:1234/
|
|
986
985
|
# 2: \# [HTTPServer] GET /favicon.ico
|
|
987
986
|
# 3: TAP version 13
|
|
988
987
|
# 4: calling assert true test case
|
|
989
|
-
# 5: ok 1
|
|
988
|
+
# 5: ok 1 9df9b7d2-b08c-4ed0-943d-7e4a706defbe | first-module-pass Passing Tests | assert true works \# (2 ms)
|
|
990
989
|
# 6: resolving async test
|
|
991
|
-
# 7: ok 2
|
|
990
|
+
# 7: ok 2 9df9b7d2-b08c-4ed0-943d-7e4a706defbe | first-module-pass Passing Tests | async test finishes \# (52 ms)
|
|
992
991
|
# 8: calling deepEqual test case
|
|
993
|
-
# 9: ok 3
|
|
992
|
+
# 9: ok 3 9df9b7d2-b08c-4ed0-943d-7e4a706defbe | first-module-pass Passing Tests | deepEqual true works \# (1 ms)
|
|
994
993
|
# 10: calling assert true test case
|
|
995
|
-
# 11: ok 4
|
|
994
|
+
# 11: ok 4 9df9b7d2-b08c-4ed0-943d-7e4a706defbe | second-module-pass Passing Tests | assert true works \# (1 ms)
|
|
996
995
|
# 12: {
|
|
997
996
|
# 13: moduleName: 'called resolved async test with object',
|
|
998
997
|
# 14: placeholder: 1000,
|
|
999
998
|
# 15: anotherObject: { firstName: 'Izel', createdAt: {} }
|
|
1000
999
|
# 16: }
|
|
1001
1000
|
# 17: resolving async test
|
|
1002
|
-
# 18: ok 5
|
|
1001
|
+
# 18: ok 5 9df9b7d2-b08c-4ed0-943d-7e4a706defbe | second-module-pass Passing Tests | async test finishes \# (58 ms)
|
|
1003
1002
|
# 19: calling deepEqual test case
|
|
1004
|
-
# 20: ok 6
|
|
1003
|
+
# 20: ok 6 9df9b7d2-b08c-4ed0-943d-7e4a706defbe | second-module-pass Passing Tests | deepEqual true works \# (2 ms)
|
|
1005
1004
|
# 21: calling assert true test case
|
|
1006
|
-
# 22: ok 7
|
|
1005
|
+
# 22: ok 7 0001f6cd-4111-49b9-8149-3dbfd818c567 | first-module-pass Passing Tests | assert true works \# (2 ms)
|
|
1007
1006
|
# 23: {
|
|
1008
1007
|
# 24: moduleName: 'called resolved async test with object',
|
|
1009
1008
|
# 25: placeholder: 1000,
|
|
1010
1009
|
# 26: anotherObject: { firstName: 'Izel', createdAt: {} }
|
|
1011
1010
|
# 27: }
|
|
1012
1011
|
# 28: resolving async test
|
|
1013
|
-
# 29:
|
|
1014
|
-
# 30:
|
|
1015
|
-
# 31: ok 9
|
|
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)
|
|
1016
1015
|
# 32: calling assert true test case
|
|
1017
|
-
# 33: ok 10
|
|
1016
|
+
# 33: ok 10 0001f6cd-4111-49b9-8149-3dbfd818c567 | second-module-pass Passing Tests | assert true works \# (2 ms)
|
|
1018
1017
|
# 34: {
|
|
1019
1018
|
# 35: moduleName: 'called resolved async test with object',
|
|
1020
1019
|
# 36: placeholder: 1000,
|
|
1021
1020
|
# 37: anotherObject: { firstName: 'Izel', createdAt: {} }
|
|
1022
1021
|
# 38: }
|
|
1023
1022
|
# 39: resolving async test
|
|
1024
|
-
# 40: ok 11
|
|
1023
|
+
# 40: ok 11 0001f6cd-4111-49b9-8149-3dbfd818c567 | second-module-pass Passing Tests | async test finishes \# (58 ms)
|
|
1025
1024
|
# 41: calling deepEqual test case
|
|
1026
|
-
# 42:
|
|
1027
|
-
# 43:
|
|
1028
|
-
# 44:
|
|
1029
|
-
# 45:
|
|
1030
|
-
# 46: }
|
|
1031
|
-
# 47:
|
|
1025
|
+
# 42: ok 12 0001f6cd-4111-49b9-8149-3dbfd818c567 | second-module-pass Passing Tests | deepEqual true works \# (3 ms)
|
|
1026
|
+
# 43: {
|
|
1027
|
+
# 44: moduleName: 'called resolved async test with object',
|
|
1028
|
+
# 45: placeholder: 1000,
|
|
1029
|
+
# 46: anotherObject: { firstName: 'Izel', createdAt: {} }
|
|
1030
|
+
# 47: }
|
|
1032
1031
|
# 48:
|
|
1033
1032
|
# 49: 1
|
|
1034
1033
|
# 50: \# tests 12
|
|
1035
1034
|
# 51: \# pass 12
|
|
1036
1035
|
# 52: \# skip 0
|
|
1037
1036
|
# 53: \# fail 0
|
|
1038
|
-
# 54: \# duration
|
|
1037
|
+
# 54: \# duration 841
|
|
1039
1038
|
# 55:
|
|
1040
1039
|
# 56: \# HTTPServer [Server]: stopped successfully
|
|
1041
1040
|
# 57:
|
|
1042
1041
|
#
|
|
1043
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)
|
|
1044
1044
|
# at async file:///home/izelnakri/Github/qunitx/test/inputs/folder-test.js:161:24
|
|
1045
1045
|
# at async TestContext.<anonymous> (file:///home/izelnakri/Github/qunitx/shims/nodejs.js:21:12)
|
|
1046
1046
|
# at async Test.run (node:internal/test_runner/test:569:9)
|
|
@@ -1048,12 +1048,12 @@ ok 7 - File Input Tests
|
|
|
1048
1048
|
# Subtest: works for a multiple folders input in browser mode with debug and all passing tests
|
|
1049
1049
|
ok 11 - works for a multiple folders input in browser mode with debug and all passing tests
|
|
1050
1050
|
---
|
|
1051
|
-
duration_ms:
|
|
1051
|
+
duration_ms: 1769.424883
|
|
1052
1052
|
...
|
|
1053
1053
|
# Trace:
|
|
1054
1054
|
# ERROR TEST Name: Folder Input Tests | works for a multiple folders input in browser mode with debug and few failing tests
|
|
1055
|
-
# ERROR TEST COMMAND: node cli.js tmp/
|
|
1056
|
-
# Error: Command failed: node cli.js tmp/
|
|
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
|
|
1057
1057
|
#
|
|
1058
1058
|
#
|
|
1059
1059
|
# at execute (file:///home/izelnakri/Github/qunitx/test/helpers/shell.js:27:13)
|
|
@@ -1064,24 +1064,24 @@ ok 7 - File Input Tests
|
|
|
1064
1064
|
# Subtest: works for a multiple folders input in browser mode with debug and few failing tests
|
|
1065
1065
|
ok 12 - works for a multiple folders input in browser mode with debug and few failing tests
|
|
1066
1066
|
---
|
|
1067
|
-
duration_ms:
|
|
1067
|
+
duration_ms: 2748.899619
|
|
1068
1068
|
...
|
|
1069
1069
|
1..12
|
|
1070
1070
|
ok 8 - Folder Input Tests
|
|
1071
1071
|
---
|
|
1072
|
-
duration_ms:
|
|
1072
|
+
duration_ms: 20843.374384
|
|
1073
1073
|
type: 'suite'
|
|
1074
1074
|
...
|
|
1075
1075
|
# Subtest: Setup | glob(*) input tests | test-file-paths tests
|
|
1076
1076
|
# Subtest: setupTestFilePaths() works correctly on different inputs
|
|
1077
1077
|
ok 1 - setupTestFilePaths() works correctly on different inputs
|
|
1078
1078
|
---
|
|
1079
|
-
duration_ms:
|
|
1079
|
+
duration_ms: 18.520909
|
|
1080
1080
|
...
|
|
1081
1081
|
1..1
|
|
1082
1082
|
ok 9 - Setup | glob(*) input tests | test-file-paths tests
|
|
1083
1083
|
---
|
|
1084
|
-
duration_ms:
|
|
1084
|
+
duration_ms: 21.955897
|
|
1085
1085
|
type: 'suite'
|
|
1086
1086
|
...
|
|
1087
1087
|
1..9
|
|
@@ -1092,4 +1092,4 @@ ok 9 - Setup | glob(*) input tests | test-file-paths tests
|
|
|
1092
1092
|
# cancelled 0
|
|
1093
1093
|
# skipped 0
|
|
1094
1094
|
# todo 0
|
|
1095
|
-
# duration_ms
|
|
1095
|
+
# duration_ms 37045.898117
|