testeranto 0.172.0 → 0.177.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 (203) hide show
  1. package/README.md +2 -4
  2. package/dist/common/src/PM/base.js +5 -1
  3. package/dist/common/src/PM/main.js +57 -54
  4. package/dist/common/src/PM/node.js +4 -1
  5. package/dist/common/src/PM/pure.js +4 -1
  6. package/dist/common/src/PM/web.js +6 -3
  7. package/dist/common/src/Pure.js +0 -4
  8. package/dist/common/src/Pure.test.js +1 -1
  9. package/dist/common/src/ReportServer.js +2 -126
  10. package/dist/common/src/ReportServer.test.ts/index.js +78 -0
  11. package/dist/common/src/ReportServerLib.js +141 -0
  12. package/dist/common/src/components/pure/ProjectPageView.test/implementation.js +1 -1
  13. package/dist/common/src/esbuildConfigs/node.js +1 -3
  14. package/dist/common/src/lib/BaseSuite.js +13 -11
  15. package/dist/common/src/lib/abstractBase.js +39 -40
  16. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +10 -9
  17. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.specification.js +7 -7
  18. package/dist/common/src/lib/basebuilder.js +13 -2
  19. package/dist/common/src/lib/core.js +1 -0
  20. package/dist/common/src/lib/pmProxy.js +215 -201
  21. package/dist/common/src/lib/pmProxy.test/adapter.js +2 -2
  22. package/dist/common/src/lib/pmProxy.test/implementation.js +1 -1
  23. package/dist/common/testeranto.config.js +47 -32
  24. package/dist/common/tsconfig.common.tsbuildinfo +1 -1
  25. package/dist/module/src/PM/base.js +5 -1
  26. package/dist/module/src/PM/main.js +22 -19
  27. package/dist/module/src/PM/node.js +4 -1
  28. package/dist/module/src/PM/pure.js +4 -1
  29. package/dist/module/src/PM/web.js +6 -3
  30. package/dist/module/src/Pure.js +0 -4
  31. package/dist/module/src/Pure.test.js +1 -1
  32. package/dist/module/src/ReportServer.js +2 -123
  33. package/dist/module/src/ReportServer.test.ts/index.js +73 -0
  34. package/dist/module/src/ReportServerLib.js +134 -0
  35. package/dist/module/src/TestPage.js +29 -17
  36. package/dist/module/src/components/pure/ProjectPageView.test/implementation.js +1 -1
  37. package/dist/module/src/components/pure/TestPageView.js +29 -17
  38. package/dist/module/src/esbuildConfigs/node.js +1 -3
  39. package/dist/module/src/lib/BaseSuite.js +13 -11
  40. package/dist/module/src/lib/abstractBase.js +39 -40
  41. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +10 -9
  42. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.specification.js +7 -7
  43. package/dist/module/src/lib/basebuilder.js +13 -2
  44. package/dist/module/src/lib/core.js +1 -0
  45. package/dist/module/src/lib/pmProxy.js +215 -201
  46. package/dist/module/src/lib/pmProxy.test/adapter.js +2 -2
  47. package/dist/module/src/lib/pmProxy.test/implementation.js +1 -1
  48. package/dist/module/testeranto.config.js +47 -32
  49. package/dist/module/tsconfig.module.tsbuildinfo +1 -1
  50. package/dist/prebuild/App.js +3 -3
  51. package/dist/prebuild/ReportServer.mjs +21 -9
  52. package/dist/prebuild/build.mjs +1 -1
  53. package/dist/prebuild/run.mjs +27 -20
  54. package/dist/types/src/PM/base.d.ts +1 -1
  55. package/dist/types/src/PM/node.d.ts +1 -1
  56. package/dist/types/src/PM/pure.d.ts +1 -1
  57. package/dist/types/src/PM/web.d.ts +1 -1
  58. package/dist/types/src/ReportServer.test.ts/index.d.ts +29 -0
  59. package/dist/types/src/ReportServerLib.d.ts +1 -0
  60. package/dist/types/src/Types.d.ts +0 -1
  61. package/dist/types/src/components/pure/ProjectPageView.test/index.d.ts +2 -1
  62. package/dist/types/src/lib/BaseSuite.d.ts +2 -0
  63. package/dist/types/src/lib/abstractBase.d.ts +5 -7
  64. package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.types.d.ts +7 -4
  65. package/dist/types/src/lib/pmProxy.d.ts +3 -3
  66. package/dist/types/tsconfig.types.tsbuildinfo +1 -1
  67. package/package.json +3 -3
  68. package/src/PM/base.ts +7 -5
  69. package/src/PM/main.ts +26 -21
  70. package/src/PM/node.ts +6 -1
  71. package/src/PM/pure.ts +6 -1
  72. package/src/PM/web.ts +7 -3
  73. package/src/Pure.test.ts +6 -6
  74. package/src/Pure.ts +0 -8
  75. package/src/ReportServer.test.ts/index.ts +194 -0
  76. package/src/ReportServer.ts +2 -132
  77. package/src/ReportServerLib.ts +147 -0
  78. package/src/TestPage.tsx +65 -5
  79. package/src/Types.ts +0 -1
  80. package/src/components/pure/ProjectPageView.test/implementation.tsx +1 -1
  81. package/src/components/pure/TestPageView.tsx +65 -5
  82. package/src/esbuildConfigs/node.ts +1 -1
  83. package/src/lib/BaseSuite.ts +16 -21
  84. package/src/lib/abstractBase.ts +59 -48
  85. package/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts +22 -10
  86. package/src/lib/baseBuilder.test/baseBuilder.test.specification.ts +9 -9
  87. package/src/lib/baseBuilder.test/baseBuilder.test.types.ts +7 -4
  88. package/src/lib/basebuilder.ts +13 -4
  89. package/src/lib/core.ts +1 -0
  90. package/src/lib/pmProxy.test/adapter.ts +2 -2
  91. package/src/lib/pmProxy.test/implementation.ts +3 -3
  92. package/src/lib/pmProxy.test/types.ts +0 -2
  93. package/src/lib/pmProxy.ts +135 -80
  94. package/testeranto/App.js +3 -3
  95. package/testeranto/bundles/node/core/metafile.json +8 -0
  96. package/testeranto/bundles/pure/core/metafile.json +8 -0
  97. package/testeranto/bundles/web/core/metafile.json +15086 -0
  98. package/testeranto/bundles/web/{allTests → core}/src/components/pure/ProjectPageView.test/index.html +1 -1
  99. package/testeranto/bundles/web/{allTests → core}/src/components/pure/ProjectPageView.test/index.mjs +4109 -1642
  100. package/testeranto/projects.json +1 -1
  101. package/testeranto/reports/core/config.json +24 -0
  102. package/testeranto/reports/{allTests → core}/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +6 -1
  103. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/logs.txt +59 -0
  104. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/message.txt +2 -0
  105. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/prompt.txt +27 -0
  106. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/suite-0/given-basicRender/then-0/butThen/happyPath.png +0 -0
  107. package/testeranto/reports/{allTests → core}/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +15 -33
  108. package/testeranto/reports/core/summary.json +9 -0
  109. package/testeranto.config.ts +49 -32
  110. package/tsc.log +78 -92
  111. package/testeranto/bundles/node/allTests/chunk-3EUGBAOM.mjs +0 -113
  112. package/testeranto/bundles/node/allTests/chunk-E75CSRER.mjs +0 -800
  113. package/testeranto/bundles/node/allTests/chunk-M6DO7VMB.mjs +0 -252
  114. package/testeranto/bundles/node/allTests/metafile.json +0 -1229
  115. package/testeranto/bundles/node/allTests/src/lib/BaseSuite.test/node.test.mjs +0 -323
  116. package/testeranto/bundles/node/allTests/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +0 -223
  117. package/testeranto/bundles/node/allTests/src/lib/classBuilder.test/classBuilder.test.mjs +0 -411
  118. package/testeranto/bundles/node/allTests/src/lib/core.test/core.test.mjs +0 -528
  119. package/testeranto/bundles/node/allTests/src/lib/pmProxy.test/index.mjs +0 -4752
  120. package/testeranto/bundles/pure/allTests/chunk-KHDVEHF7.mjs +0 -185
  121. package/testeranto/bundles/pure/allTests/chunk-VMUSFSZM.mjs +0 -797
  122. package/testeranto/bundles/pure/allTests/metafile.json +0 -1054
  123. package/testeranto/bundles/pure/allTests/src/Pure.test.mjs +0 -429
  124. package/testeranto/bundles/pure/allTests/src/lib/BaseSuite.test/pure.test.mjs +0 -425
  125. package/testeranto/bundles/pure/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +0 -381
  126. package/testeranto/bundles/web/allTests/chunk-HPYA4YZC.mjs +0 -2283
  127. package/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs +0 -997
  128. package/testeranto/bundles/web/allTests/metafile.json +0 -25
  129. package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.html +0 -19
  130. package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs +0 -440
  131. package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web.html +0 -19
  132. package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +0 -244
  133. package/testeranto/reports/allTests/config.json +0 -104
  134. package/testeranto/reports/allTests/src/Pure.test/pure/lint_errors.txt +0 -0
  135. package/testeranto/reports/allTests/src/Pure.test/pure/message.txt +0 -2
  136. package/testeranto/reports/allTests/src/Pure.test/pure/prompt.txt +0 -13
  137. package/testeranto/reports/allTests/src/Pure.test/pure/type_errors.txt +0 -101
  138. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/bdd_errors.txt +0 -1
  139. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/logs.txt +0 -50
  140. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/message.txt +0 -2
  141. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/prompt.txt +0 -17
  142. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/tests.json +0 -32
  143. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/bdd_errors.txt +0 -1
  144. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/lint_errors.txt +0 -0
  145. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/logs.txt +0 -52
  146. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/message.txt +0 -2
  147. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/prompt.txt +0 -13
  148. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/tests.json +0 -31
  149. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/type_errors.txt +0 -111
  150. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/bdd_errors.txt +0 -1
  151. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/lint_errors.txt +0 -0
  152. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/message.txt +0 -2
  153. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/prompt.txt +0 -14
  154. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/tests.json +0 -31
  155. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +0 -111
  156. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/bdd_errors.txt +0 -1
  157. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/lint_errors.txt +0 -0
  158. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/logs.txt +0 -108
  159. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/message.txt +0 -2
  160. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/prompt.txt +0 -14
  161. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/tests.json +0 -31
  162. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/type_errors.txt +0 -111
  163. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/bdd_errors.txt +0 -1
  164. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.txt +0 -0
  165. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/logs.txt +0 -35
  166. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/message.txt +0 -2
  167. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/prompt.txt +0 -16
  168. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +0 -77
  169. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +0 -62
  170. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.txt +0 -0
  171. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/message.txt +0 -2
  172. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/prompt.txt +0 -18
  173. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +0 -62
  174. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/bdd_errors.txt +0 -1
  175. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/lint_errors.txt +0 -0
  176. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/logs.txt +0 -69
  177. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/message.txt +0 -2
  178. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +0 -16
  179. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +0 -77
  180. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +0 -62
  181. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/bdd_errors.txt +0 -1
  182. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/lint_errors.txt +0 -0
  183. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/logs.txt +0 -700
  184. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/message.txt +0 -2
  185. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/prompt.txt +0 -16
  186. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/tests.json +0 -164
  187. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt +0 -138
  188. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/lint_errors.txt +0 -21
  189. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/logs.txt +0 -7
  190. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/message.txt +0 -2
  191. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/prompt.txt +0 -18
  192. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/type_errors.txt +0 -63
  193. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/bdd_errors.txt +0 -1
  194. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/lint_errors.txt +0 -20
  195. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/logs.txt +0 -31
  196. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/message.txt +0 -2
  197. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/prompt.txt +0 -16
  198. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/tests.json +0 -134
  199. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/type_errors.txt +0 -76
  200. package/testeranto/reports/allTests/summary.json +0 -79
  201. package/testeranto/reportsnode_build_errors +0 -20
  202. package/testeranto/reportspure_build_errors +0 -343
  203. package/testeranto/reportsweb_build_errors +0 -25
