testeranto 0.172.0 → 0.173.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 (193) hide show
  1. package/README.md +2 -4
  2. package/dist/common/src/PM/base.js +4 -0
  3. package/dist/common/src/PM/main.js +11 -4
  4. package/dist/common/src/PM/node.js +1 -1
  5. package/dist/common/src/PM/web.js +3 -3
  6. package/dist/common/src/ReportServer.js +2 -126
  7. package/dist/common/src/ReportServer.test.ts/index.js +78 -0
  8. package/dist/common/src/ReportServerLib.js +135 -0
  9. package/dist/common/src/components/pure/ProjectPageView.test/implementation.js +1 -1
  10. package/dist/common/src/lib/abstractBase.js +2 -0
  11. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +10 -9
  12. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.specification.js +7 -7
  13. package/dist/common/src/lib/basebuilder.js +8 -2
  14. package/dist/common/src/lib/pmProxy.js +54 -150
  15. package/dist/common/testeranto.config.js +35 -20
  16. package/dist/common/tsconfig.common.tsbuildinfo +1 -1
  17. package/dist/module/src/PM/base.js +4 -0
  18. package/dist/module/src/PM/main.js +11 -4
  19. package/dist/module/src/PM/node.js +1 -1
  20. package/dist/module/src/PM/web.js +3 -3
  21. package/dist/module/src/ReportServer.js +2 -123
  22. package/dist/module/src/ReportServer.test.ts/index.js +73 -0
  23. package/dist/module/src/ReportServerLib.js +128 -0
  24. package/dist/module/src/TestPage.js +29 -17
  25. package/dist/module/src/components/pure/ProjectPageView.test/implementation.js +1 -1
  26. package/dist/module/src/components/pure/TestPageView.js +29 -17
  27. package/dist/module/src/lib/abstractBase.js +2 -0
  28. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +10 -9
  29. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.specification.js +7 -7
  30. package/dist/module/src/lib/basebuilder.js +8 -2
  31. package/dist/module/src/lib/pmProxy.js +54 -150
  32. package/dist/module/testeranto.config.js +35 -20
  33. package/dist/module/tsconfig.module.tsbuildinfo +1 -1
  34. package/dist/prebuild/App.js +3 -3
  35. package/dist/prebuild/ReportServer.mjs +15 -9
  36. package/dist/prebuild/run.mjs +14 -4
  37. package/dist/types/src/PM/node.d.ts +1 -1
  38. package/dist/types/src/PM/web.d.ts +1 -1
  39. package/dist/types/src/ReportServer.test.ts/index.d.ts +29 -0
  40. package/dist/types/src/ReportServerLib.d.ts +2 -0
  41. package/dist/types/src/Types.d.ts +0 -1
  42. package/dist/types/src/components/pure/ProjectPageView.test/index.d.ts +2 -1
  43. package/dist/types/src/lib/abstractBase.d.ts +1 -1
  44. package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.types.d.ts +7 -4
  45. package/dist/types/tsconfig.types.tsbuildinfo +1 -1
  46. package/package.json +2 -2
  47. package/src/PM/base.ts +5 -0
  48. package/src/PM/main.ts +12 -4
  49. package/src/PM/node.ts +1 -1
  50. package/src/PM/web.ts +3 -3
  51. package/src/ReportServer.test.ts/index.ts +194 -0
  52. package/src/ReportServer.ts +2 -132
  53. package/src/ReportServerLib.ts +144 -0
  54. package/src/TestPage.tsx +65 -5
  55. package/src/Types.ts +0 -1
  56. package/src/components/pure/ProjectPageView.test/implementation.tsx +1 -1
  57. package/src/components/pure/TestPageView.tsx +65 -5
  58. package/src/lib/abstractBase.ts +4 -1
  59. package/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts +22 -10
  60. package/src/lib/baseBuilder.test/baseBuilder.test.specification.ts +9 -9
  61. package/src/lib/baseBuilder.test/baseBuilder.test.types.ts +7 -4
  62. package/src/lib/basebuilder.ts +7 -4
  63. package/src/lib/pmProxy.ts +78 -155
  64. package/testeranto/App.js +3 -3
  65. package/testeranto/bundles/node/allTests/metafile.json +38 -781
  66. package/testeranto/bundles/node/allTests/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +983 -24
  67. package/testeranto/bundles/node/core/metafile.json +486 -0
  68. package/testeranto/bundles/{pure/allTests/chunk-VMUSFSZM.mjs → node/core/src/lib/baseBuilder.test/baseBuilder.test.node.mjs} +797 -412
  69. package/testeranto/bundles/node/staticSite/metafile.json +593 -0
  70. package/testeranto/bundles/node/staticSite/src/ReportServer.test.ts/index.mjs +1594 -0
  71. package/testeranto/bundles/pure/allTests/metafile.json +122 -550
  72. package/testeranto/bundles/pure/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +740 -27
  73. package/testeranto/bundles/pure/core/metafile.json +626 -0
  74. package/testeranto/bundles/{node/allTests/chunk-E75CSRER.mjs → pure/core/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs} +777 -483
  75. package/testeranto/bundles/pure/staticSite/metafile.json +8 -0
  76. package/testeranto/bundles/web/allTests/metafile.json +777 -22
  77. package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +893 -45
  78. package/testeranto/bundles/web/core/metafile.json +780 -0
  79. package/testeranto/bundles/web/core/src/lib/baseBuilder.test/baseBuilder.test.web.html +19 -0
  80. package/testeranto/bundles/web/{allTests/chunk-U7AW26HL.mjs → core/src/lib/baseBuilder.test/baseBuilder.test.web.mjs} +506 -411
  81. package/testeranto/bundles/web/staticSite/metafile.json +8 -0
  82. package/testeranto/projects.json +2 -1
  83. package/testeranto/reports/allTests/config.json +0 -64
  84. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.txt +2 -0
  85. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/logs.txt +11 -13
  86. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/prompt.txt +10 -0
  87. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/suite-0/given-testInitialization/then-0/butThen/hello.txt +1 -0
  88. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +10 -18
  89. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +25 -13
  90. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.txt +2 -0
  91. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/prompt.txt +8 -0
  92. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +24 -12
  93. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/lint_errors.txt +2 -0
  94. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/logs.txt +49 -55
  95. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +12 -2
  96. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/suite-0/given-testInitialization/then-0/butThen/hello.txt +1 -0
  97. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +10 -18
  98. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +24 -12
  99. package/testeranto/reports/allTests/summary.json +6 -62
  100. package/testeranto/reports/core/config.json +24 -0
  101. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.txt +2 -0
  102. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/logs.txt +32 -0
  103. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/message.txt +2 -0
  104. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/prompt.txt +26 -0
  105. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/suite-0/given-testInitialization/then-0/butThen/hello.txt +1 -0
  106. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +69 -0
  107. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +74 -0
  108. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.txt +2 -0
  109. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/message.txt +2 -0
  110. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/prompt.txt +26 -0
  111. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +74 -0
  112. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/lint_errors.txt +2 -0
  113. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/logs.txt +61 -0
  114. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/message.txt +2 -0
  115. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +26 -0
  116. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/suite-0/given-testInitialization/then-0/butThen/hello.txt +1 -0
  117. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +69 -0
  118. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +74 -0
  119. package/testeranto/reports/core/summary.json +23 -0
  120. package/testeranto/reports/staticSite/config.json +24 -0
  121. package/testeranto/reports/staticSite/src/ReportServer.test.ts/index/node/lint_errors.txt +5 -0
  122. package/testeranto/reports/staticSite/src/ReportServer.test.ts/index/node/logs.txt +44 -0
  123. package/testeranto/reports/staticSite/src/ReportServer.test.ts/index/node/message.txt +2 -0
  124. package/testeranto/reports/staticSite/src/ReportServer.test.ts/index/node/prompt.txt +23 -0
  125. package/testeranto/reports/{allTests/src/lib/core.test/core.test → staticSite/src/ReportServer.test.ts/index}/node/type_errors.txt +21 -32
  126. package/testeranto/reports/staticSite/summary.json +9 -0
  127. package/testeranto/reportsnode_build_errors +8 -11
  128. package/testeranto.config.ts +37 -20
  129. package/testeranto/bundles/node/allTests/chunk-3EUGBAOM.mjs +0 -113
  130. package/testeranto/bundles/node/allTests/chunk-M6DO7VMB.mjs +0 -252
  131. package/testeranto/bundles/node/allTests/src/lib/BaseSuite.test/node.test.mjs +0 -323
  132. package/testeranto/bundles/node/allTests/src/lib/classBuilder.test/classBuilder.test.mjs +0 -411
  133. package/testeranto/bundles/node/allTests/src/lib/core.test/core.test.mjs +0 -528
  134. package/testeranto/bundles/node/allTests/src/lib/pmProxy.test/index.mjs +0 -4752
  135. package/testeranto/bundles/pure/allTests/chunk-KHDVEHF7.mjs +0 -185
  136. package/testeranto/bundles/pure/allTests/src/Pure.test.mjs +0 -429
  137. package/testeranto/bundles/pure/allTests/src/lib/BaseSuite.test/pure.test.mjs +0 -425
  138. package/testeranto/bundles/web/allTests/chunk-HPYA4YZC.mjs +0 -2283
  139. package/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.html +0 -19
  140. package/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs +0 -37524
  141. package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.html +0 -19
  142. package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs +0 -440
  143. package/testeranto/reports/allTests/src/Pure.test/pure/lint_errors.txt +0 -0
  144. package/testeranto/reports/allTests/src/Pure.test/pure/message.txt +0 -2
  145. package/testeranto/reports/allTests/src/Pure.test/pure/prompt.txt +0 -13
  146. package/testeranto/reports/allTests/src/Pure.test/pure/type_errors.txt +0 -101
  147. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +0 -13
  148. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/logs.txt +0 -50
  149. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/message.txt +0 -2
  150. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/prompt.txt +0 -17
  151. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/tests.json +0 -32
  152. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +0 -68
  153. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/lint_errors.txt +0 -0
  154. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/logs.txt +0 -52
  155. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/message.txt +0 -2
  156. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/prompt.txt +0 -13
  157. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/tests.json +0 -31
  158. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/type_errors.txt +0 -111
  159. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/bdd_errors.txt +0 -1
  160. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/lint_errors.txt +0 -0
  161. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/message.txt +0 -2
  162. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/prompt.txt +0 -14
  163. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/tests.json +0 -31
  164. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +0 -111
  165. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/bdd_errors.txt +0 -1
  166. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/lint_errors.txt +0 -0
  167. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/logs.txt +0 -108
  168. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/message.txt +0 -2
  169. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/prompt.txt +0 -14
  170. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/tests.json +0 -31
  171. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/type_errors.txt +0 -111
  172. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/bdd_errors.txt +0 -1
  173. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/lint_errors.txt +0 -0
  174. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/logs.txt +0 -700
  175. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/message.txt +0 -2
  176. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/prompt.txt +0 -16
  177. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/tests.json +0 -164
  178. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt +0 -138
  179. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/lint_errors.txt +0 -21
  180. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/logs.txt +0 -7
  181. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/message.txt +0 -2
  182. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/prompt.txt +0 -18
  183. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/bdd_errors.txt +0 -1
  184. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/lint_errors.txt +0 -20
  185. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/logs.txt +0 -31
  186. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/message.txt +0 -2
  187. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/prompt.txt +0 -16
  188. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/tests.json +0 -134
  189. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/type_errors.txt +0 -76
  190. package/testeranto/reportspure_build_errors +0 -343
  191. package/testeranto/reportsweb_build_errors +0 -25
  192. /package/testeranto/reports/{allTests/src/components/pure/ProjectPageView.test/index/web → core/src/lib/baseBuilder.test/baseBuilder.test.node/node}/bdd_errors.txt +0 -0
  193. /package/testeranto/reports/{allTests/src/lib/BaseSuite.test/node.test/node → core/src/lib/baseBuilder.test/baseBuilder.test.web/web}/bdd_errors.txt +0 -0
