testeranto 0.166.0 → 0.171.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 +17 -15
- 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/baseBuilder.test/baseBuilder.test.mock.js +1 -1
- package/dist/common/src/lib/basebuilder.js +9 -7
- package/dist/common/src/lib/core.test/MockCore.js +17 -15
- 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 +17 -15
- 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/baseBuilder.test/baseBuilder.test.mock.js +1 -1
- package/dist/module/src/lib/basebuilder.js +9 -7
- package/dist/module/src/lib/core.test/MockCore.js +17 -15
- 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.js +541 -495
- 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 +3 -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/src/lib/index.d.ts +0 -1
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +3 -2
- 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 +17 -17
- 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/baseBuilder.test/baseBuilder.test.mock.ts +1 -1
- package/src/lib/basebuilder.ts +9 -9
- package/src/lib/core.test/MockCore.ts +26 -19
- package/src/lib/index.ts +1 -1
- package/src/lib/pmProxy.ts +184 -87
- package/testeranto/App.js +541 -495
- package/testeranto/bundles/node/allTests/{chunk-4ONUZRZ4.mjs → chunk-3EUGBAOM.mjs} +1 -1
- package/testeranto/bundles/node/allTests/{chunk-FFBRDUBH.mjs → chunk-E75CSRER.mjs} +247 -124
- package/testeranto/bundles/node/allTests/{chunk-NQEP7SN4.mjs → chunk-M6DO7VMB.mjs} +1 -1
- package/testeranto/bundles/node/allTests/metafile.json +41 -41
- 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 +4 -4
- 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 +11 -23
- package/testeranto/bundles/node/allTests/src/lib/pmProxy.test/index.mjs +2 -2
- package/testeranto/bundles/pure/allTests/{chunk-CSMXYJ65.mjs → chunk-KHDVEHF7.mjs} +3 -18
- package/testeranto/bundles/pure/allTests/{chunk-QK4IXLF6.mjs → chunk-VMUSFSZM.mjs} +247 -124
- package/testeranto/bundles/pure/allTests/metafile.json +77 -47
- 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 +3 -30
- package/testeranto/bundles/web/allTests/chunk-HPYA4YZC.mjs +2283 -0
- package/testeranto/bundles/web/allTests/{chunk-TU3MJSSI.mjs → chunk-RLDR6LJN.mjs} +302 -127
- package/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs +997 -0
- package/testeranto/bundles/web/allTests/metafile.json +15065 -46
- 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 +27 -3
- 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 +0 -0
- 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 +0 -0
- 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 +0 -0
- 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 +0 -0
- 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 +0 -0
- 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/lint_errors.txt +0 -12
- 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 +11 -8
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/logs.txt +0 -0
- 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 +16 -9
- package/testeranto/reportsweb_build_errors +25 -0
- package/testeranto.config.ts +7 -0
- package/tsc.log +313 -237
- 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
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"metafile": {
|
|
5
5
|
"inputs": {
|
|
6
6
|
"src/lib/index.ts": {
|
|
7
|
-
"bytes":
|
|
7
|
+
"bytes": 3568,
|
|
8
8
|
"imports": [
|
|
9
9
|
{
|
|
10
10
|
"path": "../PM/pure.js",
|
|
@@ -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": ".",
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"format": "esm"
|
|
78
78
|
},
|
|
79
79
|
"src/lib/basebuilder.ts": {
|
|
80
|
-
"bytes":
|
|
80
|
+
"bytes": 4874,
|
|
81
81
|
"imports": [
|
|
82
82
|
{
|
|
83
83
|
"path": "stream",
|
|
@@ -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": "..",
|
|
@@ -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",
|
|
@@ -575,7 +575,7 @@
|
|
|
575
575
|
"format": "esm"
|
|
576
576
|
},
|
|
577
577
|
"src/lib/core.test/MockCore.ts": {
|
|
578
|
-
"bytes":
|
|
578
|
+
"bytes": 2647,
|
|
579
579
|
"imports": [
|
|
580
580
|
{
|
|
581
581
|
"path": "src/lib/core.ts",
|
|
@@ -845,7 +845,7 @@
|
|
|
845
845
|
"format": "esm"
|
|
846
846
|
},
|
|
847
847
|
"src/lib/baseBuilder.test/baseBuilder.test.mock.ts": {
|
|
848
|
-
"bytes":
|
|
848
|
+
"bytes": 1988,
|
|
849
849
|
"imports": [
|
|
850
850
|
{
|
|
851
851
|
"path": "../../CoreTypes",
|
|
@@ -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
|
],
|
|
@@ -1024,7 +1024,7 @@
|
|
|
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,13 +1037,13 @@
|
|
|
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
|
|
1044
1044
|
},
|
|
1045
1045
|
"src/lib/core.test/MockCore.ts": {
|
|
1046
|
-
"bytesInOutput":
|
|
1046
|
+
"bytesInOutput": 1670
|
|
1047
1047
|
},
|
|
1048
1048
|
"src/lib/core.test/core.test.implementation.ts": {
|
|
1049
1049
|
"bytesInOutput": 4145
|
|
@@ -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
|
],
|
|
@@ -1132,24 +1132,24 @@
|
|
|
1132
1132
|
"bytesInOutput": 708
|
|
1133
1133
|
},
|
|
1134
1134
|
"src/lib/baseBuilder.test/baseBuilder.test.mock.ts": {
|
|
1135
|
-
"bytesInOutput":
|
|
1135
|
+
"bytesInOutput": 906
|
|
1136
1136
|
},
|
|
1137
1137
|
"src/lib/baseBuilder.test/baseBuilder.test.implementation.ts": {
|
|
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,22 +1198,22 @@
|
|
|
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
|
-
"bytesInOutput":
|
|
1204
|
+
"bytesInOutput": 2341
|
|
1205
1205
|
},
|
|
1206
1206
|
"src/lib/classBuilder.ts": {
|
|
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) => {
|
|
@@ -65,7 +65,7 @@ var MockBaseBuilder = class extends BaseBuilder {
|
|
|
65
65
|
failed: false,
|
|
66
66
|
fails: 0,
|
|
67
67
|
artifacts: [],
|
|
68
|
-
logPromise: Promise.resolve(),
|
|
68
|
+
// logPromise: Promise.resolve(),
|
|
69
69
|
features: []
|
|
70
70
|
});
|
|
71
71
|
}
|
|
@@ -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,9 +162,9 @@ 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
|
-
logPromise: Promise.resolve(),
|
|
167
|
+
// logPromise: Promise.resolve(),
|
|
183
168
|
features: []
|
|
184
169
|
};
|
|
185
170
|
}
|
|
@@ -303,13 +288,18 @@ var MockCore = class extends TesterantoCore {
|
|
|
303
288
|
throw new Error("testImplementation is required");
|
|
304
289
|
}
|
|
305
290
|
if (!testSpecification) {
|
|
306
|
-
console.warn(
|
|
291
|
+
console.warn(
|
|
292
|
+
"[WARN] testSpecification is null/undefined - tests may fail"
|
|
293
|
+
);
|
|
307
294
|
}
|
|
308
295
|
console.log("[DEBUG] MockCore constructor called with:");
|
|
309
296
|
console.log("- input:", JSON.stringify(input, null, 2));
|
|
310
297
|
console.log("- testSpecification keys:", Object.keys(testSpecification));
|
|
311
298
|
console.log("- testImplementation keys:", Object.keys(testImplementation));
|
|
312
|
-
console.log(
|
|
299
|
+
console.log(
|
|
300
|
+
"- testResourceRequirement:",
|
|
301
|
+
JSON.stringify(testResourceRequirement)
|
|
302
|
+
);
|
|
313
303
|
console.log("- testAdapter keys:", Object.keys(testAdapter3));
|
|
314
304
|
const requiredMethods = ["suites", "givens", "whens", "thens"];
|
|
315
305
|
requiredMethods.forEach((method) => {
|
|
@@ -318,8 +308,6 @@ var MockCore = class extends TesterantoCore {
|
|
|
318
308
|
}
|
|
319
309
|
});
|
|
320
310
|
console.log("[DEBUG] Validation passed, calling super...");
|
|
321
|
-
this.testResourceRequirement = testResourceRequirement;
|
|
322
|
-
this.testAdapter = testAdapter3;
|
|
323
311
|
super(
|
|
324
312
|
input,
|
|
325
313
|
testSpecification,
|
|
@@ -337,7 +325,7 @@ var MockCore = class extends TesterantoCore {
|
|
|
337
325
|
failed: false,
|
|
338
326
|
fails: 0,
|
|
339
327
|
artifacts: [],
|
|
340
|
-
logPromise: Promise.resolve(),
|
|
328
|
+
// logPromise: Promise.resolve(),
|
|
341
329
|
features: []
|
|
342
330
|
};
|
|
343
331
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
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
|
andWhenProxy,
|
|
7
7
|
butThenProxy
|
|
8
|
-
} from "../../../chunk-
|
|
8
|
+
} from "../../../chunk-E75CSRER.mjs";
|
|
9
9
|
|
|
10
10
|
// src/lib/pmProxy.test/mockPMBase.ts
|
|
11
11
|
var MockPMBase = class {
|
|
@@ -3,7 +3,7 @@ import {
|
|
|
3
3
|
PM,
|
|
4
4
|
TesterantoCore,
|
|
5
5
|
defaultTestResourceRequirement
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-VMUSFSZM.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,9 +162,9 @@ 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
|
-
logPromise: Promise.resolve(),
|
|
167
|
+
// logPromise: Promise.resolve(),
|
|
183
168
|
features: []
|
|
184
169
|
};
|
|
185
170
|
}
|