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.
Files changed (187) hide show
  1. package/dist/common/src/NavBar.js +45 -0
  2. package/dist/common/src/PM/main.js +81 -59
  3. package/dist/common/src/Pure.js +17 -15
  4. package/dist/common/src/ReportServer.js +48 -5
  5. package/dist/common/src/Web.js +35 -20
  6. package/dist/common/src/components/SunriseAnimation.test/implementation.js +1 -0
  7. package/dist/common/src/components/SunriseAnimation.test/index.js +1 -0
  8. package/dist/common/src/components/SunriseAnimation.test/interface.js +1 -0
  9. package/dist/common/src/components/SunriseAnimation.test/specification.js +1 -0
  10. package/dist/common/src/components/TestStatusBadge.js +55 -0
  11. package/dist/common/src/components/pure/ProjectPageView.js +204 -0
  12. package/dist/common/src/components/pure/ProjectPageView.test/adapter.js +20 -0
  13. package/dist/common/src/components/pure/ProjectPageView.test/implementation.js +71 -0
  14. package/dist/common/src/components/pure/ProjectPageView.test/index.js +10 -0
  15. package/dist/common/src/components/pure/ProjectPageView.test/specification.js +19 -0
  16. package/dist/common/src/components/pure/ProjectPageView.test/types.js +2 -0
  17. package/dist/common/src/lib/BaseSuite.js +3 -3
  18. package/dist/common/src/lib/BaseSuite.test/test.js +1 -1
  19. package/dist/common/src/lib/abstractBase.js +41 -14
  20. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +1 -1
  21. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.mock.js +1 -1
  22. package/dist/common/src/lib/basebuilder.js +9 -7
  23. package/dist/common/src/lib/core.test/MockCore.js +17 -15
  24. package/dist/common/src/lib/pmProxy.js +185 -64
  25. package/dist/common/testeranto.config.js +6 -0
  26. package/dist/common/tsconfig.common.tsbuildinfo +1 -1
  27. package/dist/module/src/App.js +3 -3
  28. package/dist/module/src/PM/main.js +81 -59
  29. package/dist/module/src/ProjectsPage.js +1 -110
  30. package/dist/module/src/Pure.js +17 -15
  31. package/dist/module/src/ReportServer.js +48 -5
  32. package/dist/module/src/TestPage.js +45 -16
  33. package/dist/module/src/Web.js +35 -20
  34. package/dist/module/src/components/SunriseAnimation.test/implementation.js +1 -0
  35. package/dist/module/src/components/SunriseAnimation.test/index.js +1 -0
  36. package/dist/module/src/components/SunriseAnimation.test/interface.js +1 -0
  37. package/dist/module/src/components/SunriseAnimation.test/specification.js +1 -0
  38. package/dist/module/src/components/pure/ProjectPageView.js +197 -0
  39. package/dist/module/src/components/pure/ProjectPageView.test/adapter.js +17 -0
  40. package/dist/module/src/components/pure/ProjectPageView.test/implementation.js +68 -0
  41. package/dist/module/src/components/pure/ProjectPageView.test/index.js +5 -0
  42. package/dist/module/src/components/pure/ProjectPageView.test/specification.js +15 -0
  43. package/dist/module/src/components/pure/ProjectPageView.test/types.js +1 -0
  44. package/dist/module/src/components/pure/ProjectsPageView.js +58 -0
  45. package/dist/module/src/components/pure/TestPageView.js +136 -0
  46. package/dist/module/src/components/stateful/ProjectPage.js +63 -0
  47. package/dist/module/src/components/stateful/ProjectsPage.js +55 -0
  48. package/dist/module/src/components/stateful/TestPage.js +82 -0
  49. package/dist/module/src/lib/BaseSuite.js +3 -3
  50. package/dist/module/src/lib/BaseSuite.test/test.js +1 -1
  51. package/dist/module/src/lib/abstractBase.js +41 -14
  52. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +1 -1
  53. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.mock.js +1 -1
  54. package/dist/module/src/lib/basebuilder.js +9 -7
  55. package/dist/module/src/lib/core.test/MockCore.js +17 -15
  56. package/dist/module/src/lib/pmProxy.js +185 -64
  57. package/dist/module/testeranto.config.js +6 -0
  58. package/dist/module/tsconfig.module.tsbuildinfo +1 -1
  59. package/dist/prebuild/App.js +541 -495
  60. package/dist/prebuild/ReportServer.mjs +44 -4
  61. package/dist/prebuild/run.mjs +67 -39
  62. package/dist/types/src/NavBar.d.ts +19 -0
  63. package/dist/types/src/PM/index.d.ts +3 -1
  64. package/dist/types/src/PM/main.d.ts +0 -4
  65. package/dist/types/src/PM/node.d.ts +2 -2
  66. package/dist/types/src/components/SunriseAnimation.test/interface.d.ts +0 -0
  67. package/dist/types/src/components/SunriseAnimation.test/specification.d.ts +0 -0
  68. package/dist/types/src/components/TestStatusBadge.d.ts +15 -0
  69. package/dist/types/src/components/pure/ProjectPageView.d.ts +14 -0
  70. package/dist/types/src/components/pure/ProjectPageView.test/adapter.d.ts +3 -0
  71. package/dist/types/src/components/pure/ProjectPageView.test/implementation.d.ts +3 -0
  72. package/dist/types/src/components/pure/ProjectPageView.test/index.d.ts +3 -0
  73. package/dist/types/src/components/pure/ProjectPageView.test/specification.d.ts +3 -0
  74. package/dist/types/src/components/pure/ProjectPageView.test/types.d.ts +39 -0
  75. package/dist/types/src/lib/BaseSuite.d.ts +2 -0
  76. package/dist/types/src/lib/abstractBase.d.ts +12 -0
  77. package/dist/types/src/lib/index.d.ts +0 -1
  78. package/dist/types/tsconfig.types.tsbuildinfo +1 -1
  79. package/package.json +3 -2
  80. package/src/App.tsx +5 -9
  81. package/src/PM/index.ts +1 -1
  82. package/src/PM/main.ts +87 -82
  83. package/src/PM/node.ts +2 -2
  84. package/src/ProjectsPage.tsx +1 -164
  85. package/src/Pure.ts +17 -17
  86. package/src/ReportServer.ts +49 -6
  87. package/src/TestPage.tsx +78 -5
  88. package/src/Web.ts +35 -35
  89. package/src/components/SunriseAnimation.test/implementation.ts +0 -0
  90. package/src/components/SunriseAnimation.test/index.ts +0 -0
  91. package/src/components/SunriseAnimation.test/interface.ts +0 -0
  92. package/src/components/SunriseAnimation.test/specification.ts +0 -0
  93. package/src/components/pure/ProjectPageView.test/adapter.ts +21 -0
  94. package/src/components/pure/ProjectPageView.test/implementation.tsx +84 -0
  95. package/src/components/pure/ProjectPageView.test/index.ts +8 -0
  96. package/src/components/pure/ProjectPageView.test/specification.ts +31 -0
  97. package/src/components/pure/ProjectPageView.test/types.ts +55 -0
  98. package/src/components/pure/ProjectPageView.tsx +332 -0
  99. package/src/components/pure/ProjectsPageView.tsx +99 -0
  100. package/src/components/pure/TestPageView.tsx +278 -0
  101. package/src/components/stateful/ProjectPage.tsx +83 -0
  102. package/src/components/stateful/ProjectsPage.tsx +73 -0
  103. package/src/components/stateful/TestPage.tsx +107 -0
  104. package/src/lib/BaseSuite.test/test.ts +1 -1
  105. package/src/lib/BaseSuite.ts +9 -4
  106. package/src/lib/abstractBase.ts +45 -14
  107. package/src/lib/baseBuilder.test/baseBuilder.test.adapter.ts +1 -1
  108. package/src/lib/baseBuilder.test/baseBuilder.test.mock.ts +1 -1
  109. package/src/lib/basebuilder.ts +9 -9
  110. package/src/lib/core.test/MockCore.ts +26 -19
  111. package/src/lib/index.ts +1 -1
  112. package/src/lib/pmProxy.ts +184 -87
  113. package/testeranto/App.js +541 -495
  114. package/testeranto/bundles/node/allTests/{chunk-4ONUZRZ4.mjs → chunk-3EUGBAOM.mjs} +1 -1
  115. package/testeranto/bundles/node/allTests/{chunk-FFBRDUBH.mjs → chunk-E75CSRER.mjs} +247 -124
  116. package/testeranto/bundles/node/allTests/{chunk-NQEP7SN4.mjs → chunk-M6DO7VMB.mjs} +1 -1
  117. package/testeranto/bundles/node/allTests/metafile.json +41 -41
  118. package/testeranto/bundles/node/allTests/src/lib/BaseSuite.test/node.test.mjs +4 -4
  119. package/testeranto/bundles/node/allTests/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +4 -4
  120. package/testeranto/bundles/node/allTests/src/lib/classBuilder.test/classBuilder.test.mjs +3 -3
  121. package/testeranto/bundles/node/allTests/src/lib/core.test/core.test.mjs +11 -23
  122. package/testeranto/bundles/node/allTests/src/lib/pmProxy.test/index.mjs +2 -2
  123. package/testeranto/bundles/pure/allTests/{chunk-CSMXYJ65.mjs → chunk-KHDVEHF7.mjs} +3 -18
  124. package/testeranto/bundles/pure/allTests/{chunk-QK4IXLF6.mjs → chunk-VMUSFSZM.mjs} +247 -124
  125. package/testeranto/bundles/pure/allTests/metafile.json +77 -47
  126. package/testeranto/bundles/pure/allTests/src/Pure.test.mjs +2 -2
  127. package/testeranto/bundles/pure/allTests/src/lib/BaseSuite.test/pure.test.mjs +3 -3
  128. package/testeranto/bundles/pure/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +3 -30
  129. package/testeranto/bundles/web/allTests/chunk-HPYA4YZC.mjs +2283 -0
  130. package/testeranto/bundles/web/allTests/{chunk-TU3MJSSI.mjs → chunk-RLDR6LJN.mjs} +302 -127
  131. package/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs +997 -0
  132. package/testeranto/bundles/web/allTests/metafile.json +15065 -46
  133. package/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.html +19 -0
  134. package/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs +37524 -0
  135. package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs +20 -2
  136. package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +27 -3
  137. package/testeranto/reports/allTests/config.json +8 -0
  138. package/testeranto/reports/allTests/src/Pure.test/pure/type_errors.txt +9 -3
  139. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/bdd_errors.txt +1 -0
  140. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +13 -0
  141. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/logs.txt +50 -0
  142. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/message.txt +2 -0
  143. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/prompt.txt +17 -0
  144. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/tests.json +32 -0
  145. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +68 -0
  146. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/logs.txt +0 -0
  147. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/tests.json +6 -3
  148. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/type_errors.txt +8 -1
  149. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/tests.json +6 -3
  150. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +9 -3
  151. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/logs.txt +0 -0
  152. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/prompt.txt +2 -2
  153. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/tests.json +6 -3
  154. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/type_errors.txt +10 -5
  155. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/logs.txt +0 -0
  156. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +18 -9
  157. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +8 -1
  158. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +10 -5
  159. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/logs.txt +0 -0
  160. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +2 -2
  161. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +18 -9
  162. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +10 -5
  163. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/logs.txt +0 -0
  164. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/tests.json +36 -18
  165. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt +8 -1
  166. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/lint_errors.txt +0 -12
  167. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/logs.txt +2 -2
  168. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/type_errors.txt +11 -8
  169. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/logs.txt +0 -0
  170. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/tests.json +28 -14
  171. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/type_errors.txt +8 -1
  172. package/testeranto/reports/allTests/summary.json +16 -9
  173. package/testeranto/reportsweb_build_errors +25 -0
  174. package/testeranto.config.ts +7 -0
  175. package/tsc.log +313 -237
  176. package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test/manifest.json +0 -1
  177. package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/manifest.json +0 -1
  178. package/testeranto/reports/allTests/src/Pure.test/pure/manifest.json +0 -1
  179. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/manifest.json +0 -1
  180. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/manifest.json +0 -1
  181. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/manifest.json +0 -1
  182. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/manifest.json +0 -1
  183. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/manifest.json +0 -1
  184. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/manifest.json +0 -1
  185. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/manifest.json +0 -1
  186. /package/{testeranto/reports/allTests/src/Pure.test/pure/logs.txt → dist/types/src/components/SunriseAnimation.test/implementation.d.ts} +0 -0
  187. /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": 3565,
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": 4454,
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": 6388,
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": 4847,
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": 3797,
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": 1827,
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": 6936,
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": 12569,
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": 2591,
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": 2507,
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": 1985,
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": 879,
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-4ONUZRZ4.mjs",
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-NQEP7SN4.mjs",
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-FFBRDUBH.mjs",
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": 8582
979
+ "bytesInOutput": 8593
980
980
  },
