testeranto 0.173.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 (145) hide show
  1. package/dist/common/src/PM/base.js +5 -5
  2. package/dist/common/src/PM/main.js +48 -52
  3. package/dist/common/src/PM/node.js +4 -1
  4. package/dist/common/src/PM/pure.js +4 -1
  5. package/dist/common/src/PM/web.js +4 -1
  6. package/dist/common/src/Pure.js +0 -4
  7. package/dist/common/src/Pure.test.js +1 -1
  8. package/dist/common/src/ReportServerLib.js +11 -5
  9. package/dist/common/src/esbuildConfigs/node.js +1 -3
  10. package/dist/common/src/lib/BaseSuite.js +13 -11
  11. package/dist/common/src/lib/abstractBase.js +39 -42
  12. package/dist/common/src/lib/basebuilder.js +5 -0
  13. package/dist/common/src/lib/core.js +1 -0
  14. package/dist/common/src/lib/pmProxy.js +210 -100
  15. package/dist/common/src/lib/pmProxy.test/adapter.js +2 -2
  16. package/dist/common/src/lib/pmProxy.test/implementation.js +1 -1
  17. package/dist/common/testeranto.config.js +39 -39
  18. package/dist/common/tsconfig.common.tsbuildinfo +1 -1
  19. package/dist/module/src/PM/base.js +5 -5
  20. package/dist/module/src/PM/main.js +13 -17
  21. package/dist/module/src/PM/node.js +4 -1
  22. package/dist/module/src/PM/pure.js +4 -1
  23. package/dist/module/src/PM/web.js +4 -1
  24. package/dist/module/src/Pure.js +0 -4
  25. package/dist/module/src/Pure.test.js +1 -1
  26. package/dist/module/src/ReportServerLib.js +11 -5
  27. package/dist/module/src/esbuildConfigs/node.js +1 -3
  28. package/dist/module/src/lib/BaseSuite.js +13 -11
  29. package/dist/module/src/lib/abstractBase.js +39 -42
  30. package/dist/module/src/lib/basebuilder.js +5 -0
  31. package/dist/module/src/lib/core.js +1 -0
  32. package/dist/module/src/lib/pmProxy.js +210 -100
  33. package/dist/module/src/lib/pmProxy.test/adapter.js +2 -2
  34. package/dist/module/src/lib/pmProxy.test/implementation.js +1 -1
  35. package/dist/module/testeranto.config.js +39 -39
  36. package/dist/module/tsconfig.module.tsbuildinfo +1 -1
  37. package/dist/prebuild/ReportServer.mjs +10 -4
  38. package/dist/prebuild/build.mjs +1 -1
  39. package/dist/prebuild/run.mjs +19 -22
  40. package/dist/types/src/PM/base.d.ts +1 -1
  41. package/dist/types/src/PM/node.d.ts +1 -1
  42. package/dist/types/src/PM/pure.d.ts +1 -1
  43. package/dist/types/src/PM/web.d.ts +1 -1
  44. package/dist/types/src/ReportServerLib.d.ts +1 -2
  45. package/dist/types/src/lib/BaseSuite.d.ts +2 -0
  46. package/dist/types/src/lib/abstractBase.d.ts +4 -6
  47. package/dist/types/src/lib/pmProxy.d.ts +3 -3
  48. package/dist/types/tsconfig.types.tsbuildinfo +1 -1
  49. package/package.json +2 -2
  50. package/src/PM/base.ts +6 -9
  51. package/src/PM/main.ts +17 -20
  52. package/src/PM/node.ts +6 -1
  53. package/src/PM/pure.ts +6 -1
  54. package/src/PM/web.ts +5 -1
  55. package/src/Pure.test.ts +6 -6
  56. package/src/Pure.ts +0 -8
  57. package/src/ReportServerLib.ts +10 -7
  58. package/src/esbuildConfigs/node.ts +1 -1
  59. package/src/lib/BaseSuite.ts +16 -21
  60. package/src/lib/abstractBase.ts +57 -49
  61. package/src/lib/basebuilder.ts +6 -0
  62. package/src/lib/core.ts +1 -0
  63. package/src/lib/pmProxy.test/adapter.ts +2 -2
  64. package/src/lib/pmProxy.test/implementation.ts +3 -3
  65. package/src/lib/pmProxy.test/types.ts +0 -2
  66. package/src/lib/pmProxy.ts +224 -92
  67. package/testeranto/bundles/node/core/metafile.json +2 -480
  68. package/testeranto/bundles/pure/core/metafile.json +3 -621
  69. package/testeranto/bundles/web/core/metafile.json +14384 -78
  70. package/testeranto/bundles/web/core/src/{lib/baseBuilder.test/baseBuilder.test.web.html → components/pure/ProjectPageView.test/index.html} +2 -2
  71. package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs +39991 -0
  72. package/testeranto/projects.json +0 -1
  73. package/testeranto/reports/core/config.json +5 -5
  74. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +18 -0
  75. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/logs.txt +59 -0
  76. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/message.txt +2 -0
  77. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/prompt.txt +27 -0
  78. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/suite-0/given-basicRender/then-0/butThen/happyPath.png +0 -0
  79. package/testeranto/reports/{staticSite/src/ReportServer.test.ts/index/node → core/src/components/pure/ProjectPageView.test/index/web}/type_errors.txt +20 -22
  80. package/testeranto/reports/core/summary.json +5 -19
  81. package/testeranto.config.ts +39 -39
  82. package/tsc.log +78 -92
  83. package/testeranto/bundles/node/allTests/metafile.json +0 -486
  84. package/testeranto/bundles/node/allTests/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +0 -1182
  85. package/testeranto/bundles/node/core/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +0 -1182
  86. package/testeranto/bundles/node/staticSite/metafile.json +0 -593
  87. package/testeranto/bundles/node/staticSite/src/ReportServer.test.ts/index.mjs +0 -1594
  88. package/testeranto/bundles/pure/allTests/metafile.json +0 -626
  89. package/testeranto/bundles/pure/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +0 -1094
  90. package/testeranto/bundles/pure/core/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +0 -1094
  91. package/testeranto/bundles/pure/staticSite/metafile.json +0 -8
  92. package/testeranto/bundles/web/allTests/metafile.json +0 -780
  93. package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web.html +0 -19
  94. package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +0 -1092
  95. package/testeranto/bundles/web/core/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +0 -1092
  96. package/testeranto/bundles/web/staticSite/metafile.json +0 -8
  97. package/testeranto/reports/allTests/config.json +0 -40
  98. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/bdd_errors.txt +0 -1
  99. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.txt +0 -2
  100. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/logs.txt +0 -33
  101. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/message.txt +0 -2
  102. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/prompt.txt +0 -26
  103. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/suite-0/given-testInitialization/then-0/butThen/hello.txt +0 -1
  104. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +0 -69
  105. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +0 -74
  106. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.txt +0 -2
  107. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/message.txt +0 -2
  108. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/prompt.txt +0 -26
  109. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +0 -74
  110. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/bdd_errors.txt +0 -1
  111. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/lint_errors.txt +0 -2
  112. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/logs.txt +0 -63
  113. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/message.txt +0 -2
  114. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +0 -26
  115. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/suite-0/given-testInitialization/then-0/butThen/hello.txt +0 -1
  116. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +0 -69
  117. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +0 -74
  118. package/testeranto/reports/allTests/summary.json +0 -23
  119. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/bdd_errors.txt +0 -1
  120. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.txt +0 -2
  121. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/logs.txt +0 -32
  122. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/message.txt +0 -2
  123. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/prompt.txt +0 -26
  124. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/suite-0/given-testInitialization/then-0/butThen/hello.txt +0 -1
  125. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +0 -69
  126. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +0 -74
  127. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.txt +0 -2
  128. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/message.txt +0 -2
  129. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/prompt.txt +0 -26
  130. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +0 -74
  131. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/bdd_errors.txt +0 -1
  132. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/lint_errors.txt +0 -2
  133. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/logs.txt +0 -61
  134. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/message.txt +0 -2
  135. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +0 -26
  136. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/suite-0/given-testInitialization/then-0/butThen/hello.txt +0 -1
  137. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +0 -69
  138. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +0 -74
  139. package/testeranto/reports/staticSite/config.json +0 -24
  140. package/testeranto/reports/staticSite/src/ReportServer.test.ts/index/node/lint_errors.txt +0 -5
  141. package/testeranto/reports/staticSite/src/ReportServer.test.ts/index/node/logs.txt +0 -44
  142. package/testeranto/reports/staticSite/src/ReportServer.test.ts/index/node/message.txt +0 -2
  143. package/testeranto/reports/staticSite/src/ReportServer.test.ts/index/node/prompt.txt +0 -23
  144. package/testeranto/reports/staticSite/summary.json +0 -9
  145. package/testeranto/reportsnode_build_errors +0 -17