@@ -1,108 +0,0 @@
1
- [DEBUG] BaseSuite constructor - name: BaseSuite Core Functionality Tests index: 0
2
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":276,"columnNumber":12}
3
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":276,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":909,"columnNumber":6},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":837,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs","lineNumber":130,"columnNumber":8},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":758,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":889,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":905,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":963,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":980,"columnNumber":9},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs","lineNumber":431,"columnNumber":23}]
4
- [DEBUG] BaseSuite initialized: BaseSuite Core Functionality Tests 0
5
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":286,"columnNumber":12}
6
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":286,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":909,"columnNumber":6},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":837,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs","lineNumber":130,"columnNumber":8},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":758,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":889,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":905,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":963,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":980,"columnNumber":9},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs","lineNumber":431,"columnNumber":23}]
7
- [DEBUG] BaseSuite givens: initialization
8
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":287,"columnNumber":12}
9
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":287,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":909,"columnNumber":6},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":837,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs","lineNumber":130,"columnNumber":8},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":758,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":889,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":905,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":963,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":980,"columnNumber":9},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs","lineNumber":431,"columnNumber":23}]
10
- [DEBUG] BaseSuite constructor - name: BaseSuite Core Functionality Tests index: 0
11
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":276,"columnNumber":12}
12
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":276,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":909,"columnNumber":6},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":837,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":130,"columnNumber":8},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":758,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":889,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":905,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":963,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":980,"columnNumber":9},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":431,"columnNumber":23}]
13
- [DEBUG] BaseSuite initialized: BaseSuite Core Functionality Tests 0
14
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":286,"columnNumber":12}
15
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":286,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":909,"columnNumber":6},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":837,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":130,"columnNumber":8},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":758,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":889,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":905,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":963,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":980,"columnNumber":9},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":431,"columnNumber":23}]
16
- [DEBUG] BaseSuite givens: initialization
17
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":287,"columnNumber":12}
18
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":287,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":909,"columnNumber":6},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":837,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":130,"columnNumber":8},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":758,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":889,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":905,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":963,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":980,"columnNumber":9},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":431,"columnNumber":23}]
19
- [Given] Setting currentStep for beforeEach: Default
20
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":601,"columnNumber":14}
21
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":601,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":333,"columnNumber":31}]
22
- [DEBUG] Running beforeEach with subject: JSHandle@function
23
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":371,"columnNumber":12}
24
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":371,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":931,"columnNumber":29},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":603,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":333,"columnNumber":31}]
25
- [DEBUG] Creating MockSuite with name: testSuite index: 0
26
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":109,"columnNumber":12}
27
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":109,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":183,"columnNumber":20},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":373,"columnNumber":26},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":931,"columnNumber":29},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":603,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":333,"columnNumber":31}]
28
- [DEBUG] BaseSuite constructor - name: testSuite index: 0
29
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":276,"columnNumber":12}
30
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":276,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":111,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":183,"columnNumber":20},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":373,"columnNumber":26},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":931,"columnNumber":29},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":603,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":333,"columnNumber":31}]
31
- [DEBUG] BaseSuite initialized: testSuite 0
32
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":286,"columnNumber":12}
33
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":286,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":111,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":183,"columnNumber":20},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":373,"columnNumber":26},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":931,"columnNumber":29},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":603,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":333,"columnNumber":31}]
34
- [DEBUG] BaseSuite givens: testGiven
35
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":287,"columnNumber":12}
36
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":287,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":111,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":183,"columnNumber":20},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":373,"columnNumber":26},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":931,"columnNumber":29},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":603,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":333,"columnNumber":31}]
37
- [DEBUG] MockSuite created: testSuite 0
38
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":124,"columnNumber":12}
39
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":124,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":183,"columnNumber":20},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":373,"columnNumber":26},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":931,"columnNumber":29},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":603,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":333,"columnNumber":31}]
40
- [DEBUG] Created test suite: testSuite 0
41
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":184,"columnNumber":14}
42
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":184,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":373,"columnNumber":26},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":931,"columnNumber":29},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":603,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":333,"columnNumber":31}]
43
- [DEBUG] beforeEach result: JSHandle@object
44
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":377,"columnNumber":14}
45
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":377,"columnNumber":14}]
46
- [Then] Setting currentStep for butThen: SuiteNameMatches: testSuite
47
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":720,"columnNumber":12}
48
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":720,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":627,"columnNumber":33}]
49
- [DEBUG] butThen - input store: {
50
- "name": "testSuite",
51
- "index": 0,
52
- "testStore": true,
53
- "testSelection": false
54
- }
55
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":396,"columnNumber":12}
56
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":396,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":952,"columnNumber":35},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":722,"columnNumber":16},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":627,"columnNumber":33}]
57
- [DEBUG] butThen - created testSelection: {
58
- "testSelection": false
59
- }
60
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":404,"columnNumber":12}
61
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":404,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":952,"columnNumber":35},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":722,"columnNumber":16},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":627,"columnNumber":33}]
62
- [DEBUG] SuiteNameMatches - expected: testSuite actual:
63
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":266,"columnNumber":14}
64
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":266,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":726,"columnNumber":28},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":409,"columnNumber":27},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":952,"columnNumber":35},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":722,"columnNumber":16},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":627,"columnNumber":33}]
65
- Then error: Error: Suite name is undefined. Expected: testSuite
66
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":418,"columnNumber":14}
67
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":418,"columnNumber":14}]
68
- Full store state: {
69
- "name": "testSuite",
70
- "index": 0,
71
- "testStore": true,
72
- "testSelection": false
73
- }
74
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":419,"columnNumber":14}
75
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":419,"columnNumber":14}]
76
- [Then] Setting currentStep for butThen: SuiteIndexMatches: 0
77
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":720,"columnNumber":12}
78
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":720,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":627,"columnNumber":33}]
79
- [DEBUG] butThen - input store: {
80
- "name": "testSuite",
81
- "index": 0,
82
- "testStore": true,
83
- "testSelection": false
84
- }
85
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":396,"columnNumber":12}
86
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":396,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":952,"columnNumber":35},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":722,"columnNumber":16},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":627,"columnNumber":33}]
87
- [DEBUG] butThen - created testSelection: {
88
- "testSelection": false
89
- }
90
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":404,"columnNumber":12}
91
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":404,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":952,"columnNumber":35},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":722,"columnNumber":16},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":627,"columnNumber":33}]
92
- Then error: Error: Expected suite index 0, got undefined
93
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":418,"columnNumber":14}
94
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":418,"columnNumber":14}]
95
- Full store state: {
96
- "name": "testSuite",
97
- "index": 0,
98
- "testStore": true,
99
- "testSelection": false
100
- }
101
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":419,"columnNumber":14}
102
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs?cacheBust=1753431755759","lineNumber":419,"columnNumber":14}]
103
- [DEBUG] Features extracted: BaseSuite should initialize with correct name and index
104
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":294,"columnNumber":14}
105
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":294,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":308,"columnNumber":21},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":784,"columnNumber":23},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":795,"columnNumber":32}]
106
- [DEBUG] Features extracted: BaseSuite should initialize with correct name and index
107
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":294,"columnNumber":14}
108
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":294,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs","lineNumber":802,"columnNumber":32}]
@@ -1,2 +0,0 @@
1
-
2
- Fix the failing tests described in testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/tests.json and testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/logs.txt. Focus on the bdd tests before all other concerns. You may add any debugging you think is necessary.
@@ -1,14 +0,0 @@
1
-
2
- /add src/lib/BaseSuite.test/web.test.ts
3
- /add src/lib/BaseSuite.test/test.ts
4
- /add src/lib/BaseSuite.test/mock.ts
5
-
6
- /read node_modules/testeranto/docs/index.md
7
- /read node_modules/testeranto/docs/style.md
8
- /read node_modules/testeranto/docs/testing.ai.txt
9
- /read node_modules/testeranto/src/CoreTypes.ts
10
-
11
- /read testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/tests.json
12
- /read testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/logs.txt
13
- /read testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/type_errors.txt
14
- /read testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/lint_errors.txt
@@ -1,31 +0,0 @@
1
- {
2
- "name": "BaseSuite Core Functionality Tests",
3
- "givens": [
4
- {
5
- "key": "initialization",
6
- "name": "Default",
7
- "whens": [],
8
- "thens": [
9
- {
10
- "name": "SuiteNameMatches: testSuite",
11
- "error": "Error: Suite name is undefined. Expected: testSuite",
12
- "artifacts": []
13
- },
14
- {
15
- "name": "SuiteIndexMatches: 0",
16
- "error": "Error: Expected suite index 0, got undefined",
17
- "artifacts": []
18
- }
19
- ],
20
- "error": null,
21
- "features": [
22
- "BaseSuite should initialize with correct name and index"
23
- ],
24
- "artifacts": []
25
- }
26
- ],
27
- "fails": 0,
28
- "features": [
29
- "BaseSuite should initialize with correct name and index"
30
- ]
31
- }
@@ -1,111 +0,0 @@
1
- /Users/adam/Code/testeranto/src/lib/abstractBase.ts (244,17): Catch clause variable type annotation must be 'any' or 'unknown' if specified.
2
- /Users/adam/Code/testeranto/src/lib/abstractBase.ts (301,39): Expected 1 arguments, but got 2.
3
- /Users/adam/Code/testeranto/src/lib/basebuilder.ts (79,15): This expression is not callable.
4
- Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
5
- Type 'void' has no call signatures.
6
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (36,9): Property 'andWhen' in type 'MockWhen' is not assignable to the same property in base type 'BaseWhen<I>'.
7
- Type '(store: TestStore, whenCB: (store: TestStore) => Promise<TestStore>, testResource: any, pm: IPM) => Promise<TestStore>' is not assignable to type '(store: TestStore, whenCB: (x: TestSelection) => (store: TestStore) => Promise<TestSelection>, testResource: any, pm: IPM) => Promise<...>'.
8
- Types of parameters 'whenCB' and 'whenCB' are incompatible.
9
- Types of parameters 'x' and 'store' are incompatible.
10
- Type 'TestStore' is not assignable to type 'TestSelection'.
11
- Types of property 'testSelection' are incompatible.
12
- Type 'boolean | undefined' is not assignable to type 'boolean'.
13
- Type 'undefined' is not assignable to type 'boolean'.
14
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (66,9): Property 'butThen' in type 'MockThen' is not assignable to the same property in base type 'BaseThen<I>'.
15
- Types of parameters 'thenCB' and 'thenCB' are incompatible.
16
- Type 'Promise<BaseSuite<any, any>>' is not assignable to type 'Promise<TestSelection>'.
17
- Property 'testSelection' is missing in type 'BaseSuite<any, any>' but required in type 'TestSelection'.
18
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (83,7): Object literal may only specify known properties, and 'name' does not exist in type 'TestSelection'.
19
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (126,10): Type 'MockWhen' is not assignable to type 'BaseWhen<I>'.
20
- Types of property 'andWhen' are incompatible.
21
- Type '(store: TestStore, whenCB: (store: TestStore) => Promise<TestStore>, testResource: any, pm: IPM) => Promise<TestStore>' is not assignable to type '(store: TestStore, whenCB: (x: TestSelection) => (store: TestStore) => Promise<TestSelection>, testResource: any, pm: IPM) => Promise<...>'.
22
- Types of parameters 'whenCB' and 'whenCB' are incompatible.
23
- Types of parameters 'x' and 'store' are incompatible.
24
- Type 'TestStore' is not assignable to type 'TestSelection'.
25
- Types of property 'testSelection' are incompatible.
26
- Type 'boolean | undefined' is not assignable to type 'boolean'.
27
- Type 'undefined' is not assignable to type 'boolean'.
28
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (126,41): Type 'Promise<{ testStore: boolean; }>' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
29
- Type 'Promise<{ testStore: boolean; }>' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
30
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (129,13): Type 'Promise<{ testSelection: boolean; }>' is not assignable to type 'Promise<(store: TestStore) => Promise<TestSelection>>'.
31
- Type '{ testSelection: boolean; }' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
32
- Type '{ testSelection: boolean; }' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
33
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (126,5): Type '() => MockSuite' is not assignable to type '() => () => Promise<TestStore>'.
34
- Type 'MockSuite' is not assignable to type '() => Promise<TestStore>'.
35
- Type 'MockSuite' provides no match for the signature '(): Promise<TestStore>'.
36
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (137,15): Property 'artifacts' does not exist on type 'MockSuite'.
37
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (144,15): Property 'specs' does not exist on type 'MockSuite'.
38
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (144,38): Property 'specs' does not exist on type 'MockSuite'.
39
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (151,15): Property 'testJobs' does not exist on type 'MockSuite'.
40
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (151,41): Property 'testJobs' does not exist on type 'MockSuite'.
41
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (157,7): Type '(suite: MockSuite) => Promise<MockSuite>' is not assignable to type '(zel: TestSelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: TestStore) => Promise<TestStore>>'.
42
- Types of parameters 'suite' and 'zel' are incompatible.
43
- Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 9 more.
44
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (178,11): Type '() => void' is not assignable to type '((selector: string) => boolean) | ((selector: string) => boolean) | ((selector: string, page: string) => Promise<unknown>)'.
45
- Type '() => void' is not assignable to type '(selector: string) => boolean'.
46
- Type 'void' is not assignable to type 'boolean'.
47
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (180,11): Type '() => void' is not assignable to type '((p: any) => string) | ((p: any) => string) | ((p: any) => Promise<unknown>)'.
48
- Type '() => void' is not assignable to type '(p: any) => string'.
49
- Type 'void' is not assignable to type 'string'.
50
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (185,11): Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'.
51
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (199,13): Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'.
52
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (224,5): Type '(expectedName: string) => ((suite: MockSuite) => MockSuite)' is not assignable to type '(It_0: string) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
53
- Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
54
- Types of parameters 'suite' and 'ssel' are incompatible.
55
- Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 9 more.
56
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (244,5): Type '(expectedIndex: number) => ((suite: MockSuite) => MockSuite)' is not assignable to type '(It_0: number) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
57
- Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
58
- Types of parameters 'suite' and 'ssel' are incompatible.
59
- Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 9 more.
60
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (255,5): Type '(feature: string) => ((suite: MockSuite) => MockSuite)' is not assignable to type '(feature: string) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
61
- Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
62
- Types of parameters 'suite' and 'ssel' are incompatible.
63
- Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 9 more.
64
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (276,58): Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
65
- Types of parameters 'suite' and 'ssel' are incompatible.
66
- Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 9 more.
67
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (328,19): Property 'specs' does not exist on type 'MockSuite'.
68
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (337,19): Property 'testJobs' does not exist on type 'MockSuite'.
69
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (345,19): Property 'artifacts' does not exist on type 'MockSuite'.
70
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (378,22): Property 'index' does not exist on type '() => Promise<TestStore>'.
71
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (379,22): Property 'store' does not exist on type '() => Promise<TestStore>'.
72
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (383,22): Property 'index' does not exist on type '() => Promise<TestStore>'.
73
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (386,19): Property 'store' does not exist on type '() => Promise<TestStore>'.
74
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (399,44): Expected 1 arguments, but got 2.
75
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (401,3): Type '(store: TestStore, thenCB: (selection: TestSelection) => Promise<TestSelection>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<TestSelection>' is not assignable to type '(store: TestStore, thenCB: (store: TestStore) => Promise<TestSelection>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<...>'.
76
- Types of parameters 'thenCB' and 'thenCB' are incompatible.
77
- Type '(store: TestStore) => Promise<TestSelection>' is not assignable to type '(selection: TestSelection) => Promise<TestSelection>'.
78
- Types of parameters 'store' and 'selection' are incompatible.
79
- Property 'testStore' is missing in type 'TestSelection' but required in type 'TestStore'.
80
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (441,3): Type '(store: I["istore"]) => I["istore"]' is not assignable to type '(store: TestStore, key: string, pm: IPM) => Promise<unknown>'.
81
- Type 'TestStore' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
82
- /Users/adam/Code/testeranto/src/lib/classBuilder.ts (86,18): A spread argument must either have a tuple type or be passed to a rest parameter.
83
- /Users/adam/Code/testeranto/src/lib/classBuilder.ts (101,28): A spread argument must either have a tuple type or be passed to a rest parameter.
84
- /Users/adam/Code/testeranto/src/lib/core.ts (46,7): Argument of type 'Omit<{ suites: import("/Users/adam/Code/testeranto/src/Types").TestSuiteImplementation<O>; givens: import("/Users/adam/Code/testeranto/src/Types").TestGivenImplementation<I, O>; whens: import("/Users/adam/Code/testeranto/src/Types").TestWhenImplementation<...>; thens: import("/Users/adam/Code/testeranto/src/Types")....' is not assignable to parameter of type 'Omit<{ suites: import("/Users/adam/Code/testeranto/src/Types").TestSuiteImplementation<O>; givens: import("/Users/adam/Code/testeranto/src/Types").TestGivenImplementation<I, O>; whens: import("/Users/adam/Code/testeranto/src/Types").TestWhenImplementation<...>; thens: import("/Users/adam/Code/testeranto/src/Types")....'.
85
- Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }' is not assignable to type '{ suites: Record<string, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'.
86
- Types of property 'suites' are incompatible.
87
- Type 'Record<string, any>' is not assignable to type 'Record<string, never>'.
88
- 'string' index signatures are incompatible.
89
- Type 'any' is not assignable to type 'never'.
90
- /Users/adam/Code/testeranto/src/lib/index.ts (16,3): Type '(subject: T["isubject"], initialValues: T["iinitialValues"], x: unknown, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<T["isubject"]>' is not assignable to type '(subject: T["isubject"], initializer: (c?: any) => T["given"], testResource: ITTestResourceConfiguration, initialValues: any, pm: IPM) => Promise<...>'.
91
- Types of parameters 'initialValues' and 'initializer' are incompatible.
92
- Type '(c?: any) => T["given"]' is not assignable to type 'T["iinitialValues"]'.
93
- 'T["iinitialValues"]' could be instantiated with an arbitrary type which could be unrelated to '(c?: any) => T["given"]'.
94
- /Users/adam/Code/testeranto/src/lib/index.ts (18,20): Type '"iinitialValues"' cannot be used to index type 'T'.
95
- /Users/adam/Code/testeranto/src/lib/index.ts (40,13): This expression is not callable.
96
- Type 'unknown' has no call signatures.
97
- /Users/adam/Code/testeranto/src/lib/index.ts (52,3): Type '{ assertThis?: ((x: T["then"]) => any) | undefined; andWhen?: ((store: T["istore"], whenCB: T["when"], testResource: ITTestResourceConfiguration, pm: IPM) => Promise<T["istore"]>) | undefined; ... 4 more ...; beforeEach?: ((subject: T["isubject"], initializer: (c?: any) => T["given"], testResource: ITTestResourceCon...' is not assignable to type 'ITestAdapter<T>'.
98
- Types of property 'assertThis' are incompatible.
99
- Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
100
- Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
101
- /Users/adam/Code/testeranto/src/PM/pure.ts (114,3): Property 'customScreenShot' in type 'PM_Pure' is not assignable to the same property in base type 'PM'.
102
- Type '(opts: ScreencastOptions, page: string) => any' is not assignable to type '(opts: { path: string; }, page?: string | undefined) => any'.
103
- Types of parameters 'opts' and 'opts' are incompatible.
104
- Type '{ path: string; }' is not assignable to type 'ScreencastOptions'.
105
- Types of property 'path' are incompatible.
106
- Type 'string' is not assignable to type '`${string}.webm`'.
107
- /Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
108
- /Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
109
- /Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
110
- /Users/adam/Code/testeranto/src/Web.ts (43,7): Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.
111
- Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
@@ -1,35 +0,0 @@
1
- stderr > Starting inspector on 127.0.0.1:9229 failed: address already in use
2
- stdout > [DEBUG] BaseSuite constructor - name: Testing BaseBuilder functionality index: 0
3
- [DEBUG] BaseSuite initialized: Testing BaseBuilder functionality 0
4
- [DEBUG] BaseSuite givens: testInitialization,testSpecsGeneration,testJobsCreation
5
- receiveTestResourceConfig {"name":"src/lib/baseBuilder.test/baseBuilder.test.node.ts","ports":[],"fs":"testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node","browserWSEndpoint":"ws://127.0.0.1:3234/devtools/browser/542e424f-5d11-4332-9796-c106911994da"}
6
- [Given] Setting currentStep for beforeEach: Default
7
- Initializing test with: {
8
- subject: BaseBuilder {},
9
- initializer: [Function: Default],
10
- initialValues: []
11
- }
12
- Initialization result: [object Object]
13
- [Then] Setting currentStep for butThen: initializedProperly: undefined
14
- [Then] Setting currentStep for butThen: artifactsTracked: undefined
15
- [Then] Setting currentStep for butThen: jobsCreated: undefined
16
- [Then] Setting currentStep for butThen: specsGenerated: undefined
17
- [Given] Setting currentStep for beforeEach: Default
18
- Initializing test with: {
19
- subject: BaseBuilder {},
20
- initializer: [Function: Default],
21
- initialValues: []
22
- }
23
- Initialization result: [object Object]
24
- [Then] Setting currentStep for butThen: specsGenerated: undefined
25
- [Given] Setting currentStep for beforeEach: Default
26
- Initializing test with: {
27
- subject: BaseBuilder {},
28
- initializer: [Function: Default],
29
- initialValues: []
30
- }
31
- Initialization result: [object Object]
32
- [Then] Setting currentStep for butThen: jobsCreated: undefined
33
- stdout > [DEBUG] Features extracted: BaseBuilder should initialize correctly,BaseBuilder should generate specs from test specification,BaseBuilder should create test jobs
34
- stdout > [DEBUG] Features extracted: BaseBuilder should initialize correctly,BaseBuilder should generate specs from test specification,BaseBuilder should create test jobs
35
- stderr > goodbye node with failures 0
@@ -1,2 +0,0 @@
1
-
2
- Fix the failing tests described in testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json and testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/logs.txt. Focus on the bdd tests before all other concerns. You may add any debugging you think is necessary.
@@ -1,16 +0,0 @@
1
-
2
- /add src/lib/baseBuilder.test/baseBuilder.test.specification.ts
3
- /add src/lib/baseBuilder.test/baseBuilder.test.mock.ts
4
- /add src/lib/baseBuilder.test/baseBuilder.test.implementation.ts
5
- /add src/lib/baseBuilder.test/baseBuilder.test.adapter.ts
6
- /add src/lib/baseBuilder.test/baseBuilder.test.node.ts
7
-
8
- /read node_modules/testeranto/docs/index.md
9
- /read node_modules/testeranto/docs/style.md
10
- /read node_modules/testeranto/docs/testing.ai.txt
11
- /read node_modules/testeranto/src/CoreTypes.ts
12
-
13
- /read testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json
14
- /read testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/logs.txt
15
- /read testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt
16
- /read testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.txt
@@ -1,77 +0,0 @@
1
- {
2
- "name": "Testing BaseBuilder functionality",
3
- "givens": [
4
- {
5
- "key": "testInitialization",
6
- "name": "Default",
7
- "whens": [],
8
- "thens": [
9
- {
10
- "name": "initializedProperly: undefined",
11
- "error": false,
12
- "artifacts": []
13
- },
14
- {
15
- "name": "artifactsTracked: undefined",
16
- "error": false,
17
- "artifacts": []
18
- },
19
- {
20
- "name": "jobsCreated: undefined",
21
- "error": false,
22
- "artifacts": []
23
- },
24
- {
25
- "name": "specsGenerated: undefined",
26
- "error": false,
27
- "artifacts": []
28
- }
29
- ],
30
- "error": null,
31
- "features": [
32
- "BaseBuilder should initialize correctly"
33
- ],
34
- "artifacts": []
35
- },
36
- {
37
- "key": "testSpecsGeneration",
38
- "name": "Default",
39
- "whens": [],
40
- "thens": [
41
- {
42
- "name": "specsGenerated: undefined",
43
- "error": false,
44
- "artifacts": []
45
- }
46
- ],
47
- "error": null,
48
- "features": [
49
- "BaseBuilder should generate specs from test specification"
50
- ],
51
- "artifacts": []
52
- },
53
- {
54
- "key": "testJobsCreation",
55
- "name": "Default",
56
- "whens": [],
57
- "thens": [
58
- {
59
- "name": "jobsCreated: undefined",
60
- "error": false,
61
- "artifacts": []
62
- }
63
- ],
64
- "error": null,
65
- "features": [
66
- "BaseBuilder should create test jobs"
67
- ],
68
- "artifacts": []
69
- }
70
- ],
71
- "fails": 0,
72
- "features": [
73
- "BaseBuilder should initialize correctly",
74
- "BaseBuilder should generate specs from test specification",
75
- "BaseBuilder should create test jobs"
76
- ]
77
- }
@@ -1,62 +0,0 @@
1
- /Users/adam/Code/testeranto/src/lib/abstractBase.ts (244,17): Catch clause variable type annotation must be 'any' or 'unknown' if specified.
2
- /Users/adam/Code/testeranto/src/lib/abstractBase.ts (301,39): Expected 1 arguments, but got 2.
3
- /Users/adam/Code/testeranto/src/lib/baseBuilder.test/baseBuilder.test.adapter.ts (8,49): Type 'Promise<{}>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.
4
- Type '{}' is missing the following properties from type 'BaseBuilder<any, any, any, any, any, any>': specs, assertThis, testResourceRequirement, artifacts, and 12 more.
5
- /Users/adam/Code/testeranto/src/lib/baseBuilder.test/baseBuilder.test.adapter.ts (9,3): Type '(subject: import("/Users/adam/Code/testeranto/src/lib/basebuilder").BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => import("/Users/adam/Code/testeranto/src/lib/basebuilder").BaseBuilder<any, any, any, any, any, any>, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestR...' is not assignable to type '(subject: import("/Users/adam/Code/testeranto/src/lib/basebuilder").BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => import("/Users/adam/Code/testeranto/src/lib/basebuilder").BaseBuilder<any, any, any, any, any, any>, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestR...'. Two different types with this name exist, but they are unrelated.
6
- Type 'Promise<() => BaseBuilder<any, any, any, any, any, any>>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.
7
- Type '() => BaseBuilder<any, any, any, any, any, any>' is not assignable to type 'BaseBuilder<any, any, any, any, any, any>'.
8
- /Users/adam/Code/testeranto/src/lib/baseBuilder.test/baseBuilder.test.adapter.ts (20,26): Expected 1 arguments, but got 2.
9
- /Users/adam/Code/testeranto/src/lib/baseBuilder.test/baseBuilder.test.adapter.ts (23,26): Expected 1 arguments, but got 2.
10
- /Users/adam/Code/testeranto/src/lib/baseBuilder.test/baseBuilder.test.adapter.ts (25,25): Type 'BaseBuilder<any, any, any, any, any, any>' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
11
- /Users/adam/Code/testeranto/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts (19,5): Type '() => MockBaseBuilder<Ibdd_in_any, Ibdd_out_any, {}, {}, {}, {}>' is not assignable to type '() => () => BaseBuilder<any, any, any, any, any, any>'.
12
- Type 'MockBaseBuilder<Ibdd_in_any, Ibdd_out_any, {}, {}, {}, {}>' is not assignable to type '() => BaseBuilder<any, any, any, any, any, any>'.
13
- Type 'MockBaseBuilder<Ibdd_in_any, Ibdd_out_any, {}, {}, {}, {}>' provides no match for the signature '(): BaseBuilder<any, any, any, any, any, any>'.
14
- /Users/adam/Code/testeranto/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts (31,57): Argument of type '{}' is not assignable to parameter of type 'ITTestResourceRequest'.
15
- Property 'ports' is missing in type '{}' but required in type 'ITTestResourceRequest'.
16
- /Users/adam/Code/testeranto/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts (34,54): Argument of type '{}' is not assignable to parameter of type 'ITTestResourceRequest'.
17
- Property 'ports' is missing in type '{}' but required in type 'ITTestResourceRequest'.
18
- /Users/adam/Code/testeranto/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts (43,25): Cannot find name 'ITestJob'.
19
- /Users/adam/Code/testeranto/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts (50,32): Type '(builder: TestSubject) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.
20
- Type 'TestSubject' is not assignable to type '(store: any) => any'.
21
- Type 'MockBaseBuilder<any, any, any, any, any, any>' provides no match for the signature '(store: any): any'.
22
- /Users/adam/Code/testeranto/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts (54,100): Property 'constructor' does not exist on type 'never'.
23
- /Users/adam/Code/testeranto/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts (75,27): Type '(builder: TestSubject) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.
24
- Type 'TestSubject' is not assignable to type '(store: any) => any'.
25
- Type 'MockBaseBuilder<any, any, any, any, any, any>' provides no match for the signature '(store: any): any'.
26
- /Users/adam/Code/testeranto/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts (81,24): Type '(builder: TestSubject) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.
27
- Type 'TestSubject' is not assignable to type '(store: any) => any'.
28
- Type 'MockBaseBuilder<any, any, any, any, any, any>' provides no match for the signature '(store: any): any'.
29
- /Users/adam/Code/testeranto/src/lib/baseBuilder.test/baseBuilder.test.specification.ts (18,16): Property 'artifactsTracked' does not exist on type 'ThenSpecification<I, O>'.
30
- /Users/adam/Code/testeranto/src/lib/basebuilder.ts (79,15): This expression is not callable.
31
- Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
32
- Type 'void' has no call signatures.
33
- /Users/adam/Code/testeranto/src/lib/classBuilder.ts (86,18): A spread argument must either have a tuple type or be passed to a rest parameter.
34
- /Users/adam/Code/testeranto/src/lib/classBuilder.ts (101,28): A spread argument must either have a tuple type or be passed to a rest parameter.
35
- /Users/adam/Code/testeranto/src/lib/core.ts (46,7): Argument of type 'Omit<{ suites: import("/Users/adam/Code/testeranto/src/Types").TestSuiteImplementation<O>; givens: import("/Users/adam/Code/testeranto/src/Types").TestGivenImplementation<I, O>; whens: import("/Users/adam/Code/testeranto/src/Types").TestWhenImplementation<...>; thens: import("/Users/adam/Code/testeranto/src/Types")....' is not assignable to parameter of type 'Omit<{ suites: import("/Users/adam/Code/testeranto/src/Types").TestSuiteImplementation<O>; givens: import("/Users/adam/Code/testeranto/src/Types").TestGivenImplementation<I, O>; whens: import("/Users/adam/Code/testeranto/src/Types").TestWhenImplementation<...>; thens: import("/Users/adam/Code/testeranto/src/Types")....'.
36
- Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }' is not assignable to type '{ suites: Record<string, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'.
37
- Types of property 'suites' are incompatible.
38
- Type 'Record<string, any>' is not assignable to type 'Record<string, never>'.
39
- 'string' index signatures are incompatible.
40
- Type 'any' is not assignable to type 'never'.
41
- /Users/adam/Code/testeranto/src/lib/index.ts (16,3): Type '(subject: T["isubject"], initialValues: T["iinitialValues"], x: unknown, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<T["isubject"]>' is not assignable to type '(subject: T["isubject"], initializer: (c?: any) => T["given"], testResource: ITTestResourceConfiguration, initialValues: any, pm: IPM) => Promise<...>'.
42
- Types of parameters 'initialValues' and 'initializer' are incompatible.
43
- Type '(c?: any) => T["given"]' is not assignable to type 'T["iinitialValues"]'.
44
- 'T["iinitialValues"]' could be instantiated with an arbitrary type which could be unrelated to '(c?: any) => T["given"]'.
45
- /Users/adam/Code/testeranto/src/lib/index.ts (18,20): Type '"iinitialValues"' cannot be used to index type 'T'.
46
- /Users/adam/Code/testeranto/src/lib/index.ts (40,13): This expression is not callable.
47
- Type 'unknown' has no call signatures.
48
- /Users/adam/Code/testeranto/src/lib/index.ts (52,3): Type '{ assertThis?: ((x: T["then"]) => any) | undefined; andWhen?: ((store: T["istore"], whenCB: T["when"], testResource: ITTestResourceConfiguration, pm: IPM) => Promise<T["istore"]>) | undefined; ... 4 more ...; beforeEach?: ((subject: T["isubject"], initializer: (c?: any) => T["given"], testResource: ITTestResourceCon...' is not assignable to type 'ITestAdapter<T>'.
49
- Types of property 'assertThis' are incompatible.
50
- Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
51
- Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
52
- /Users/adam/Code/testeranto/src/Node.ts (34,7): Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.
53
- Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
54
- /Users/adam/Code/testeranto/src/PM/pure.ts (114,3): Property 'customScreenShot' in type 'PM_Pure' is not assignable to the same property in base type 'PM'.
55
- Type '(opts: ScreencastOptions, page: string) => any' is not assignable to type '(opts: { path: string; }, page?: string | undefined) => any'.
56
- Types of parameters 'opts' and 'opts' are incompatible.
57
- Type '{ path: string; }' is not assignable to type 'ScreencastOptions'.
58
- Types of property 'path' are incompatible.
59
- Type 'string' is not assignable to type '`${string}.webm`'.
60
- /Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
61
- /Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
62
- /Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
@@ -1,2 +0,0 @@
1
-
2
- Fix the failing tests described in testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/tests.json and testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/logs.txt. Focus on the bdd tests before all other concerns. You may add any debugging you think is necessary.
@@ -1,18 +0,0 @@
1
-
2
- /add src/PM/web.ts
3
- /add src/Web.ts
4
- /add src/lib/baseBuilder.test/baseBuilder.test.specification.ts
5
- /add src/lib/baseBuilder.test/baseBuilder.test.mock.ts
6
- /add src/lib/baseBuilder.test/baseBuilder.test.implementation.ts
7
- /add src/lib/baseBuilder.test/baseBuilder.test.adapter.ts
8
- /add src/lib/baseBuilder.test/baseBuilder.test.pure.ts
9
-
10
- /read node_modules/testeranto/docs/index.md
11
- /read node_modules/testeranto/docs/style.md
12
- /read node_modules/testeranto/docs/testing.ai.txt
13
- /read node_modules/testeranto/src/CoreTypes.ts
14
-
15
- /read testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/tests.json
16
- /read testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/logs.txt
17
- /read testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt
18
- /read testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.txt