981
981
  "src/lib/BaseSuite.test/node.test.ts": {
982
982
  "bytesInOutput": 103
983
983
  }
984
984
  },
985
- "bytes": 9070
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-NQEP7SN4.mjs",
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-FFBRDUBH.mjs",
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-FFBRDUBH.mjs",
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": 1785
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": 1730
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": 15494
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-4ONUZRZ4.mjs",
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-NQEP7SN4.mjs",
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-FFBRDUBH.mjs",
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-4ONUZRZ4.mjs": {
1098
+ "testeranto/bundles/node/allTests/chunk-3EUGBAOM.mjs": {
1099
1099
  "imports": [
1100
1100
  {
1101
- "path": "testeranto/bundles/node/allTests/chunk-FFBRDUBH.mjs",
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-NQEP7SN4.mjs",
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-FFBRDUBH.mjs",
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": 903
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": 642
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": 6006
1147
+ "bytes": 6020
1148
1148
  },
1149
- "testeranto/bundles/node/allTests/chunk-NQEP7SN4.mjs": {
1149
+ "testeranto/bundles/node/allTests/chunk-M6DO7VMB.mjs": {
1150
1150
  "imports": [
1151
1151
  {
1152
- "path": "testeranto/bundles/node/allTests/chunk-FFBRDUBH.mjs",
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-FFBRDUBH.mjs": {
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": 3236
1201
+ "bytesInOutput": 5758
1202
1202
  },
1203
1203
  "src/lib/basebuilder.ts": {
1204
- "bytesInOutput": 2619
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": 2476
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": 3952
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": 17098
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-4ONUZRZ4.mjs";
4
+ } from "../../../chunk-3EUGBAOM.mjs";
5
5
  import {
6
6
  Node_default
7
- } from "../../../chunk-NQEP7SN4.mjs";
7
+ } from "../../../chunk-M6DO7VMB.mjs";
8
8
  import {
9
9
  BaseSuite
10
- } from "../../../chunk-FFBRDUBH.mjs";
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-NQEP7SN4.mjs";
4
+ } from "../../../chunk-M6DO7VMB.mjs";
5
5
  import {
6
6
  BaseBuilder
7
- } from "../../../chunk-FFBRDUBH.mjs";
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-4ONUZRZ4.mjs";
4
+ } from "../../../chunk-3EUGBAOM.mjs";
5
5
  import {
6
6
  Node_default
7
- } from "../../../chunk-NQEP7SN4.mjs";
7
+ } from "../../../chunk-M6DO7VMB.mjs";
8
8
  import {
9
9
  ClassBuilder
10
- } from "../../../chunk-FFBRDUBH.mjs";
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-FFBRDUBH.mjs";
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("[WARN] testSpecification is null/undefined - tests may fail");
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("- testResourceRequirement:", JSON.stringify(testResourceRequirement));
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-NQEP7SN4.mjs";
4
+ } from "../../../chunk-M6DO7VMB.mjs";
5
5
  import {
6
6
  andWhenProxy,
7
7
  butThenProxy
8
- } from "../../../chunk-FFBRDUBH.mjs";
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-QK4IXLF6.mjs";
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
  }