@@ -1,4 +1,3 @@
1
1
  [
2
- "staticSite",
3
2
  "core"
4
3
  ]
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "tests": [
3
3
  [
4
- "src/ReportServer.test.ts/index.ts",
5
- "node",
4
+ "src/components/pure/ProjectPageView.test/index.ts",
5
+ "web",
6
6
  {
7
- "ports": 1
7
+ "ports": 0
8
8
  },
9
9
  []
10
10
  ]
@@ -16,9 +16,9 @@
16
16
  "minify": false,
17
17
  "nodePlugins": [],
18
18
  "ports": [
19
- "3334"
19
+ "3333"
20
20
  ],
21
21
  "src": "",
22
22
  "webPlugins": [],
23
- "buildDir": "/Users/adam/Code/testeranto/testeranto/bundles/staticSite"
23
+ "buildDir": "/Users/adam/Code/testeranto/testeranto/bundles/core"
24
24
  }
@@ -0,0 +1,18 @@
1
+ src/PM/web.ts
2
+ 139:15 Use the rest parameters instead of 'arguments'. (prefer-rest-params)
3
+
4
+ src/components/TestStatusBadge.tsx
5
+ 13:16 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
6
+ - undefined (fix)
7
+ - undefined (fix)
8
+ 14:17 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
9
+ - undefined (fix)
10
+ - undefined (fix)
11
+
12
+ src/components/pure/ProjectPageView.test/implementation.tsx
13
+ 1:18 'expect' is defined but never used. (@typescript-eslint/no-unused-vars)
14
+ 45:18 'container' is defined but never used. (@typescript-eslint/no-unused-vars)
15
+ 45:29 'html' is defined but never used. (@typescript-eslint/no-unused-vars)
16
+
17
+ src/lib/abstractBase.ts
18
+ 179:9 Unsafe usage of ThrowStatement. (no-unsafe-finally)
@@ -0,0 +1,59 @@
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/core/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":25697,"columnNumber":24}
4
+ [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":25697,"columnNumber":24},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":25717,"columnNumber":8},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":10,"columnNumber":49},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":25733,"columnNumber":23},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":10,"columnNumber":49},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":25745,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":10,"columnNumber":49},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":28648,"columnNumber":28}]
5
+ %cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools
6
+ You might need to use a local HTTP server (instead of file://): https://reactjs.org/link/react-devtools-faq font-weight:bold
7
+ {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":25697,"columnNumber":24}
8
+ [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":25697,"columnNumber":24},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":25717,"columnNumber":8},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":10,"columnNumber":49},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":25733,"columnNumber":23},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":10,"columnNumber":49},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":25745,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":10,"columnNumber":49},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28648,"columnNumber":28}]
9
+ mark14
10
+ {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28348,"columnNumber":18}
11
+ [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28348,"columnNumber":18},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28630,"columnNumber":34},{"url":"pptr:evaluate;file%3A%2F%2F%2FUsers%2Fadam%2FCode%2Ftesteranto%2Fsrc%2FPM%2Fmain.ts%3A9%3A6374","lineNumber":3,"columnNumber":35}]
12
+ mark17
13
+ {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28322,"columnNumber":16}
14
+ [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28322,"columnNumber":16},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28349,"columnNumber":34},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28630,"columnNumber":34},{"url":"pptr:evaluate;file%3A%2F%2F%2FUsers%2Fadam%2FCode%2Ftesteranto%2Fsrc%2FPM%2Fmain.ts%3A9%3A6374","lineNumber":3,"columnNumber":35}]
15
+ beforeAll - setting up test environment
16
+ {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28666,"columnNumber":14}
17
+ [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28666,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28570,"columnNumber":94},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28521,"columnNumber":31},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28323,"columnNumber":31},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28349,"columnNumber":34},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28630,"columnNumber":34},{"url":"pptr:evaluate;file%3A%2F%2F%2FUsers%2Fadam%2FCode%2Ftesteranto%2Fsrc%2FPM%2Fmain.ts%3A9%3A6374","lineNumber":3,"columnNumber":35}]
18
+ Created React root
19
+ {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28676,"columnNumber":16}
20
+ [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28676,"columnNumber":16},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28570,"columnNumber":94},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28521,"columnNumber":31},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28323,"columnNumber":31},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28349,"columnNumber":34},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28630,"columnNumber":34},{"url":"pptr:evaluate;file%3A%2F%2F%2FUsers%2Fadam%2FCode%2Ftesteranto%2Fsrc%2FPM%2Fmain.ts%3A9%3A6374","lineNumber":3,"columnNumber":35}]
21
+ mark800
22
+ {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28584,"columnNumber":18}
23
+ [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28584,"columnNumber":18},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28158,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28529,"columnNumber":31}]
24
+ beforeEach - initializing with: JSHandle@object
25
+ {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28685,"columnNumber":14}
26
+ [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28685,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28585,"columnNumber":29},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28158,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28529,"columnNumber":31}]
27
+ beforeEach - initializing test with values: JSHandle@array
28
+ {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28686,"columnNumber":14}
29
+ [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28686,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28585,"columnNumber":29},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28158,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28529,"columnNumber":31}]
30
+ Rendering test component...
31
+ {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28705,"columnNumber":18}
32
+ [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28705,"columnNumber":18},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28688,"columnNumber":21},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28585,"columnNumber":29},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28158,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28529,"columnNumber":31}]
33
+ Component mounted successfully
34
+ {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28695,"columnNumber":24}
35
+ [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28695,"columnNumber":24},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28658,"columnNumber":18},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":21186,"columnNumber":33},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":22137,"columnNumber":16},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":22126,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":22077,"columnNumber":10},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":23510,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":23434,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":22962,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":22875,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":4352,"columnNumber":41},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":4331,"columnNumber":21},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":4539,"columnNumber":28}]
36
+ butThen
37
+ {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28718,"columnNumber":14}
38
+ [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28718,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28606,"columnNumber":35},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28278,"columnNumber":16},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28180,"columnNumber":33}]
39
+ [Test] Verifying render output
40
+ {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":32896,"columnNumber":14}
41
+ [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":32896,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28282,"columnNumber":28},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28719,"columnNumber":13},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28606,"columnNumber":35},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28278,"columnNumber":16},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28180,"columnNumber":33}]
42
+ Then addArtifact suite-0/given-basicRender/then-0/butThen/happyPath.png
43
+ {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28264,"columnNumber":12}
44
+ [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28264,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":27874,"columnNumber":8},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":27831,"columnNumber":40},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":32898,"columnNumber":15}]
45
+ afterEach
46
+ {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28722,"columnNumber":14}
47
+ [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28722,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28595,"columnNumber":37},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28594,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28201,"columnNumber":19}]
48
+ mark800
49
+ {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28584,"columnNumber":18}
50
+ [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28584,"columnNumber":18},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28158,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28529,"columnNumber":31}]
51
+ beforeEach - initializing with: JSHandle@object
52
+ {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28685,"columnNumber":14}
53
+ [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28685,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28585,"columnNumber":29},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28158,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28529,"columnNumber":31}]
54
+ beforeEach - initializing test with values: JSHandle@array
55
+ {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28686,"columnNumber":14}
56
+ [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28686,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28585,"columnNumber":29},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28158,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28529,"columnNumber":31}]
57
+ Rendering test component...
58
+ {"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28705,"columnNumber":18}
59
+ [{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28705,"columnNumber":18},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28688,"columnNumber":21},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28585,"columnNumber":29},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28158,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28529,"columnNumber":31}]
@@ -0,0 +1,2 @@
1
+
2
+ Fix the failing tests described in testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/tests.json and testeranto/reports/core/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.
@@ -0,0 +1,27 @@
1
+
2
+ /add src/components/pure/ProjectPageView.test/index.ts
3
+ /add src/Web.ts
4
+ /add src/PM/web.ts
5
+ /add src/PM/index.ts
6
+ /add src/lib/core.ts
7
+ /add src/lib/index.ts
8
+ /add src/lib/abstractBase.ts
9
+ /add src/lib/pmProxy.ts
10
+ /add src/lib/classBuilder.ts
11
+ /add src/lib/basebuilder.ts
12
+ /add src/lib/BaseSuite.ts
13
+ /add src/components/pure/ProjectPageView.test/implementation.tsx
14
+ /add src/components/pure/ProjectPageView.test/specification.ts
15
+ /add src/components/pure/ProjectPageView.tsx
16
+ /add src/NavBar.tsx
17
+ /add src/components/TestStatusBadge.tsx
18
+
19
+ /read node_modules/testeranto/docs/index.md
20
+ /read node_modules/testeranto/docs/style.md
21
+ /read node_modules/testeranto/docs/testing.ai.txt
22
+ /read node_modules/testeranto/src/CoreTypes.ts
23
+
24
+ /read testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/tests.json
25
+ /read testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/logs.txt
26
+ /read testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/type_errors.txt
27
+ /read testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt
@@ -1,10 +1,22 @@
1
- /Users/adam/Code/testeranto/src/lib/abstractBase.ts (247,17): Catch clause variable type annotation must be 'any' or 'unknown' if specified.
2
- /Users/adam/Code/testeranto/src/lib/abstractBase.ts (304,39): Expected 1 arguments, but got 2.
3
- /Users/adam/Code/testeranto/src/lib/basebuilder.ts (79,15): This expression is not callable.
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/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; }'.
6
+ Target signature provides too few arguments. Expected 2 or more, but got 1.
7
+ /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; }'.
8
+ Target signature provides too few arguments. Expected 2 or more, but got 1.
9
+ /Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/index.ts (8,27): Type 'I' does not satisfy the constraint 'Ibdd_out'.
10
+ Type 'I' is missing the following properties from type 'Ibdd_out': suites, givens, whens, thens
11
+ /Users/adam/Code/testeranto/src/components/pure/ProjectPageView.tsx (217,19): 'testData' is of type 'unknown'.
12
+ /Users/adam/Code/testeranto/src/components/pure/ProjectPageView.tsx (218,29): 'testData' is of type 'unknown'.
13
+ /Users/adam/Code/testeranto/src/components/pure/ProjectPageView.tsx (219,26): 'testData' is of type 'unknown'.
14
+ /Users/adam/Code/testeranto/src/components/pure/ProjectPageView.tsx (220,28): 'testData' is of type 'unknown'.
15
+ /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
16
+ /Users/adam/Code/testeranto/src/lib/abstractBase.ts (312,39): Expected 1 arguments, but got 2.
17
+ /Users/adam/Code/testeranto/src/lib/basebuilder.ts (80,15): This expression is not callable.
4
18
  Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