@@ -1,50 +0,0 @@
1
- %cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools
2
- You might need to use a local HTTP server (instead of file://): https://reactjs.org/link/react-devtools-faq font-weight:bold
3
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":23438,"columnNumber":24}
4
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":23438,"columnNumber":24},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":23458,"columnNumber":8},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-HPYA4YZC.mjs","lineNumber":10,"columnNumber":49},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":23474,"columnNumber":23},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-HPYA4YZC.mjs","lineNumber":10,"columnNumber":49},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":23486,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-HPYA4YZC.mjs","lineNumber":10,"columnNumber":49},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26290,"columnNumber":28}]
5
- [DEBUG] BaseSuite constructor - name: ProjectPageView Component Tests index: 0
6
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26091,"columnNumber":12}
7
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26091,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26180,"columnNumber":6},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26010,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":30457,"columnNumber":10},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":25931,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26062,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26176,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26237,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26276,"columnNumber":9},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26390,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":37171,"columnNumber":30}]
8
- [DEBUG] BaseSuite initialized: ProjectPageView Component Tests 0
9
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26096,"columnNumber":12}
10
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26096,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26180,"columnNumber":6},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26010,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":30457,"columnNumber":10},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":25931,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26062,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26176,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26237,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26276,"columnNumber":9},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26390,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":37171,"columnNumber":30}]
11
- [DEBUG] BaseSuite givens: JSHandle@array
12
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26097,"columnNumber":12}
13
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26097,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26180,"columnNumber":6},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26010,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":30457,"columnNumber":10},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":25931,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26062,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26176,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26237,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26276,"columnNumber":9},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26390,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":37171,"columnNumber":30}]
14
- %cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools
15
- You might need to use a local HTTP server (instead of file://): https://reactjs.org/link/react-devtools-faq font-weight:bold
16
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":23438,"columnNumber":24}
17
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":23438,"columnNumber":24},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":23458,"columnNumber":8},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-HPYA4YZC.mjs","lineNumber":10,"columnNumber":49},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":23474,"columnNumber":23},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-HPYA4YZC.mjs","lineNumber":10,"columnNumber":49},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":23486,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-HPYA4YZC.mjs","lineNumber":10,"columnNumber":49},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26290,"columnNumber":28}]
18
- [DEBUG] BaseSuite constructor - name: ProjectPageView Component Tests index: 0
19
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26091,"columnNumber":12}
20
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26091,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26180,"columnNumber":6},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26010,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":30457,"columnNumber":10},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":25931,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26062,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26176,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26237,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26276,"columnNumber":9},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26390,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":37171,"columnNumber":30}]
21
- [DEBUG] BaseSuite initialized: ProjectPageView Component Tests 0
22
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26096,"columnNumber":12}
23
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26096,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26180,"columnNumber":6},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26010,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":30457,"columnNumber":10},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":25931,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26062,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26176,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26237,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26276,"columnNumber":9},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26390,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":37171,"columnNumber":30}]
24
- [DEBUG] BaseSuite givens: JSHandle@array
25
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26097,"columnNumber":12}
26
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26097,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26180,"columnNumber":6},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26010,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":30457,"columnNumber":10},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":25931,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26062,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26176,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26237,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26276,"columnNumber":9},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26390,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":37171,"columnNumber":30}]
27
- beforeAll - setting up test environment
28
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26308,"columnNumber":14}
29
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26308,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26188,"columnNumber":94},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26135,"columnNumber":31},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":25939,"columnNumber":31},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":25963,"columnNumber":34},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26272,"columnNumber":34},{"url":"pptr:evaluate;file%3A%2F%2F%2FUsers%2Fadam%2FCode%2Ftesteranto%2Fsrc%2FPM%2Fmain.ts%3A18%3A1422","lineNumber":5,"columnNumber":39}]
30
- Created React root
31
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26318,"columnNumber":16}
32
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26318,"columnNumber":16},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26188,"columnNumber":94},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26135,"columnNumber":31},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":25939,"columnNumber":31},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":25963,"columnNumber":34},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26272,"columnNumber":34},{"url":"pptr:evaluate;file%3A%2F%2F%2FUsers%2Fadam%2FCode%2Ftesteranto%2Fsrc%2FPM%2Fmain.ts%3A18%3A1422","lineNumber":5,"columnNumber":39}]
33
- beforeEach - initializing with: JSHandle@object
34
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26327,"columnNumber":14}
35
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26327,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26199,"columnNumber":29},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":25781,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26143,"columnNumber":31}]
36
- beforeEach - initializing test with values: JSHandle@array
37
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26328,"columnNumber":14}
38
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26328,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26199,"columnNumber":29},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":25781,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26143,"columnNumber":31}]
39
- Rendering test component...
40
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26347,"columnNumber":18}
41
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26347,"columnNumber":18},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26330,"columnNumber":21},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26199,"columnNumber":29},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":25781,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26143,"columnNumber":31}]
42
- Component mounted successfully
43
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26337,"columnNumber":24}
44
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26337,"columnNumber":24},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26300,"columnNumber":18},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":18927,"columnNumber":33},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":19878,"columnNumber":16},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":19867,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":19818,"columnNumber":10},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":21251,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":21175,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":20703,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":20616,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":2093,"columnNumber":41},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":2072,"columnNumber":21},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":2280,"columnNumber":28}]
45
- butThen
46
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26360,"columnNumber":14}
47
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26360,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26221,"columnNumber":35},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":25885,"columnNumber":16},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":25805,"columnNumber":33}]
48
- [Test] Verifying render output
49
- {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":30436,"columnNumber":14}
50
- [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":30436,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":25889,"columnNumber":28},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26361,"columnNumber":13},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":26221,"columnNumber":35},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":25885,"columnNumber":16},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431755759","lineNumber":25805,"columnNumber":33}]
@@ -1,2 +0,0 @@
1
-
2
- Fix the failing tests described in testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/tests.json and testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/logs.txt. Focus on the bdd tests before all other concerns. You may add any debugging you think is necessary.
@@ -1,17 +0,0 @@
1
-
2
- /add src/components/pure/ProjectPageView.test/index.ts
3
- /add src/components/pure/ProjectPageView.test/implementation.tsx
4
- /add src/components/pure/ProjectPageView.test/specification.ts
5
- /add src/components/pure/ProjectPageView.tsx
6
- /add src/NavBar.tsx
7
- /add src/components/TestStatusBadge.tsx
8
-
9
- /read node_modules/testeranto/docs/index.md
10
- /read node_modules/testeranto/docs/style.md
11
- /read node_modules/testeranto/docs/testing.ai.txt
12
- /read node_modules/testeranto/src/CoreTypes.ts
13
-
14
- /read testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/tests.json
15
- /read testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/logs.txt
16
- /read testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/type_errors.txt
17
- /read testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt
@@ -1,32 +0,0 @@
1
- {
2
- "name": "ProjectPageView Component Tests",
3
- "givens": [
4
- {
5
- "key": "basicRender",
6
- "name": "Default",
7
- "whens": [
8
- {
9
- "name": "renderComponent: "
10
- }
11
- ],
12
- "thens": [
13
- {
14
- "name": "shouldRender: undefined",
15
- "error": false
16
- }
17
- ],
18
- "error": null,
19
- "features": [
20
- "ProjectPageView should render",
21
- "It should contain a container-fluid div",
22
- "It should render the NavBar component"
23
- ]
24
- }
25
- ],
26
- "fails": 0,
27
- "features": [
28
- "ProjectPageView should render",
29
- "It should contain a container-fluid div",
30
- "It should render the NavBar component"
31
- ]
32
- }
@@ -1,68 +0,0 @@
1
- /Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic.ts (50,45): Property 'subject' does not exist on type 'Readonly<{}>'.
2
- /Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic.ts (104,26): Argument of type 'CElement<any, TesterantoComponent>' is not assignable to parameter of type 'ReactNode'.
3
- Property 'children' is missing in type 'ComponentElement<any, TesterantoComponent>' but required in type 'ReactPortal'.
4
- /Users/adam/Code/testeranto/node_modules/testeranto-react/src/react/component/index.ts (3,44): Cannot find module '../../../Types' or its corresponding type declarations.
5
- /Users/adam/Code/testeranto/node_modules/testeranto/src/lib/abstractBase.ts (222,17): Catch clause variable type annotation must be 'any' or 'unknown' if specified.
6
- /Users/adam/Code/testeranto/node_modules/testeranto/src/lib/basebuilder.ts (79,15): This expression is not callable.
7
- Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
8
- Type 'void' has no call signatures.
9
- /Users/adam/Code/testeranto/node_modules/testeranto/src/lib/classBuilder.ts (86,18): A spread argument must either have a tuple type or be passed to a rest parameter.
10
- /Users/adam/Code/testeranto/node_modules/testeranto/src/lib/classBuilder.ts (101,28): A spread argument must either have a tuple type or be passed to a rest parameter.
11
- /Users/adam/Code/testeranto/node_modules/testeranto/src/lib/core.ts (46,7): Argument of type 'Omit<{ suites: import("/Users/adam/Code/testeranto/node_modules/testeranto/src/Types").TestSuiteImplementation<O>; givens: import("/Users/adam/Code/testeranto/node_modules/testeranto/src/Types").TestGivenImplementation<I, O>; whens: import("/Users/adam/Code/testeranto/node_modules/testeranto/src/Types").TestWhenImpl...' is not assignable to parameter of type 'Omit<{ suites: import("/Users/adam/Code/testeranto/node_modules/testeranto/src/Types").TestSuiteImplementation<O>; givens: import("/Users/adam/Code/testeranto/node_modules/testeranto/src/Types").TestGivenImplementation<I, O>; whens: import("/Users/adam/Code/testeranto/node_modules/testeranto/src/Types").TestWhenImpl...'.
12
- 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>; }'.
13
- Types of property 'suites' are incompatible.
14
- Type 'Record<string, any>' is not assignable to type 'Record<string, never>'.
15
- 'string' index signatures are incompatible.
16
- Type 'any' is not assignable to type 'never'.
17
- /Users/adam/Code/testeranto/node_modules/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<...>'.
18
- Types of parameters 'initialValues' and 'initializer' are incompatible.
19
- Type '(c?: any) => T["given"]' is not assignable to type 'T["iinitialValues"]'.
20
- 'T["iinitialValues"]' could be instantiated with an arbitrary type which could be unrelated to '(c?: any) => T["given"]'.
21
- /Users/adam/Code/testeranto/node_modules/testeranto/src/lib/index.ts (18,20): Type '"iinitialValues"' cannot be used to index type 'T'.
22
- /Users/adam/Code/testeranto/node_modules/testeranto/src/lib/index.ts (40,13): This expression is not callable.
23
- Type 'unknown' has no call signatures.
24
- /Users/adam/Code/testeranto/node_modules/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>'.
25
- Types of property 'assertThis' are incompatible.
26
- Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
27
- Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
28
- /Users/adam/Code/testeranto/node_modules/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
29
- /Users/adam/Code/testeranto/node_modules/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
30
- /Users/adam/Code/testeranto/node_modules/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
31
- /Users/adam/Code/testeranto/node_modules/testeranto/src/Web.ts (40,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 & { ...; }'.
32
- 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
33
- /Users/adam/Code/testeranto/node_modules/testeranto/src/Web.ts (48,14): Expected 0 arguments, but got 1.
34
- /Users/adam/Code/testeranto/node_modules/testeranto/src/Web.ts (67,14): Expected 0 arguments, but got 1.
35
- /Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/implementation.tsx (45,9): Type '({ container, html }: { container: any; html: any; }, pm: any) => Promise<void>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
36
- Target signature provides too few arguments. Expected 2 or more, but got 1.
37
- /Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/implementation.tsx (74,9): Type '({ container }: { container: any; }, pm: any) => Promise<{ container: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
38
- Target signature provides too few arguments. Expected 2 or more, but got 1.
39
- /Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/index.ts (8,27): Type 'I' does not satisfy the constraint 'Ibdd_out'.
40
- Type 'I' is missing the following properties from type 'Ibdd_out': suites, givens, whens, thens
41
- /Users/adam/Code/testeranto/src/components/pure/ProjectPageView.tsx (217,19): 'testData' is of type 'unknown'.
42
- /Users/adam/Code/testeranto/src/components/pure/ProjectPageView.tsx (218,29): 'testData' is of type 'unknown'.
43
- /Users/adam/Code/testeranto/src/components/pure/ProjectPageView.tsx (219,26): 'testData' is of type 'unknown'.
44
- /Users/adam/Code/testeranto/src/components/pure/ProjectPageView.tsx (220,28): 'testData' is of type 'unknown'.
45
- /Users/adam/Code/testeranto/src/components/pure/ProjectPageView.tsx (298,24): Type '{ testName: string; testsExist: boolean; runTimeErrors: number; }' is missing the following properties from type 'TestStatusBadgeProps': typeErrors, staticErrors
46
- /Users/adam/Code/testeranto/src/lib/abstractBase.ts (244,17): Catch clause variable type annotation must be 'any' or 'unknown' if specified.
47
- /Users/adam/Code/testeranto/src/lib/abstractBase.ts (301,39): Expected 1 arguments, but got 2.
48
- /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<...>'.
49
- Types of parameters 'initialValues' and 'initializer' are incompatible.
50
- Type '(c?: any) => T["given"]' is not assignable to type 'T["iinitialValues"]'.
51
- 'T["iinitialValues"]' could be instantiated with an arbitrary type which could be unrelated to '(c?: any) => T["given"]'.
52
- /Users/adam/Code/testeranto/src/lib/index.ts (18,20): Type '"iinitialValues"' cannot be used to index type 'T'.
53
- /Users/adam/Code/testeranto/src/lib/index.ts (40,13): This expression is not callable.
54
- Type 'unknown' has no call signatures.
55
- /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>'.
56
- Types of property 'assertThis' are incompatible.
57
- Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
58
- Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
59
- /Users/adam/Code/testeranto/src/NavBar.tsx (76,23): Object literal may only specify known properties, and '':hover'' does not exist in type 'Properties<string | number, string & {}>'.
60
- /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'.
61
- Type '(opts: ScreencastOptions, page: string) => any' is not assignable to type '(opts: { path: string; }, page?: string | undefined) => any'.
62
- Types of parameters 'opts' and 'opts' are incompatible.
63
- Type '{ path: string; }' is not assignable to type 'ScreencastOptions'.
64
- Types of property 'path' are incompatible.
65
- Type 'string' is not assignable to type '`${string}.webm`'.
66
- /Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
67
- /Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
68
- /Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
@@ -1,52 +0,0 @@
1
- stderr > Starting inspector on 127.0.0.1:9229 failed: address already in use
2
- stdout > [DEBUG] BaseSuite constructor - name: BaseSuite Core Functionality Tests index: 0
3
- [DEBUG] BaseSuite initialized: BaseSuite Core Functionality Tests 0
4
- [DEBUG] BaseSuite givens: initialization
5
- receiveTestResourceConfig {"name":"src/lib/BaseSuite.test/node.test.ts","ports":[],"fs":"testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node","browserWSEndpoint":"ws://127.0.0.1:3234/devtools/browser/542e424f-5d11-4332-9796-c106911994da"}
6
- [Given] Setting currentStep for beforeEach: Default
7
- [DEBUG] Running beforeEach with subject: [class BaseSuite]
8
- [DEBUG] Creating MockSuite with name: testSuite index: 0
9
- [DEBUG] BaseSuite constructor - name: testSuite index: 0
10
- [DEBUG] BaseSuite initialized: testSuite 0
11
- [DEBUG] BaseSuite givens: testGiven
12
- [DEBUG] MockSuite created: testSuite 0
13
- [DEBUG] Created test suite: testSuite 0
14
- [DEBUG] beforeEach result: { name: 'testSuite', index: 0, store: undefined }
15
- [Then] Setting currentStep for butThen: SuiteNameMatches: testSuite
16
- [DEBUG] butThen - input store: {
17
- "name": "testSuite",
18
- "index": 0,
19
- "testStore": true,
20
- "testSelection": false
21
- }
22
- [DEBUG] butThen - created testSelection: {
23
- "testSelection": false
24
- }
25
- [DEBUG] SuiteNameMatches - expected: testSuite actual: undefined
26
- [Then] Setting currentStep for butThen: SuiteIndexMatches: 0
27
- [DEBUG] butThen - input store: {
28
- "name": "testSuite",
29
- "index": 0,
30
- "testStore": true,
31
- "testSelection": false
32
- }
33
- [DEBUG] butThen - created testSelection: {
34
- "testSelection": false
35
- }
36
- stderr > Then error: Error: Suite name is undefined. Expected: testSuite
37
- Full store state: {
38
- "name": "testSuite",
39
- "index": 0,
40
- "testStore": true,
41
- "testSelection": false
42
- }
43
- Then error: Error: Expected suite index 0, got undefined
44
- Full store state: {
45
- "name": "testSuite",
46
- "index": 0,
47
- "testStore": true,
48
- "testSelection": false
49
- }
50
- stdout > [DEBUG] Features extracted: BaseSuite should initialize with correct name and index
51
- [DEBUG] Features extracted: BaseSuite should initialize with correct name and index
52
- stderr > goodbye node with failures 0
@@ -1,2 +0,0 @@
1
-
2
- Fix the failing tests described in testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/tests.json and testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/logs.txt. Focus on the bdd tests before all other concerns. You may add any debugging you think is necessary.
@@ -1,13 +0,0 @@
1
-
2
- /add src/lib/BaseSuite.test/test.ts
3
- /add src/lib/BaseSuite.test/node.test.ts
4
-
5
- /read node_modules/testeranto/docs/index.md
6
- /read node_modules/testeranto/docs/style.md
7
- /read node_modules/testeranto/docs/testing.ai.txt
8
- /read node_modules/testeranto/src/CoreTypes.ts
9
-
10
- /read testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/tests.json
11
- /read testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/logs.txt
12
- /read testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/type_errors.txt
13
- /read testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/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/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 & { ...; }'.
102
- 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
103
- /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'.
104
- Type '(opts: ScreencastOptions, page: string) => any' is not assignable to type '(opts: { path: string; }, page?: string | undefined) => any'.
105
- Types of parameters 'opts' and 'opts' are incompatible.
106
- Type '{ path: string; }' is not assignable to type 'ScreencastOptions'.
107
- Types of property 'path' are incompatible.
108
- Type 'string' is not assignable to type '`${string}.webm`'.
109
- /Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
110
- /Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
111
- /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/BaseSuite.test/pure.test/pure/tests.json and testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/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/mock.ts
3
- /add src/lib/BaseSuite.test/test.ts
4
- /add src/lib/BaseSuite.test/pure.test.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/pure.test/pure/tests.json
12
- /read testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/logs.txt
13
- /read testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt
14
- /read testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/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
- }