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
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"format": "esm"
|
|
46
46
|
},
|
|
47
47
|
"src/lib/pmProxy.ts": {
|
|
48
|
-
"bytes":
|
|
48
|
+
"bytes": 7280,
|
|
49
49
|
"imports": [
|
|
50
50
|
{
|
|
51
51
|
"path": "./types",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"format": "esm"
|
|
57
57
|
},
|
|
58
58
|
"src/lib/abstractBase.ts": {
|
|
59
|
-
"bytes":
|
|
59
|
+
"bytes": 7465,
|
|
60
60
|
"imports": [
|
|
61
61
|
{
|
|
62
62
|
"path": ".",
|
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
"format": "esm"
|
|
135
135
|
},
|
|
136
136
|
"src/lib/BaseSuite.ts": {
|
|
137
|
-
"bytes":
|
|
137
|
+
"bytes": 3863,
|
|
138
138
|
"imports": [
|
|
139
139
|
{
|
|
140
140
|
"path": ".",
|
|
@@ -196,7 +196,7 @@
|
|
|
196
196
|
"format": "esm"
|
|
197
197
|
},
|
|
198
198
|
"src/PM/index.ts": {
|
|
199
|
-
"bytes":
|
|
199
|
+
"bytes": 1837,
|
|
200
200
|
"imports": [
|
|
201
201
|
{
|
|
202
202
|
"path": "puppeteer-core",
|
|
@@ -217,7 +217,7 @@
|
|
|
217
217
|
"format": "esm"
|
|
218
218
|
},
|
|
219
219
|
"src/PM/node.ts": {
|
|
220
|
-
"bytes":
|
|
220
|
+
"bytes": 6955,
|
|
221
221
|
"imports": [
|
|
222
222
|
{
|
|
223
223
|
"path": "net",
|
|
@@ -310,7 +310,7 @@
|
|
|
310
310
|
"format": "esm"
|
|
311
311
|
},
|
|
312
312
|
"src/lib/BaseSuite.test/test.ts": {
|
|
313
|
-
"bytes":
|
|
313
|
+
"bytes": 12580,
|
|
314
314
|
"imports": [
|
|
315
315
|
{
|
|
316
316
|
"path": "..",
|
|
@@ -430,7 +430,7 @@
|
|
|
430
430
|
"format": "esm"
|
|
431
431
|
},
|
|
432
432
|
"node_modules/chai/chai.js": {
|
|
433
|
-
"bytes":
|
|
433
|
+
"bytes": 143246,
|
|
434
434
|
"imports": [],
|
|
435
435
|
"format": "esm"
|
|
436
436
|
},
|
|
@@ -533,7 +533,7 @@
|
|
|
533
533
|
"format": "esm"
|
|
534
534
|
},
|
|
535
535
|
"src/Pure.ts": {
|
|
536
|
-
"bytes":
|
|
536
|
+
"bytes": 2643,
|
|
537
537
|
"imports": [
|
|
538
538
|
{
|
|
539
539
|
"path": "./CoreTypes.js",
|
|
@@ -902,7 +902,7 @@
|
|
|
902
902
|
"format": "esm"
|
|
903
903
|
},
|
|
904
904
|
"src/lib/baseBuilder.test/baseBuilder.test.adapter.ts": {
|
|
905
|
-
"bytes":
|
|
905
|
+
"bytes": 890,
|
|
906
906
|
"imports": [
|
|
907
907
|
{
|
|
908
908
|
"path": "../../CoreTypes",
|
|
@@ -958,15 +958,15 @@
|
|
|
958
958
|
"testeranto/bundles/node/allTests/src/lib/BaseSuite.test/node.test.mjs": {
|
|
959
959
|
"imports": [
|
|
960
960
|
{
|
|
961
|
-
"path": "testeranto/bundles/node/allTests/chunk-
|
|
961
|
+
"path": "testeranto/bundles/node/allTests/chunk-3EUGBAOM.mjs",
|
|
962
962
|
"kind": "import-statement"
|
|
963
963
|
},
|
|
964
964
|
{
|
|
965
|
-
"path": "testeranto/bundles/node/allTests/chunk-
|
|
965
|
+
"path": "testeranto/bundles/node/allTests/chunk-M6DO7VMB.mjs",
|
|
966
966
|
"kind": "import-statement"
|
|
967
967
|
},
|
|
968
968
|
{
|
|
969
|
-
"path": "testeranto/bundles/node/allTests/chunk-
|
|
969
|
+
"path": "testeranto/bundles/node/allTests/chunk-E75CSRER.mjs",
|
|
970
970
|
"kind": "import-statement"
|
|
971
971
|
}
|
|
972
972
|
],
|
|
@@ -976,22 +976,22 @@
|
|
|
976
976
|
"entryPoint": "src/lib/BaseSuite.test/node.test.ts",
|
|
977
977
|
"inputs": {
|
|
978
978
|
"src/lib/BaseSuite.test/test.ts": {
|
|
979
|
-
"bytesInOutput":
|
|
979
|
+
"bytesInOutput": 8593
|
|
980
980
|
},
|
|
981
981
|
"src/lib/BaseSuite.test/node.test.ts": {
|
|
982
982
|
"bytesInOutput": 103
|
|
983
983
|
}
|
|
984
984
|
},
|
|
985
|
-
"bytes":
|
|
985
|
+
"bytes": 9081
|
|
986
986
|
},
|
|
987
987
|
"testeranto/bundles/node/allTests/src/lib/pmProxy.test/index.mjs": {
|
|
988
988
|
"imports": [
|
|
989
989
|
{
|
|
990
|
-
"path": "testeranto/bundles/node/allTests/chunk-
|
|
990
|
+
"path": "testeranto/bundles/node/allTests/chunk-M6DO7VMB.mjs",
|
|
991
991
|
"kind": "import-statement"
|
|
992
992
|
},
|
|
993
993
|
{
|
|
994
|
-
"path": "testeranto/bundles/node/allTests/chunk-
|
|
994
|
+
"path": "testeranto/bundles/node/allTests/chunk-E75CSRER.mjs",
|
|
995
995
|
"kind": "import-statement"
|
|
996
996
|
}
|
|
997
997
|
],
|
|
@@ -1010,7 +1010,7 @@
|
|
|
1010
1010
|
"bytesInOutput": 4468
|
|
1011
1011
|
},
|
|
1012
1012
|
"node_modules/chai/chai.js": {
|
|
1013
|
-
"bytesInOutput":
|
|
1013
|
+
"bytesInOutput": 134474
|
|
1014
1014
|
},
|
|
1015
1015
|
"src/lib/pmProxy.test/adapter.ts": {
|
|
1016
1016
|
"bytesInOutput": 812
|
|
@@ -1019,12 +1019,12 @@
|
|
|
1019
1019
|
"bytesInOutput": 196
|
|
1020
1020
|
}
|
|
1021
1021
|
},
|
|
1022
|
-
"bytes":
|
|
1022
|
+
"bytes": 153377
|
|
1023
1023
|
},
|
|
1024
1024
|
"testeranto/bundles/node/allTests/src/lib/core.test/core.test.mjs": {
|
|
1025
1025
|
"imports": [
|
|
1026
1026
|
{
|
|
1027
|
-
"path": "testeranto/bundles/node/allTests/chunk-
|
|
1027
|
+
"path": "testeranto/bundles/node/allTests/chunk-E75CSRER.mjs",
|
|
1028
1028
|
"kind": "import-statement"
|
|
1029
1029
|
}
|
|
1030
1030
|
],
|
|
@@ -1037,7 +1037,7 @@
|
|
|
1037
1037
|
"bytesInOutput": 3131
|
|
1038
1038
|
},
|
|
1039
1039
|
"src/Pure.ts": {
|
|
1040
|
-
"bytesInOutput":
|
|
1040
|
+
"bytesInOutput": 1315
|
|
1041
1041
|
},
|
|
1042
1042
|
"src/lib/core.test/core.test.specification.ts": {
|
|
1043
1043
|
"bytesInOutput": 2824
|
|
@@ -1055,20 +1055,20 @@
|
|
|
1055
1055
|
"bytesInOutput": 114
|
|
1056
1056
|
}
|
|
1057
1057
|
},
|
|
1058
|
-
"bytes":
|
|
1058
|
+
"bytes": 14964
|
|
1059
1059
|
},
|
|
1060
1060
|
"testeranto/bundles/node/allTests/src/lib/classBuilder.test/classBuilder.test.mjs": {
|
|
1061
1061
|
"imports": [
|
|
1062
1062
|
{
|
|
1063
|
-
"path": "testeranto/bundles/node/allTests/chunk-
|
|
1063
|
+
"path": "testeranto/bundles/node/allTests/chunk-3EUGBAOM.mjs",
|
|
1064
1064
|
"kind": "import-statement"
|
|
1065
1065
|
},
|
|
1066
1066
|
{
|
|
1067
|
-
"path": "testeranto/bundles/node/allTests/chunk-
|
|
1067
|
+
"path": "testeranto/bundles/node/allTests/chunk-M6DO7VMB.mjs",
|
|
1068
1068
|
"kind": "import-statement"
|
|
1069
1069
|
},
|
|
1070
1070
|
{
|
|
1071
|
-
"path": "testeranto/bundles/node/allTests/chunk-
|
|
1071
|
+
"path": "testeranto/bundles/node/allTests/chunk-E75CSRER.mjs",
|
|
1072
1072
|
"kind": "import-statement"
|
|
1073
1073
|
}
|
|
1074
1074
|
],
|
|
@@ -1095,10 +1095,10 @@
|
|
|
1095
1095
|
},
|
|
1096
1096
|
"bytes": 10930
|
|
1097
1097
|
},
|
|
1098
|
-
"testeranto/bundles/node/allTests/chunk-
|
|
1098
|
+
"testeranto/bundles/node/allTests/chunk-3EUGBAOM.mjs": {
|
|
1099
1099
|
"imports": [
|
|
1100
1100
|
{
|
|
1101
|
-
"path": "testeranto/bundles/node/allTests/chunk-
|
|
1101
|
+
"path": "testeranto/bundles/node/allTests/chunk-E75CSRER.mjs",
|
|
1102
1102
|
"kind": "import-statement"
|
|
1103
1103
|
}
|
|
1104
1104
|
],
|
|
@@ -1115,11 +1115,11 @@
|
|
|
1115
1115
|
"testeranto/bundles/node/allTests/src/lib/baseBuilder.test/baseBuilder.test.node.mjs": {
|
|
1116
1116
|
"imports": [
|
|
1117
1117
|
{
|
|
1118
|
-
"path": "testeranto/bundles/node/allTests/chunk-
|
|
1118
|
+
"path": "testeranto/bundles/node/allTests/chunk-M6DO7VMB.mjs",
|
|
1119
1119
|
"kind": "import-statement"
|
|
1120
1120
|
},
|
|
1121
1121
|
{
|
|
1122
|
-
"path": "testeranto/bundles/node/allTests/chunk-
|
|
1122
|
+
"path": "testeranto/bundles/node/allTests/chunk-E75CSRER.mjs",
|
|
1123
1123
|
"kind": "import-statement"
|
|
1124
1124
|
}
|
|
1125
1125
|
],
|
|
@@ -1138,18 +1138,18 @@
|
|
|
1138
1138
|
"bytesInOutput": 3065
|
|
1139
1139
|
},
|
|
1140
1140
|
"src/lib/baseBuilder.test/baseBuilder.test.adapter.ts": {
|
|
1141
|
-
"bytesInOutput":
|
|
1141
|
+
"bytesInOutput": 653
|
|
1142
1142
|
},
|
|
1143
1143
|
"src/lib/baseBuilder.test/baseBuilder.test.node.ts": {
|
|
1144
1144
|
"bytesInOutput": 131
|
|
1145
1145
|
}
|
|
1146
1146
|
},
|
|
1147
|
-
"bytes":
|
|
1147
|
+
"bytes": 6020
|
|
1148
1148
|
},
|
|
1149
|
-
"testeranto/bundles/node/allTests/chunk-
|
|
1149
|
+
"testeranto/bundles/node/allTests/chunk-M6DO7VMB.mjs": {
|
|
1150
1150
|
"imports": [
|
|
1151
1151
|
{
|
|
1152
|
-
"path": "testeranto/bundles/node/allTests/chunk-
|
|
1152
|
+
"path": "testeranto/bundles/node/allTests/chunk-E75CSRER.mjs",
|
|
1153
1153
|
"kind": "import-statement"
|
|
1154
1154
|
},
|
|
1155
1155
|
{
|
|
@@ -1181,7 +1181,7 @@
|
|
|
1181
1181
|
},
|
|
1182
1182
|
"bytes": 6848
|
|
1183
1183
|
},
|
|
1184
|
-
"testeranto/bundles/node/allTests/chunk-
|
|
1184
|
+
"testeranto/bundles/node/allTests/chunk-E75CSRER.mjs": {
|
|
1185
1185
|
"imports": [],
|
|
1186
1186
|
"exports": [
|
|
1187
1187
|
"BaseBuilder",
|
|
@@ -1198,7 +1198,7 @@
|
|
|
1198
1198
|
],
|
|
1199
1199
|
"inputs": {
|
|
1200
1200
|
"src/lib/pmProxy.ts": {
|
|
1201
|
-
"bytesInOutput":
|
|
1201
|
+
"bytesInOutput": 5758
|
|
1202
1202
|
},
|
|
1203
1203
|
"src/lib/basebuilder.ts": {
|
|
1204
1204
|
"bytesInOutput": 2341
|
|
@@ -1207,13 +1207,13 @@
|
|
|
1207
1207
|
"bytesInOutput": 1850
|
|
1208
1208
|
},
|
|
1209
1209
|
"src/lib/BaseSuite.ts": {
|
|
1210
|
-
"bytesInOutput":
|
|
1210
|
+
"bytesInOutput": 2484
|
|
1211
1211
|
},
|
|
1212
1212
|
"src/lib/index.ts": {
|
|
1213
1213
|
"bytesInOutput": 656
|
|
1214
1214
|
},
|
|
1215
1215
|
"src/lib/abstractBase.ts": {
|
|
1216
|
-
"bytesInOutput":
|
|
1216
|
+
"bytesInOutput": 4973
|
|
1217
1217
|
},
|
|
1218
1218
|
"src/lib/core.ts": {
|
|
1219
1219
|
"bytesInOutput": 1827
|
|
@@ -1222,7 +1222,7 @@
|
|
|
1222
1222
|
"bytesInOutput": 20
|
|
1223
1223
|
}
|
|
1224
1224
|
},
|
|
1225
|
-
"bytes":
|
|
1225
|
+
"bytes": 20371
|
|
1226
1226
|
}
|
|
1227
1227
|
}
|
|
1228
1228
|
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { createRequire } from 'module';const require = createRequire(import.meta.url);
|
|
2
2
|
import {
|
|
3
3
|
MockSuite
|
|
4
|
-
} from "../../../chunk-
|
|
4
|
+
} from "../../../chunk-3EUGBAOM.mjs";
|
|
5
5
|
import {
|
|
6
6
|
Node_default
|
|
7
|
-
} from "../../../chunk-
|
|
7
|
+
} from "../../../chunk-M6DO7VMB.mjs";
|
|
8
8
|
import {
|
|
9
9
|
BaseSuite
|
|
10
|
-
} from "../../../chunk-
|
|
10
|
+
} from "../../../chunk-E75CSRER.mjs";
|
|
11
11
|
|
|
12
12
|
// src/lib/BaseSuite.test/test.ts
|
|
13
13
|
var specification = (Suite, Given, When, Then) => [
|
|
@@ -299,7 +299,7 @@ var testAdapter = {
|
|
|
299
299
|
}
|
|
300
300
|
return result;
|
|
301
301
|
} catch (e) {
|
|
302
|
-
console.error("Then error:", e);
|
|
302
|
+
console.error("Then error:", e.toString());
|
|
303
303
|
console.error("Full store state:", JSON.stringify(store, null, 2));
|
|
304
304
|
throw e;
|
|
305
305
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { createRequire } from 'module';const require = createRequire(import.meta.url);
|
|
2
2
|
import {
|
|
3
3
|
Node_default
|
|
4
|
-
} from "../../../chunk-
|
|
4
|
+
} from "../../../chunk-M6DO7VMB.mjs";
|
|
5
5
|
import {
|
|
6
6
|
BaseBuilder
|
|
7
|
-
} from "../../../chunk-
|
|
7
|
+
} from "../../../chunk-E75CSRER.mjs";
|
|
8
8
|
|
|
9
9
|
// src/lib/baseBuilder.test/baseBuilder.test.specification.ts
|
|
10
10
|
var specification = (Suite, Given, When, Then) => {
|
|
@@ -196,7 +196,7 @@ var testAdapter = {
|
|
|
196
196
|
initialValues
|
|
197
197
|
});
|
|
198
198
|
const result = initializer();
|
|
199
|
-
console.log("Initialization result:", result);
|
|
199
|
+
console.log("Initialization result:", result.toString());
|
|
200
200
|
return result;
|
|
201
201
|
},
|
|
202
202
|
andWhen: async (store, whenCB, testResource, utils) => {
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { createRequire } from 'module';const require = createRequire(import.meta.url);
|
|
2
2
|
import {
|
|
3
3
|
MockSuite
|
|
4
|
-
} from "../../../chunk-
|
|
4
|
+
} from "../../../chunk-3EUGBAOM.mjs";
|
|
5
5
|
import {
|
|
6
6
|
Node_default
|
|
7
|
-
} from "../../../chunk-
|
|
7
|
+
} from "../../../chunk-M6DO7VMB.mjs";
|
|
8
8
|
import {
|
|
9
9
|
ClassBuilder
|
|
10
|
-
} from "../../../chunk-
|
|
10
|
+
} from "../../../chunk-E75CSRER.mjs";
|
|
11
11
|
|
|
12
12
|
// src/lib/classBuilder.test/mock.ts
|
|
13
13
|
var TestClassBuilderMock = class extends ClassBuilder {
|
|
@@ -3,7 +3,7 @@ import {
|
|
|
3
3
|
PM,
|
|
4
4
|
TesterantoCore,
|
|
5
5
|
defaultTestResourceRequirement
|
|
6
|
-
} from "../../../chunk-
|
|
6
|
+
} from "../../../chunk-E75CSRER.mjs";
|
|
7
7
|
|
|
8
8
|
// src/PM/pure.ts
|
|
9
9
|
var PM_Pure = class extends PM {
|
|
@@ -153,21 +153,6 @@ var PureTesteranto = class extends TesterantoCore {
|
|
|
153
153
|
);
|
|
154
154
|
const t = JSON.parse(partialTestResource);
|
|
155
155
|
const pm = new PM_Pure(t);
|
|
156
|
-
console.log("[DEBUG] Current test jobs:", this.testJobs?.length);
|
|
157
|
-
if (!this.testJobs || this.testJobs.length === 0) {
|
|
158
|
-
console.error(
|
|
159
|
-
"[ERROR] No test jobs available - checking specs:",
|
|
160
|
-
this.specs?.length
|
|
161
|
-
);
|
|
162
|
-
console.error("[ERROR] Test implementation:", this.testImplementation);
|
|
163
|
-
return {
|
|
164
|
-
failed: true,
|
|
165
|
-
fails: 1,
|
|
166
|
-
artifacts: [],
|
|
167
|
-
// logPromise: Promise.resolve(),
|
|
168
|
-
features: []
|
|
169
|
-
};
|
|
170
|
-
}
|
|
171
156
|
try {
|
|
172
157
|
console.log("[DEBUG] Executing test job with PM:", pm);
|
|
173
158
|
const result = await this.testJobs[0].receiveTestResourceConfig(pm);
|
|
@@ -177,7 +162,7 @@ var PureTesteranto = class extends TesterantoCore {
|
|
|
177
162
|
console.error("[ERROR] Test job failed:", e);
|
|
178
163
|
return {
|
|
179
164
|
failed: true,
|
|
180
|
-
fails: 1,
|
|
165
|
+
fails: -1,
|
|
181
166
|
artifacts: [],
|
|
182
167
|
// logPromise: Promise.resolve(),
|
|
183
168
|
features: []
|