5
19
  Type 'void' has no call signatures.
6
- /Users/adam/Code/testeranto/src/lib/basebuilder.ts (125,30): Expected 2 arguments, but got 1.
7
- /Users/adam/Code/testeranto/src/lib/basebuilder.ts (130,30): Expected 2 arguments, but got 1.
8
20
  /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.
9
21
  /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.
10
22
  /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")....'.
@@ -24,12 +36,7 @@
24
36
  Types of property 'assertThis' are incompatible.
25
37
  Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
26
38
  Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
27
- /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 & { ...; }'.
28
- 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
29
- /Users/adam/Code/testeranto/src/PM/node.ts (185,9): Property 'writeFileSync' in type 'PM_Node' is not assignable to the same property in base type 'PM'.
30
- Type '([filepath, contents]: [string, string]) => Promise<boolean>' is not assignable to type '(f: string, c: string) => Promise<boolean>'.
31
- Types of parameters '__0' and 'f' are incompatible.
32
- Type 'string' is not assignable to type '[string, string]'.
39
+ /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 & {}>'.
33
40
  /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'.
34
41
  Type '(opts: ScreencastOptions, page: string) => any' is not assignable to type '(opts: { path: string; }, page?: string | undefined) => any'.
35
42
  Types of parameters 'opts' and 'opts' are incompatible.
