testeranto 0.167.0 → 0.172.0
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/dist/common/src/NavBar.js +45 -0
- package/dist/common/src/PM/main.js +81 -59
- package/dist/common/src/Pure.js +16 -14
- package/dist/common/src/ReportServer.js +48 -5
- package/dist/common/src/Web.js +35 -20
- package/dist/common/src/components/SunriseAnimation.test/implementation.js +1 -0
- package/dist/common/src/components/SunriseAnimation.test/index.js +1 -0
- package/dist/common/src/components/SunriseAnimation.test/interface.js +1 -0
- package/dist/common/src/components/SunriseAnimation.test/specification.js +1 -0
- package/dist/common/src/components/TestStatusBadge.js +55 -0
- package/dist/common/src/components/pure/ProjectPageView.js +204 -0
- package/dist/common/src/components/pure/ProjectPageView.test/adapter.js +20 -0
- package/dist/common/src/components/pure/ProjectPageView.test/implementation.js +71 -0
- package/dist/common/src/components/pure/ProjectPageView.test/index.js +10 -0
- package/dist/common/src/components/pure/ProjectPageView.test/specification.js +19 -0
- package/dist/common/src/components/pure/ProjectPageView.test/types.js +2 -0
- package/dist/common/src/lib/BaseSuite.js +3 -3
- package/dist/common/src/lib/BaseSuite.test/test.js +1 -1
- package/dist/common/src/lib/abstractBase.js +41 -14
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +1 -1
- package/dist/common/src/lib/pmProxy.js +185 -64
- package/dist/common/testeranto.config.js +6 -0
- package/dist/common/tsconfig.common.tsbuildinfo +1 -1
- package/dist/module/src/App.js +3 -3
- package/dist/module/src/PM/main.js +81 -59
- package/dist/module/src/ProjectsPage.js +1 -110
- package/dist/module/src/Pure.js +16 -14
- package/dist/module/src/ReportServer.js +48 -5
- package/dist/module/src/TestPage.js +45 -16
- package/dist/module/src/Web.js +35 -20
- package/dist/module/src/components/SunriseAnimation.test/implementation.js +1 -0
- package/dist/module/src/components/SunriseAnimation.test/index.js +1 -0
- package/dist/module/src/components/SunriseAnimation.test/interface.js +1 -0
- package/dist/module/src/components/SunriseAnimation.test/specification.js +1 -0
- package/dist/module/src/components/pure/ProjectPageView.js +197 -0
- package/dist/module/src/components/pure/ProjectPageView.test/adapter.js +17 -0
- package/dist/module/src/components/pure/ProjectPageView.test/implementation.js +68 -0
- package/dist/module/src/components/pure/ProjectPageView.test/index.js +5 -0
- package/dist/module/src/components/pure/ProjectPageView.test/specification.js +15 -0
- package/dist/module/src/components/pure/ProjectPageView.test/types.js +1 -0
- package/dist/module/src/components/pure/ProjectsPageView.js +58 -0
- package/dist/module/src/components/pure/TestPageView.js +136 -0
- package/dist/module/src/components/stateful/ProjectPage.js +63 -0
- package/dist/module/src/components/stateful/ProjectsPage.js +55 -0
- package/dist/module/src/components/stateful/TestPage.js +82 -0
- package/dist/module/src/lib/BaseSuite.js +3 -3
- package/dist/module/src/lib/BaseSuite.test/test.js +1 -1
- package/dist/module/src/lib/abstractBase.js +41 -14
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +1 -1
- package/dist/module/src/lib/pmProxy.js +185 -64
- package/dist/module/testeranto.config.js +6 -0
- package/dist/module/tsconfig.module.tsbuildinfo +1 -1
- package/dist/prebuild/App.css +13 -9
- package/dist/prebuild/App.js +600 -551
- package/dist/prebuild/ReportServer.mjs +44 -4
- package/dist/prebuild/run.mjs +67 -39
- package/dist/types/src/NavBar.d.ts +19 -0
- package/dist/types/src/PM/index.d.ts +3 -1
- package/dist/types/src/PM/main.d.ts +0 -4
- package/dist/types/src/PM/node.d.ts +2 -2
- package/dist/types/src/components/SunriseAnimation.test/interface.d.ts +0 -0
- package/dist/types/src/components/SunriseAnimation.test/specification.d.ts +0 -0
- package/dist/types/src/components/TestStatusBadge.d.ts +15 -0
- package/dist/types/src/components/pure/ProjectPageView.d.ts +14 -0
- package/dist/types/src/components/pure/ProjectPageView.test/adapter.d.ts +3 -0
- package/dist/types/src/components/pure/ProjectPageView.test/implementation.d.ts +3 -0
- package/dist/types/src/components/pure/ProjectPageView.test/index.d.ts +2 -0
- package/dist/types/src/components/pure/ProjectPageView.test/specification.d.ts +3 -0
- package/dist/types/src/components/pure/ProjectPageView.test/types.d.ts +39 -0
- package/dist/types/src/lib/BaseSuite.d.ts +2 -0
- package/dist/types/src/lib/abstractBase.d.ts +12 -0
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +5 -3
- package/src/App.tsx +5 -9
- package/src/PM/index.ts +1 -1
- package/src/PM/main.ts +87 -82
- package/src/PM/node.ts +2 -2
- package/src/ProjectsPage.tsx +1 -164
- package/src/Pure.ts +16 -16
- package/src/ReportServer.ts +49 -6
- package/src/TestPage.tsx +78 -5
- package/src/Web.ts +35 -35
- package/src/components/SunriseAnimation.test/implementation.ts +0 -0
- package/src/components/SunriseAnimation.test/index.ts +0 -0
- package/src/components/SunriseAnimation.test/interface.ts +0 -0
- package/src/components/SunriseAnimation.test/specification.ts +0 -0
- package/src/components/pure/ProjectPageView.test/adapter.ts +21 -0
- package/src/components/pure/ProjectPageView.test/implementation.tsx +84 -0
- package/src/components/pure/ProjectPageView.test/index.ts +8 -0
- package/src/components/pure/ProjectPageView.test/specification.ts +31 -0
- package/src/components/pure/ProjectPageView.test/types.ts +55 -0
- package/src/components/pure/ProjectPageView.tsx +332 -0
- package/src/components/pure/ProjectsPageView.tsx +99 -0
- package/src/components/pure/TestPageView.tsx +278 -0
- package/src/components/stateful/ProjectPage.tsx +83 -0
- package/src/components/stateful/ProjectsPage.tsx +73 -0
- package/src/components/stateful/TestPage.tsx +107 -0
- package/src/lib/BaseSuite.test/test.ts +1 -1
- package/src/lib/BaseSuite.ts +9 -4
- package/src/lib/abstractBase.ts +45 -14
- package/src/lib/baseBuilder.test/baseBuilder.test.adapter.ts +1 -1
- package/src/lib/pmProxy.ts +184 -87
- package/testeranto/App.css +13 -9
- package/testeranto/App.js +600 -551
- package/testeranto/bundles/node/allTests/{chunk-4ONUZRZ4.mjs → chunk-3EUGBAOM.mjs} +1 -1
- package/testeranto/bundles/node/allTests/{chunk-IDCUSTSM.mjs → chunk-E75CSRER.mjs} +246 -115
- package/testeranto/bundles/node/allTests/{chunk-NQEP7SN4.mjs → chunk-M6DO7VMB.mjs} +1 -1
- package/testeranto/bundles/node/allTests/metafile.json +37 -37
- package/testeranto/bundles/node/allTests/src/lib/BaseSuite.test/node.test.mjs +4 -4
- package/testeranto/bundles/node/allTests/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +3 -3
- package/testeranto/bundles/node/allTests/src/lib/classBuilder.test/classBuilder.test.mjs +3 -3
- package/testeranto/bundles/node/allTests/src/lib/core.test/core.test.mjs +2 -17
- package/testeranto/bundles/node/allTests/src/lib/pmProxy.test/index.mjs +354 -252
- package/testeranto/bundles/pure/allTests/{chunk-5SBJWHSZ.mjs → chunk-KHDVEHF7.mjs} +2 -17
- package/testeranto/bundles/pure/allTests/{chunk-4ULDTZFU.mjs → chunk-VMUSFSZM.mjs} +246 -115
- package/testeranto/bundles/pure/allTests/metafile.json +72 -42
- package/testeranto/bundles/pure/allTests/src/Pure.test.mjs +2 -2
- package/testeranto/bundles/pure/allTests/src/lib/BaseSuite.test/pure.test.mjs +3 -3
- package/testeranto/bundles/pure/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +2 -29
- package/testeranto/bundles/web/allTests/chunk-HPYA4YZC.mjs +2283 -0
- package/testeranto/bundles/web/allTests/{chunk-46E6YGGN.mjs → chunk-U7AW26HL.mjs} +292 -142
- package/testeranto/bundles/web/allTests/metafile.json +22 -943
- package/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.html +19 -0
- package/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs +37524 -0
- package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs +20 -2
- package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +26 -2
- package/testeranto/reports/allTests/config.json +8 -0
- package/testeranto/reports/allTests/src/Pure.test/pure/type_errors.txt +9 -3
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/bdd_errors.txt +1 -0
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +13 -0
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/logs.txt +50 -0
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/message.txt +2 -0
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/prompt.txt +17 -0
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/tests.json +32 -0
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +68 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/logs.txt +22 -39
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/tests.json +6 -3
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/type_errors.txt +8 -1
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/tests.json +6 -3
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +9 -3
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/logs.txt +66 -55
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/prompt.txt +2 -2
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/tests.json +6 -3
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/type_errors.txt +10 -5
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/logs.txt +16 -48
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +18 -9
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +8 -1
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +10 -5
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/logs.txt +62 -33
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +2 -2
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +18 -9
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +10 -5
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/logs.txt +37 -50
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/tests.json +36 -18
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt +8 -1
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/logs.txt +2 -2
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/type_errors.txt +9 -3
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/logs.txt +28 -43
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/tests.json +28 -14
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/type_errors.txt +8 -1
- package/testeranto/reports/allTests/summary.json +15 -8
- package/testeranto/reportsnode_build_errors +20 -0
- package/testeranto/reportspure_build_errors +343 -0
- package/testeranto/reportsweb_build_errors +25 -0
- package/testeranto.config.ts +7 -0
- package/tsc.log +100 -26
- package/dist/tsconfig.tsbuildinfo +0 -1
- package/testeranto/bundles/node/allTests/chunk-FFBRDUBH.mjs +0 -677
- package/testeranto/bundles/node/allTests/chunk-H2IBV7SY.mjs +0 -113
- package/testeranto/bundles/node/allTests/chunk-ZHOULXPN.mjs +0 -252
- package/testeranto/bundles/pure/allTests/chunk-CSMXYJ65.mjs +0 -200
- package/testeranto/bundles/pure/allTests/chunk-QK4IXLF6.mjs +0 -674
- package/testeranto/bundles/web/allTests/chunk-TU3MJSSI.mjs +0 -855
- package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test/manifest.json +0 -1
- package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/manifest.json +0 -1
- package/testeranto/reports/allTests/src/Pure.test/pure/manifest.json +0 -1
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/manifest.json +0 -1
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/manifest.json +0 -1
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/manifest.json +0 -1
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/manifest.json +0 -1
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/manifest.json +0 -1
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/manifest.json +0 -1
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/manifest.json +0 -1
- /package/{testeranto/reports/allTests/src/Pure.test/pure/logs.txt → dist/types/src/components/SunriseAnimation.test/implementation.d.ts} +0 -0
- /package/{testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/logs.txt → dist/types/src/components/SunriseAnimation.test/index.d.ts} +0 -0
|
@@ -23,21 +23,6 @@
|
|
|
23
23
|
"pluginName": "console-detector",
|
|
24
24
|
"text": "call of \"console.debug\" was detected, which is not supported in the pure runtime."
|
|
25
25
|
},
|
|
26
|
-
{
|
|
27
|
-
"id": "",
|
|
28
|
-
"location": {
|
|
29
|
-
"column": 7,
|
|
30
|
-
"file": "src/Pure.ts",
|
|
31
|
-
"length": 16,
|
|
32
|
-
"line": 13,
|
|
33
|
-
"lineText": "} from \"./lib/index.js\";",
|
|
34
|
-
"namespace": "",
|
|
35
|
-
"suggestion": ""
|
|
36
|
-
},
|
|
37
|
-
"notes": [],
|
|
38
|
-
"pluginName": "console-detector",
|
|
39
|
-
"text": "call of \"console.error\" was detected, which is not supported in the pure runtime."
|
|
40
|
-
},
|
|
41
26
|
{
|
|
42
27
|
"id": "",
|
|
43
28
|
"location": {
|
|
@@ -68,6 +53,21 @@
|
|
|
68
53
|
"pluginName": "console-detector",
|
|
69
54
|
"text": "call of \"console.log\" was detected, which is not supported in the pure runtime."
|
|
70
55
|
},
|
|
56
|
+
{
|
|
57
|
+
"id": "",
|
|
58
|
+
"location": {
|
|
59
|
+
"column": 7,
|
|
60
|
+
"file": "src/Web.ts",
|
|
61
|
+
"length": 16,
|
|
62
|
+
"line": 18,
|
|
63
|
+
"lineText": "} from \"./lib/index.js\";",
|
|
64
|
+
"namespace": "",
|
|
65
|
+
"suggestion": ""
|
|
66
|
+
},
|
|
67
|
+
"notes": [],
|
|
68
|
+
"pluginName": "console-detector",
|
|
69
|
+
"text": "call of \"console.error\" was detected, which is not supported in the pure runtime."
|
|
70
|
+
},
|
|
71
71
|
{
|
|
72
72
|
"id": "",
|
|
73
73
|
"location": {
|
|
@@ -203,6 +203,36 @@
|
|
|
203
203
|
"pluginName": "console-detector",
|
|
204
204
|
"text": "call of \"console.log\" was detected, which is not supported in the pure runtime."
|
|
205
205
|
},
|
|
206
|
+
{
|
|
207
|
+
"id": "",
|
|
208
|
+
"location": {
|
|
209
|
+
"column": 46,
|
|
210
|
+
"file": "src/lib/BaseSuite.ts",
|
|
211
|
+
"length": 11,
|
|
212
|
+
"line": 5,
|
|
213
|
+
"lineText": "import { beforeAllProxy, afterAllProxy } from \"./pmProxy\";",
|
|
214
|
+
"namespace": "",
|
|
215
|
+
"suggestion": ""
|
|
216
|
+
},
|
|
217
|
+
"notes": [],
|
|
218
|
+
"pluginName": "console-detector",
|
|
219
|
+
"text": "call of \"console.log\" was detected, which is not supported in the pure runtime."
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"id": "",
|
|
223
|
+
"location": {
|
|
224
|
+
"column": 46,
|
|
225
|
+
"file": "src/lib/BaseSuite.ts",
|
|
226
|
+
"length": 11,
|
|
227
|
+
"line": 5,
|
|
228
|
+
"lineText": "import { beforeAllProxy, afterAllProxy } from \"./pmProxy\";",
|
|
229
|
+
"namespace": "",
|
|
230
|
+
"suggestion": ""
|
|
231
|
+
},
|
|
232
|
+
"notes": [],
|
|
233
|
+
"pluginName": "console-detector",
|
|
234
|
+
"text": "call of \"console.warn\" was detected, which is not supported in the pure runtime."
|
|
235
|
+
},
|
|
206
236
|
{
|
|
207
237
|
"id": "",
|
|
208
238
|
"location": {
|
|
@@ -338,7 +368,7 @@
|
|
|
338
368
|
"format": "esm"
|
|
339
369
|
},
|
|
340
370
|
"src/lib/pmProxy.ts": {
|
|
341
|
-
"bytes":
|
|
371
|
+
"bytes": 7280,
|
|
342
372
|
"imports": [
|
|
343
373
|
{
|
|
344
374
|
"path": "./types",
|
|
@@ -349,7 +379,7 @@
|
|
|
349
379
|
"format": "esm"
|
|
350
380
|
},
|
|
351
381
|
"src/lib/abstractBase.ts": {
|
|
352
|
-
"bytes":
|
|
382
|
+
"bytes": 7465,
|
|
353
383
|
"imports": [
|
|
354
384
|
{
|
|
355
385
|
"path": ".",
|
|
@@ -427,7 +457,7 @@
|
|
|
427
457
|
"format": "esm"
|
|
428
458
|
},
|
|
429
459
|
"src/lib/BaseSuite.ts": {
|
|
430
|
-
"bytes":
|
|
460
|
+
"bytes": 3863,
|
|
431
461
|
"imports": [
|
|
432
462
|
{
|
|
433
463
|
"path": ".",
|
|
@@ -489,7 +519,7 @@
|
|
|
489
519
|
"format": "esm"
|
|
490
520
|
},
|
|
491
521
|
"src/PM/index.ts": {
|
|
492
|
-
"bytes":
|
|
522
|
+
"bytes": 1837,
|
|
493
523
|
"imports": [
|
|
494
524
|
{
|
|
495
525
|
"path": "puppeteer-core",
|
|
@@ -536,7 +566,7 @@
|
|
|
536
566
|
"format": "esm"
|
|
537
567
|
},
|
|
538
568
|
"src/Pure.ts": {
|
|
539
|
-
"bytes":
|
|
569
|
+
"bytes": 2643,
|
|
540
570
|
"imports": [
|
|
541
571
|
{
|
|
542
572
|
"path": "./CoreTypes.js",
|
|
@@ -588,7 +618,7 @@
|
|
|
588
618
|
"format": "esm"
|
|
589
619
|
},
|
|
590
620
|
"src/lib/BaseSuite.test/test.ts": {
|
|
591
|
-
"bytes":
|
|
621
|
+
"bytes": 12580,
|
|
592
622
|
"imports": [
|
|
593
623
|
{
|
|
594
624
|
"path": "..",
|
|
@@ -718,7 +748,7 @@
|
|
|
718
748
|
"format": "esm"
|
|
719
749
|
},
|
|
720
750
|
"src/Web.ts": {
|
|
721
|
-
"bytes":
|
|
751
|
+
"bytes": 2958,
|
|
722
752
|
"imports": [
|
|
723
753
|
{
|
|
724
754
|
"path": "./CoreTypes",
|
|
@@ -817,7 +847,7 @@
|
|
|
817
847
|
"format": "esm"
|
|
818
848
|
},
|
|
819
849
|
"src/lib/baseBuilder.test/baseBuilder.test.adapter.ts": {
|
|
820
|
-
"bytes":
|
|
850
|
+
"bytes": 890,
|
|
821
851
|
"imports": [
|
|
822
852
|
{
|
|
823
853
|
"path": "../../CoreTypes",
|
|
@@ -873,11 +903,11 @@
|
|
|
873
903
|
"testeranto/bundles/pure/allTests/src/lib/BaseSuite.test/pure.test.mjs": {
|
|
874
904
|
"imports": [
|
|
875
905
|
{
|
|
876
|
-
"path": "testeranto/bundles/pure/allTests/chunk-
|
|
906
|
+
"path": "testeranto/bundles/pure/allTests/chunk-KHDVEHF7.mjs",
|
|
877
907
|
"kind": "import-statement"
|
|
878
908
|
},
|
|
879
909
|
{
|
|
880
|
-
"path": "testeranto/bundles/pure/allTests/chunk-
|
|
910
|
+
"path": "testeranto/bundles/pure/allTests/chunk-VMUSFSZM.mjs",
|
|
881
911
|
"kind": "import-statement"
|
|
882
912
|
}
|
|
883
913
|
],
|
|
@@ -890,22 +920,22 @@
|
|
|
890
920
|
"bytesInOutput": 2763
|
|
891
921
|
},
|
|
892
922
|
"src/lib/BaseSuite.test/test.ts": {
|
|
893
|
-
"bytesInOutput":
|
|
923
|
+
"bytesInOutput": 8593
|
|
894
924
|
},
|
|
895
925
|
"src/lib/BaseSuite.test/pure.test.ts": {
|
|
896
926
|
"bytesInOutput": 103
|
|
897
927
|
}
|
|
898
928
|
},
|
|
899
|
-
"bytes":
|
|
929
|
+
"bytes": 11857
|
|
900
930
|
},
|
|
901
931
|
"testeranto/bundles/pure/allTests/src/Pure.test.mjs": {
|
|
902
932
|
"imports": [
|
|
903
933
|
{
|
|
904
|
-
"path": "testeranto/bundles/pure/allTests/chunk-
|
|
934
|
+
"path": "testeranto/bundles/pure/allTests/chunk-KHDVEHF7.mjs",
|
|
905
935
|
"kind": "import-statement"
|
|
906
936
|
},
|
|
907
937
|
{
|
|
908
|
-
"path": "testeranto/bundles/pure/allTests/chunk-
|
|
938
|
+
"path": "testeranto/bundles/pure/allTests/chunk-VMUSFSZM.mjs",
|
|
909
939
|
"kind": "import-statement"
|
|
910
940
|
}
|
|
911
941
|
],
|
|
@@ -923,10 +953,10 @@
|
|
|
923
953
|
},
|
|
924
954
|
"bytes": 12189
|
|
925
955
|
},
|
|
926
|
-
"testeranto/bundles/pure/allTests/chunk-
|
|
956
|
+
"testeranto/bundles/pure/allTests/chunk-KHDVEHF7.mjs": {
|
|
927
957
|
"imports": [
|
|
928
958
|
{
|
|
929
|
-
"path": "testeranto/bundles/pure/allTests/chunk-
|
|
959
|
+
"path": "testeranto/bundles/pure/allTests/chunk-VMUSFSZM.mjs",
|
|
930
960
|
"kind": "import-statement"
|
|
931
961
|
}
|
|
932
962
|
],
|
|
@@ -938,15 +968,15 @@
|
|
|
938
968
|
"bytesInOutput": 3131
|
|
939
969
|
},
|
|
940
970
|
"src/Pure.ts": {
|
|
941
|
-
"bytesInOutput":
|
|
971
|
+
"bytesInOutput": 1311
|
|
942
972
|
}
|
|
943
973
|
},
|
|
944
|
-
"bytes":
|
|
974
|
+
"bytes": 4689
|
|
945
975
|
},
|
|
946
976
|
"testeranto/bundles/pure/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs": {
|
|
947
977
|
"imports": [
|
|
948
978
|
{
|
|
949
|
-
"path": "testeranto/bundles/pure/allTests/chunk-
|
|
979
|
+
"path": "testeranto/bundles/pure/allTests/chunk-VMUSFSZM.mjs",
|
|
950
980
|
"kind": "import-statement"
|
|
951
981
|
}
|
|
952
982
|
],
|
|
@@ -959,7 +989,7 @@
|
|
|
959
989
|
"bytesInOutput": 3059
|
|
960
990
|
},
|
|
961
991
|
"src/Web.ts": {
|
|
962
|
-
"bytesInOutput":
|
|
992
|
+
"bytesInOutput": 795
|
|
963
993
|
},
|
|
964
994
|
"src/lib/baseBuilder.test/baseBuilder.test.specification.ts": {
|
|
965
995
|
"bytesInOutput": 708
|
|
@@ -971,15 +1001,15 @@
|
|
|
971
1001
|
"bytesInOutput": 3065
|
|
972
1002
|
},
|
|
973
1003
|
"src/lib/baseBuilder.test/baseBuilder.test.adapter.ts": {
|
|
974
|
-
"bytesInOutput":
|
|
1004
|
+
"bytesInOutput": 653
|
|
975
1005
|
},
|
|
976
1006
|
"src/lib/baseBuilder.test/baseBuilder.test.pure.ts": {
|
|
977
1007
|
"bytesInOutput": 130
|
|
978
1008
|
}
|
|
979
1009
|
},
|
|
980
|
-
"bytes":
|
|
1010
|
+
"bytes": 9902
|
|
981
1011
|
},
|
|
982
|
-
"testeranto/bundles/pure/allTests/chunk-
|
|
1012
|
+
"testeranto/bundles/pure/allTests/chunk-VMUSFSZM.mjs": {
|
|
983
1013
|
"imports": [],
|
|
984
1014
|
"exports": [
|
|
985
1015
|
"BaseBuilder",
|
|
@@ -993,10 +1023,10 @@
|
|
|
993
1023
|
],
|
|
994
1024
|
"inputs": {
|
|
995
1025
|
"src/lib/pmProxy.ts": {
|
|
996
|
-
"bytesInOutput":
|
|
1026
|
+
"bytesInOutput": 5758
|
|
997
1027
|
},
|
|
998
1028
|
"src/lib/BaseSuite.ts": {
|
|
999
|
-
"bytesInOutput":
|
|
1029
|
+
"bytesInOutput": 2484
|
|
1000
1030
|
},
|
|
1001
1031
|
"src/lib/index.ts": {
|
|
1002
1032
|
"bytesInOutput": 656
|
|
@@ -1005,7 +1035,7 @@
|
|
|
1005
1035
|
"bytesInOutput": 2341
|
|
1006
1036
|
},
|
|
1007
1037
|
"src/lib/abstractBase.ts": {
|
|
1008
|
-
"bytesInOutput":
|
|
1038
|
+
"bytesInOutput": 4973
|
|
1009
1039
|
},
|
|
1010
1040
|
"src/lib/classBuilder.ts": {
|
|
1011
1041
|
"bytesInOutput": 1850
|
|
@@ -1017,7 +1047,7 @@
|
|
|
1017
1047
|
"bytesInOutput": 20
|
|
1018
1048
|
}
|
|
1019
1049
|
},
|
|
1020
|
-
"bytes":
|
|
1050
|
+
"bytes": 20323
|
|
1021
1051
|
}
|
|
1022
1052
|
}
|
|
1023
1053
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { createRequire } from 'module';const require = createRequire(import.meta.url);
|
|
2
2
|
import {
|
|
3
3
|
Pure_default
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-
|
|
4
|
+
} from "../chunk-KHDVEHF7.mjs";
|
|
5
|
+
import "../chunk-VMUSFSZM.mjs";
|
|
6
6
|
|
|
7
7
|
// src/lib/pmProxy.test/mockPMBase.ts
|
|
8
8
|
var MockPMBase = class {
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { createRequire } from 'module';const require = createRequire(import.meta.url);
|
|
2
2
|
import {
|
|
3
3
|
Pure_default
|
|
4
|
-
} from "../../../chunk-
|
|
4
|
+
} from "../../../chunk-KHDVEHF7.mjs";
|
|
5
5
|
import {
|
|
6
6
|
BaseGiven,
|
|
7
7
|
BaseSuite,
|
|
8
8
|
BaseThen,
|
|
9
9
|
BaseWhen
|
|
10
|
-
} from "../../../chunk-
|
|
10
|
+
} from "../../../chunk-VMUSFSZM.mjs";
|
|
11
11
|
|
|
12
12
|
// src/lib/BaseSuite.test/mock.ts
|
|
13
13
|
var MockGiven = class extends BaseGiven {
|
|
@@ -401,7 +401,7 @@ var testAdapter = {
|
|
|
401
401
|
}
|
|
402
402
|
return result;
|
|
403
403
|
} catch (e) {
|
|
404
|
-
console.error("Then error:", e);
|
|
404
|
+
console.error("Then error:", e.toString());
|
|
405
405
|
console.error("Full store state:", JSON.stringify(store, null, 2));
|
|
406
406
|
throw e;
|
|
407
407
|
}
|
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
PM,
|
|
5
5
|
TesterantoCore,
|
|
6
6
|
defaultTestResourceRequirement
|
|
7
|
-
} from "../../../chunk-
|
|
7
|
+
} from "../../../chunk-VMUSFSZM.mjs";
|
|
8
8
|
|
|
9
9
|
// src/PM/web.ts
|
|
10
10
|
var PM_Web = class extends PM {
|
|
@@ -136,11 +136,6 @@ var PM_Web = class extends PM {
|
|
|
136
136
|
};
|
|
137
137
|
|
|
138
138
|
// src/Web.ts
|
|
139
|
-
var errorCallback = (e) => {
|
|
140
|
-
};
|
|
141
|
-
var unhandledrejectionCallback = (event) => {
|
|
142
|
-
console.log("window.addEventListener unhandledrejection", event);
|
|
143
|
-
};
|
|
144
139
|
var WebTesteranto = class extends TesterantoCore {
|
|
145
140
|
constructor(input, testSpecification, testImplementation, testResourceRequirement, testAdapter2) {
|
|
146
141
|
super(
|
|
@@ -150,28 +145,6 @@ var WebTesteranto = class extends TesterantoCore {
|
|
|
150
145
|
testResourceRequirement,
|
|
151
146
|
testAdapter2,
|
|
152
147
|
(cb) => {
|
|
153
|
-
window.removeEventListener("error", errorCallback);
|
|
154
|
-
errorCallback = (e) => {
|
|
155
|
-
console.log("window.addEventListener error", e);
|
|
156
|
-
cb(e);
|
|
157
|
-
};
|
|
158
|
-
window.addEventListener("error", errorCallback);
|
|
159
|
-
window.removeEventListener(
|
|
160
|
-
"unhandledrejection",
|
|
161
|
-
unhandledrejectionCallback
|
|
162
|
-
);
|
|
163
|
-
window.removeEventListener(
|
|
164
|
-
"unhandledrejection",
|
|
165
|
-
unhandledrejectionCallback
|
|
166
|
-
);
|
|
167
|
-
unhandledrejectionCallback = (event) => {
|
|
168
|
-
console.log("window.addEventListener unhandledrejection", event);
|
|
169
|
-
cb({ error: event.reason.message });
|
|
170
|
-
};
|
|
171
|
-
window.addEventListener(
|
|
172
|
-
"unhandledrejection",
|
|
173
|
-
unhandledrejectionCallback
|
|
174
|
-
);
|
|
175
148
|
}
|
|
176
149
|
);
|
|
177
150
|
}
|
|
@@ -381,7 +354,7 @@ var testAdapter = {
|
|
|
381
354
|
initialValues
|
|
382
355
|
});
|
|
383
356
|
const result = initializer();
|
|
384
|
-
console.log("Initialization result:", result);
|
|
357
|
+
console.log("Initialization result:", result.toString());
|
|
385
358
|
return result;
|
|
386
359
|
},
|
|
387
360
|
andWhen: async (store, whenCB, testResource, utils) => {
|