@@ -39,14 +46,5 @@
39
46
  /Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
40
47
  /Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
41
48
  /Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
42
- /Users/adam/Code/testeranto/src/PM/web.ts (138,3): Property 'writeFileSync' in type 'PM_Web' is not assignable to the same property in base type 'PM'.
43
- Type '([filepath, contents]: [string, string]) => any' is not assignable to type '(f: string, c: string) => Promise<boolean>'.
44
- Types of parameters '__0' and 'f' are incompatible.
45
- Type 'string' is not assignable to type '[string, string]'.
46
- /Users/adam/Code/testeranto/src/ReportServer.test.ts/index.ts (117,3): Type '(store: import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse>, thenCB: import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse>, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, pm: im...' is not assignable to type '(store: import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse>, thenCB: import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse>, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, pm: im...'. Two different types with this name exist, but they are unrelated.
47
- Type 'Promise<Server<typeof IncomingMessage, typeof ServerResponse>>' is not assignable to type 'Promise<number>'.
48
- Type 'Server<typeof IncomingMessage, typeof ServerResponse>' is not assignable to type 'number'.
49
- /Users/adam/Code/testeranto/src/ReportServer.test.ts/index.ts (174,51): Cannot find name 'IProjectPageViewProps'.
50
- /Users/adam/Code/testeranto/src/ReportServer.test.ts/index.ts (180,14): Cannot find name 'IProjectPageViewProps'.
51
- /Users/adam/Code/testeranto/src/ReportServer.test.ts/index.ts (182,10): Cannot find name 'IProjectPageViewProps'.
52
- /Users/adam/Code/testeranto/src/ReportServerLib.ts (111,33): Property 'status' does not exist on type 'Error'.
49
+ /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 & { ...; }'.
50
+ 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,23 +1,9 @@
1
1
  {
2
- "src/lib/baseBuilder.test/baseBuilder.test.node.ts": {
3
- "typeErrors": 33,
4
- "staticErrors": 1,
5
- "runTimeErrors": 0,
6
- "prompt": "aider --model deepseek/deepseek-chat --load testeranto/core/reports/node/src/lib/baseBuilder.test/baseBuilder.test.node/prompt.txt",
7
- "failingFeatures": {}
8
- },
9
- "src/lib/baseBuilder.test/baseBuilder.test.pure.ts": {
10
- "typeErrors": 33,
11
- "staticErrors": 1,
12
- "runTimeErrors": -1,
13
- "prompt": "aider --model deepseek/deepseek-chat --load testeranto/core/reports/pure/src/lib/baseBuilder.test/baseBuilder.test.pure/prompt.txt",
14
- "failingFeatures": {}
15
- },
16
- "src/lib/baseBuilder.test/baseBuilder.test.web.ts": {
17
- "typeErrors": 33,
18
- "staticErrors": 1,
19
- "runTimeErrors": 0,
20
- "prompt": "aider --model deepseek/deepseek-chat --load testeranto/core/reports/web/src/lib/baseBuilder.test/baseBuilder.test.web/prompt.txt",
2
+ "src/components/pure/ProjectPageView.test/index.ts": {
3
+ "typeErrors": 26,
4
+ "staticErrors": 4,
5
+ "runTimeErrors": "?",
6
+ "prompt": "aider --model deepseek/deepseek-chat --load testeranto/core/reports/web/src/components/pure/ProjectPageView.test/index/prompt.txt",
21
7
  "failingFeatures": {}
22
8
  }
23
9
  }
@@ -4,30 +4,30 @@ import { IProject } from "./src/Types";
4
4
 
5
5
  const config: IProject = {
6
6
  projects: {
7
- staticSite: {
8
- tests: [["src/ReportServer.test.ts/index.ts", "node", { ports: 1 }, []]],
9
- clearScreen: false,
10
- debugger: false,
11
- externals: [],
12
- featureIngestor: function (s: string): Promise<string> {
13
- throw new Error("Function not implemented.");
14
- },
15
- importPlugins: [],
16
- minify: false,
17
- nodePlugins: [],
18
- ports: ["3334"],
19
- src: "",
20
- webPlugins: [],
21
- },
7
+ // staticSite: {
8
+ // tests: [["src/ReportServer.test.ts/index.ts", "node", { ports: 1 }, []]],
9
+ // clearScreen: false,
10
+ // debugger: false,
11
+ // externals: [],
12
+ // featureIngestor: function (s: string): Promise<string> {
13
+ // throw new Error("Function not implemented.");
14
+ // },
15
+ // importPlugins: [],
16
+ // minify: false,
17
+ // nodePlugins: [],
18
+ // ports: ["3334"],
19
+ // src: "",
20
+ // webPlugins: [],
21
+ // },
22
22
 
23
23
  core: {
24
24
  tests: [
25
- // [
26
- // "src/components/pure/ProjectPageView.test/index.ts",
27
- // "web",
28
- // { ports: 0 },
29
- // [],
30
- // ],
25
+ [
26
+ "src/components/pure/ProjectPageView.test/index.ts",
27
+ "web",
28
+ { ports: 0 },
29
+ [],
30
+ ],
31
31
 
32
32
  // ["src/lib/BaseSuite.test/node.test.ts", "node", { ports: 0 }, []],
33
33
  // ["src/lib/BaseSuite.test/pure.test.ts", "pure", { ports: 0 }, []],
@@ -43,24 +43,24 @@ const config: IProject = {
43
43
  // [],
44
44
  // ],
45
45
 
46
- [
47
- "src/lib/baseBuilder.test/baseBuilder.test.node.ts",
48
- "node",
49
- { ports: 0 },
50
- [],
51
- ],
52
- [
53
- "src/lib/baseBuilder.test/baseBuilder.test.pure.ts",
54
- "pure",
55
- { ports: 0 },
56
- [],
57
- ],
58
- [
59
- "src/lib/baseBuilder.test/baseBuilder.test.web.ts",
60
- "web",
61
- { ports: 0 },
62
- [],
63
- ],
46
+ // [
47
+ // "src/lib/baseBuilder.test/baseBuilder.test.node.ts",
48
+ // "node",
49
+ // { ports: 0 },
50
+ // [],
51
+ // ],
52
+ // [
53
+ // "src/lib/baseBuilder.test/baseBuilder.test.pure.ts",
54
+ // "pure",
55
+ // { ports: 0 },
56
+ // [],
57
+ // ],
58
+ // [
59
+ // "src/lib/baseBuilder.test/baseBuilder.test.web.ts",
60
+ // "web",
61
+ // { ports: 0 },
62
+ // [],
63
+ // ],
64
64
 
65
65
  // ["src/mothership/test.ts", "node", { ports: 0 }, []],
66
66
  // ["./src/lib/abstractBase/index.ts", "node", { ports: 0 }, []],