testeranto 0.189.0 → 0.198.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 (769) hide show
  1. package/.vscode/settings.json +7 -2
  2. package/ALL_LICENSES.txt +11246 -0
  3. package/LICENSE +21 -0
  4. package/default-project.json +44 -0
  5. package/design-editor/DesignEditor.tsx +251 -0
  6. package/design-editor/index.ts +2 -0
  7. package/design-editor/server.ts +121 -0
  8. package/design-editor/types.ts +16 -0
  9. package/designs/default-project.json +210 -0
  10. package/dist/common/design-editor/DesignEditor.js +242 -0
  11. package/dist/common/design-editor/index.js +18 -0
  12. package/dist/common/design-editor/server.js +98 -0
  13. package/dist/common/src/App.js +40 -6
  14. package/dist/common/src/Node.js +3 -2
  15. package/dist/common/src/PM/PM_WithEslintAndTsc.js +8 -1
  16. package/dist/common/src/PM/base.js +1 -0
  17. package/dist/common/src/PM/main.js +371 -5
  18. package/dist/common/src/PM/node.js +4 -2
  19. package/dist/common/src/PM/pure.js +15 -57
  20. package/dist/common/src/PM/web.js +5 -3
  21. package/dist/common/src/Pure.js +2 -2
  22. package/dist/common/src/Pure.test.js +46 -78
  23. package/dist/common/src/ReportServer.js +8 -2
  24. package/dist/common/src/Web.js +2 -2
  25. package/dist/common/src/build.js +1 -1
  26. package/dist/common/src/components/DesignEditorPage.js +205 -0
  27. package/dist/common/src/components/pure/AppFrame.js +62 -13
  28. package/dist/common/src/components/pure/ModalContent.test/implementation.js +13 -11
  29. package/dist/common/src/components/pure/ModalContent.test/index.js +48 -2
  30. package/dist/common/src/components/pure/ModalContent.test/specification.js +2 -2
  31. package/dist/common/src/components/pure/NavBar.js +9 -10
  32. package/dist/common/src/components/pure/ProcessManager.js +112 -0
  33. package/dist/common/src/components/pure/ProcessManagerView.js +237 -0
  34. package/dist/common/src/components/pure/ProjectPageView.test/implementation.js +134 -106
  35. package/dist/common/src/components/pure/ProjectsPageView.js +18 -12
  36. package/dist/common/src/components/pure/SettingsButton.js +4 -74
  37. package/dist/common/src/components/pure/SingleProcessView.js +214 -0
  38. package/dist/common/src/components/pure/TestPageView.js +457 -78
  39. package/dist/common/src/components/pure/TestPageView.test/implementation.js +90 -135
  40. package/dist/common/src/components/stateful/FeaturesReporter.js +1 -1
  41. package/dist/common/src/components/stateful/FileTree.js +40 -0
  42. package/dist/common/src/components/stateful/ProcessManagerPage.js +112 -0
  43. package/dist/common/src/components/stateful/ProjectPage.js +6 -5
  44. package/dist/common/src/components/stateful/ProjectsPage.js +32 -6
  45. package/dist/common/src/components/stateful/SettingsPage.js +72 -0
  46. package/dist/common/src/components/stateful/SingleProcessPage.js +147 -0
  47. package/dist/common/src/components/stateful/TestPage.js +104 -8
  48. package/dist/common/src/components/stateful/TextEditorPage.js +154 -0
  49. package/dist/common/src/esbuildConfigs/inputFilesPlugin.js +3 -4
  50. package/dist/common/src/lib/{abstractBase.js → BaseGiven.js} +14 -91
  51. package/dist/common/src/lib/BaseSuite.js +6 -3
  52. package/dist/common/src/lib/BaseSuite.test/mock.js +25 -34
  53. package/dist/common/src/lib/BaseSuite.test/test.js +33 -31
  54. package/dist/common/src/lib/BaseThen.js +64 -0
  55. package/dist/common/src/lib/BaseWhen.js +45 -0
  56. package/dist/common/src/lib/Tiposkripto.js +149 -0
  57. package/dist/common/src/lib/{core.test/MockCore.js → Tiposkripto.test/MockTiposkripto.js} +5 -8
  58. package/dist/common/src/lib/{core.test/core.test.adapter.js → Tiposkripto.test/Tiposkripto.adapter.js} +10 -8
  59. package/dist/common/src/lib/{classBuilder.test/classBuilder.test.implementation.js → Tiposkripto.test/Tiposkripto.implementation.js} +44 -61
  60. package/dist/common/src/lib/Tiposkripto.test/Tiposkripto.js +11 -0
  61. package/dist/common/src/lib/{classBuilder.test/classBuilder.test.specification.js → Tiposkripto.test/Tiposkripto.specification.js} +13 -9
  62. package/dist/common/src/lib/abstractBase.test/MockGiven.js +10 -3
  63. package/dist/common/src/lib/abstractBase.test/MockThen.js +6 -3
  64. package/dist/common/src/lib/abstractBase.test/MockWhen.js +10 -3
  65. package/dist/common/src/lib/abstractBase.test/adapter.js +18 -6
  66. package/dist/common/src/lib/abstractBase.test/implementation.js +3 -3
  67. package/dist/common/src/lib/index.js +11 -14
  68. package/dist/common/src/lib/mocks.test.js +10 -8
  69. package/dist/common/src/lib/pmProxy.js +37 -14
  70. package/dist/common/src/lib/pmProxy.test/adapter.js +12 -2
  71. package/dist/common/src/lib/pmProxy.test/implementation.js +73 -43
  72. package/dist/common/src/lib/pmProxy.test/specification.js +3 -0
  73. package/dist/common/src/run.js +15 -4
  74. package/dist/common/src/utils/api.js +44 -33
  75. package/dist/common/src/utils/logFiles.js +48 -22
  76. package/dist/common/src/utils/makePrompt.js +5 -4
  77. package/dist/common/testeranto.config.js +19 -41
  78. package/dist/common/tsconfig.common.tsbuildinfo +1 -1
  79. package/dist/module/design-editor/DesignEditor.js +206 -0
  80. package/dist/module/design-editor/index.js +2 -0
  81. package/dist/module/design-editor/server.js +92 -0
  82. package/dist/module/src/App.js +40 -6
  83. package/dist/module/src/Node.js +3 -2
  84. package/dist/module/src/PM/PM_WithEslintAndTsc.js +8 -1
  85. package/dist/module/src/PM/base.js +1 -0
  86. package/dist/module/src/PM/main.js +371 -5
  87. package/dist/module/src/PM/node.js +4 -2
  88. package/dist/module/src/PM/pure.js +15 -57
  89. package/dist/module/src/PM/web.js +5 -3
  90. package/dist/module/src/Pure.js +2 -2
  91. package/dist/module/src/Pure.test.js +46 -78
  92. package/dist/module/src/ReportServer.js +8 -2
  93. package/dist/module/src/Web.js +2 -2
  94. package/dist/module/src/build.js +1 -1
  95. package/dist/module/src/components/DesignEditorPage.js +168 -0
  96. package/dist/module/src/components/pure/AppFrame.js +30 -11
  97. package/dist/module/src/components/pure/ModalContent.test/implementation.js +13 -11
  98. package/dist/module/src/components/pure/ModalContent.test/index.js +48 -2
  99. package/dist/module/src/components/pure/ModalContent.test/specification.js +2 -2
  100. package/dist/module/src/components/pure/NavBar.js +10 -11
  101. package/dist/module/src/components/pure/ProcessManager.js +75 -0
  102. package/dist/module/src/components/pure/ProcessManagerView.js +200 -0
  103. package/dist/module/src/components/pure/ProjectPageView.test/implementation.js +134 -106
  104. package/dist/module/src/components/pure/ProjectsPageView.js +20 -14
  105. package/dist/module/src/components/pure/SettingsButton.js +5 -42
  106. package/dist/module/src/components/pure/SingleProcessView.js +214 -0
  107. package/dist/module/src/components/pure/TestPageView.js +425 -76
  108. package/dist/module/src/components/pure/TestPageView.test/implementation.js +90 -135
  109. package/dist/module/src/components/stateful/FeaturesReporter.js +1 -1
  110. package/dist/module/src/components/stateful/FileTree.js +33 -0
  111. package/dist/module/src/components/stateful/ProcessManagerPage.js +75 -0
  112. package/dist/module/src/components/stateful/ProjectPage.js +6 -5
  113. package/dist/module/src/components/stateful/ProjectsPage.js +32 -6
  114. package/dist/module/src/components/stateful/SettingsPage.js +35 -0
  115. package/dist/module/src/components/stateful/SingleProcessPage.js +110 -0
  116. package/dist/module/src/components/stateful/TestPage.js +104 -8
  117. package/dist/module/src/components/stateful/TextEditorPage.js +117 -0
  118. package/dist/module/src/esbuildConfigs/inputFilesPlugin.js +3 -4
  119. package/dist/module/src/lib/{abstractBase.js → BaseGiven.js} +14 -89
  120. package/dist/module/src/lib/BaseSuite.js +6 -3
  121. package/dist/module/src/lib/BaseSuite.test/mock.js +22 -31
  122. package/dist/module/src/lib/BaseSuite.test/test.js +33 -31
  123. package/dist/module/src/lib/BaseThen.js +60 -0
  124. package/dist/module/src/lib/BaseWhen.js +41 -0
  125. package/dist/module/src/lib/Tiposkripto.js +146 -0
  126. package/dist/module/src/lib/{core.test/MockCore.js → Tiposkripto.test/MockTiposkripto.js} +3 -6
  127. package/dist/module/src/lib/{core.test/core.test.adapter.js → Tiposkripto.test/Tiposkripto.adapter.js} +10 -8
  128. package/dist/module/src/lib/{classBuilder.test/classBuilder.test.implementation.js → Tiposkripto.test/Tiposkripto.implementation.js} +44 -58
  129. package/dist/module/src/lib/Tiposkripto.test/Tiposkripto.js +6 -0
  130. package/dist/module/src/lib/{classBuilder.test/classBuilder.test.specification.js → Tiposkripto.test/Tiposkripto.specification.js} +12 -8
  131. package/dist/module/src/lib/abstractBase.test/MockGiven.js +9 -2
  132. package/dist/module/src/lib/abstractBase.test/MockThen.js +5 -2
  133. package/dist/module/src/lib/abstractBase.test/MockWhen.js +9 -2
  134. package/dist/module/src/lib/abstractBase.test/adapter.js +18 -6
  135. package/dist/module/src/lib/abstractBase.test/implementation.js +3 -3
  136. package/dist/module/src/lib/index.js +11 -14
  137. package/dist/module/src/lib/mocks.test.js +11 -5
  138. package/dist/module/src/lib/pmProxy.js +37 -14
  139. package/dist/module/src/lib/pmProxy.test/adapter.js +12 -2
  140. package/dist/module/src/lib/pmProxy.test/implementation.js +73 -43
  141. package/dist/module/src/lib/pmProxy.test/specification.js +3 -0
  142. package/dist/module/src/run.js +15 -4
  143. package/dist/module/src/utils/api.js +45 -34
  144. package/dist/module/src/utils/logFiles.js +45 -20
  145. package/dist/module/src/utils/makePrompt.js +5 -4
  146. package/dist/module/testeranto.config.js +19 -41
  147. package/dist/module/tsconfig.module.tsbuildinfo +1 -1
  148. package/dist/prebuild/App.css +54 -513
  149. package/dist/prebuild/App.js +5291 -1921
  150. package/dist/prebuild/ReportServer.mjs +104 -6
  151. package/dist/prebuild/build.mjs +8 -5
  152. package/dist/prebuild/run.mjs +414 -51
  153. package/dist/tsconfig.tsbuildinfo +1 -1
  154. package/dist/types/design-editor/DesignEditor.d.ts +18 -0
  155. package/dist/types/design-editor/server.d.ts +1 -0
  156. package/dist/types/{Node.d.ts → src/Node.d.ts} +2 -2
  157. package/dist/types/src/PM/__tests__/nodeSidecar.testeranto.d.ts +2 -0
  158. package/dist/types/src/PM/__tests__/pureSidecar.testeranto.d.ts +2 -0
  159. package/dist/types/src/PM/__tests__/webSidecar.testeranto.d.ts +2 -0
  160. package/dist/types/{PM → src/PM}/index.d.ts +1 -1
  161. package/dist/types/{PM → src/PM}/main.d.ts +19 -0
  162. package/dist/types/{PM → src/PM}/pure.d.ts +7 -7
  163. package/dist/types/{Pure.d.ts → src/Pure.d.ts} +2 -2
  164. package/dist/types/src/Pure.test.d.ts +2 -0
  165. package/dist/types/src/ReportServer.test.ts/index.d.ts +2 -0
  166. package/dist/types/{Types.d.ts → src/Types.d.ts} +3 -1
  167. package/dist/types/{Web.d.ts → src/Web.d.ts} +2 -2
  168. package/dist/types/src/components/DesignEditorPage.d.ts +1 -0
  169. package/dist/types/{components → src/components}/pure/AppFrame.d.ts +3 -1
  170. package/dist/types/src/components/pure/AppFrame.test/index.d.ts +3 -0
  171. package/dist/types/src/components/pure/FeaturesReporterView.test/index.d.ts +2 -0
  172. package/dist/types/src/components/pure/ModalContent.test/index.d.ts +2 -0
  173. package/dist/types/{components → src/components}/pure/NavBar.d.ts +4 -0
  174. package/dist/types/src/components/pure/ProcessManager.d.ts +8 -0
  175. package/dist/types/src/components/pure/ProcessManagerView.d.ts +20 -0
  176. package/dist/types/src/components/pure/ProjectPageView.test/index.d.ts +2 -0
  177. package/dist/types/{components → src/components}/pure/ProjectsPageView.d.ts +1 -1
  178. package/dist/types/src/components/pure/SettingsButton.d.ts +2 -0
  179. package/dist/types/{components → src/components}/pure/TestPageView.test/implementation.d.ts +3 -2
  180. package/dist/types/src/components/pure/TestPageView.test/index.d.ts +3 -0
  181. package/dist/types/src/components/stateful/FileTree.d.ts +8 -0
  182. package/dist/types/src/components/stateful/ProcessManagerPage.d.ts +2 -0
  183. package/dist/types/src/components/stateful/SettingsPage.d.ts +2 -0
  184. package/dist/types/src/components/stateful/SingleProcessPage.d.ts +2 -0
  185. package/dist/types/src/components/stateful/TextEditorPage.d.ts +1 -0
  186. package/dist/types/src/lib/BaseGiven.d.ts +44 -0
  187. package/dist/types/{lib → src/lib}/BaseSuite.d.ts +12 -7
  188. package/dist/types/{lib → src/lib}/BaseSuite.test/mock.d.ts +6 -4
  189. package/dist/types/src/lib/BaseSuite.test/node.test.d.ts +2 -0
  190. package/dist/types/src/lib/BaseSuite.test/pure.test.d.ts +2 -0
  191. package/dist/types/src/lib/BaseSuite.test/web.test.d.ts +2 -0
  192. package/dist/types/src/lib/BaseThen.d.ts +27 -0
  193. package/dist/types/src/lib/BaseWhen.d.ts +27 -0
  194. package/dist/types/src/lib/Tiposkripto.d.ts +35 -0
  195. package/dist/types/{lib/core.test/MockCore.d.ts → src/lib/Tiposkripto.test/MockTiposkripto.d.ts} +3 -3
  196. package/dist/types/{lib/core.test/core.test.adapter.d.ts → src/lib/Tiposkripto.test/Tiposkripto.adapter.d.ts} +1 -1
  197. package/dist/types/src/lib/Tiposkripto.test/Tiposkripto.d.ts +2 -0
  198. package/dist/types/{lib/core.test/core.test.implementation.d.ts → src/lib/Tiposkripto.test/Tiposkripto.implementation.d.ts} +1 -1
  199. package/dist/types/{lib/core.test/core.test.specification.d.ts → src/lib/Tiposkripto.test/Tiposkripto.specification.d.ts} +1 -1
  200. package/dist/types/{lib/classBuilder.test/classBuilder.test.types.d.ts → src/lib/Tiposkripto.test/Tiposkripto.types.d.ts} +11 -9
  201. package/dist/types/{lib → src/lib}/abstractBase.test/MockGiven.d.ts +3 -1
  202. package/dist/types/{lib → src/lib}/abstractBase.test/MockThen.d.ts +1 -1
  203. package/dist/types/{lib → src/lib}/abstractBase.test/MockWhen.d.ts +1 -1
  204. package/dist/types/src/lib/abstractBase.test/index.d.ts +2 -0
  205. package/dist/types/{lib → src/lib}/abstractBase.test/types.d.ts +3 -3
  206. package/dist/types/{lib → src/lib}/index.d.ts +2 -2
  207. package/dist/types/{lib → src/lib}/pmProxy.test/index.d.ts +1 -2
  208. package/dist/types/{lib → src/lib}/pmProxy.test/mockPMBase.d.ts +1 -1
  209. package/dist/types/{lib → src/lib}/types.d.ts +3 -1
  210. package/dist/types/src/mothership/test.d.ts +2 -0
  211. package/dist/types/src/utils/logFiles.d.ts +71 -0
  212. package/dist/types/tsconfig.types.tsbuildinfo +1 -1
  213. package/docs/test-page-components.md +91 -0
  214. package/package.json +29 -10
  215. package/src/App.tsx +38 -5
  216. package/src/Node.ts +3 -2
  217. package/src/PM/PM_WithEslintAndTsc.ts +9 -4
  218. package/src/PM/base.ts +1 -0
  219. package/src/PM/index.ts +1 -1
  220. package/src/PM/main.ts +425 -9
  221. package/src/PM/node.ts +5 -2
  222. package/src/PM/pure.ts +23 -61
  223. package/src/PM/web.ts +7 -3
  224. package/src/Pure.test.ts +63 -99
  225. package/src/Pure.ts +3 -2
  226. package/src/README.md +20 -1
  227. package/src/ReportServer.ts +10 -3
  228. package/src/Types.ts +5 -3
  229. package/src/Web.ts +2 -2
  230. package/src/app.scss +169 -0
  231. package/src/build.ts +5 -1
  232. package/src/components/DesignEditorPage.tsx +202 -0
  233. package/src/components/pure/AppFrame.tsx +121 -16
  234. package/src/components/pure/ModalContent.test/implementation.tsx +14 -12
  235. package/src/components/pure/ModalContent.test/index.tsx +58 -6
  236. package/src/components/pure/ModalContent.test/specification.ts +2 -2
  237. package/src/components/pure/NavBar.tsx +31 -15
  238. package/src/components/pure/ProcessManager.tsx +117 -0
  239. package/src/components/pure/ProcessManagerView.tsx +414 -0
  240. package/src/components/pure/ProjectPageView.test/implementation.tsx +136 -106
  241. package/src/components/pure/ProjectPageView.test/index.tsx +0 -2
  242. package/src/components/pure/ProjectsPageView.tsx +41 -31
  243. package/src/components/pure/SettingsButton.tsx +7 -62
  244. package/src/components/pure/SingleProcessView.tsx +235 -0
  245. package/src/components/pure/TestPageView.test/implementation.ts +115 -147
  246. package/src/components/pure/TestPageView.test/specification.ts +0 -1
  247. package/src/components/pure/TestPageView.tsx +821 -100
  248. package/src/components/stateful/FeaturesReporter.tsx +1 -1
  249. package/src/components/stateful/FileTree.tsx +66 -0
  250. package/src/components/stateful/ProcessManagerPage.tsx +108 -0
  251. package/src/components/stateful/ProjectPage.tsx +6 -5
  252. package/src/components/stateful/ProjectsPage.tsx +36 -7
  253. package/src/components/stateful/SettingsPage.tsx +82 -0
  254. package/src/components/stateful/SingleProcessPage.tsx +155 -0
  255. package/src/components/stateful/TestPage.tsx +128 -20
  256. package/src/components/stateful/TextEditorPage.tsx +170 -0
  257. package/src/esbuildConfigs/inputFilesPlugin.ts +3 -4
  258. package/src/lib/BaseGiven.ts +193 -0
  259. package/src/lib/BaseSuite.test/mock.ts +28 -42
  260. package/src/lib/BaseSuite.test/test.ts +38 -42
  261. package/src/lib/BaseSuite.ts +20 -4
  262. package/src/lib/BaseThen.ts +108 -0
  263. package/src/lib/BaseWhen.ts +91 -0
  264. package/src/lib/{core.test/MockCore.ts → Tiposkripto.test/MockTiposkripto.ts} +4 -7
  265. package/src/lib/{core.test/core.test.adapter.ts → Tiposkripto.test/Tiposkripto.adapter.ts} +12 -11
  266. package/src/lib/{classBuilder.test/classBuilder.test.implementation.ts → Tiposkripto.test/Tiposkripto.implementation.ts} +75 -78
  267. package/src/lib/Tiposkripto.test/Tiposkripto.specification.ts +109 -0
  268. package/src/lib/Tiposkripto.test/Tiposkripto.ts +15 -0
  269. package/src/lib/{classBuilder.test/classBuilder.test.types.ts → Tiposkripto.test/Tiposkripto.types.ts} +12 -9
  270. package/src/lib/Tiposkripto.ts +325 -0
  271. package/src/lib/abstractBase.test/MockGiven.ts +12 -2
  272. package/src/lib/abstractBase.test/MockThen.ts +7 -2
  273. package/src/lib/abstractBase.test/MockWhen.ts +10 -2
  274. package/src/lib/abstractBase.test/adapter.ts +20 -6
  275. package/src/lib/abstractBase.test/implementation.ts +6 -6
  276. package/src/lib/abstractBase.test/types.ts +3 -3
  277. package/src/lib/index.ts +26 -20
  278. package/src/lib/mocks.test.ts +10 -9
  279. package/src/lib/pmProxy.test/adapter.ts +10 -2
  280. package/src/lib/pmProxy.test/implementation.ts +108 -57
  281. package/src/lib/pmProxy.test/mockPMBase.ts +1 -1
  282. package/src/lib/pmProxy.test/specification.ts +11 -0
  283. package/src/lib/pmProxy.ts +40 -15
  284. package/src/lib/types.ts +3 -1
  285. package/src/run.ts +19 -4
  286. package/src/style.scss +3 -502
  287. package/src/templates/frontpage.html +317 -40
  288. package/src/templates/frontpage.md +79 -0
  289. package/src/themes.scss +40 -8
  290. package/src/utils/api.ts +47 -44
  291. package/src/utils/logFiles.ts +57 -23
  292. package/src/utils/makePrompt.ts +5 -4
  293. package/stargazers.txt +15 -0
  294. package/stargzers.js +68 -0
  295. package/testeranto/App.css +54 -513
  296. package/testeranto/App.js +5291 -1921
  297. package/testeranto/bundles/node/core/src/lib/BaseSuite.test/node.test.mjs +1146 -46
  298. package/testeranto/bundles/pure/core/src/lib/BaseSuite.test/pure.test.mjs +1016 -72
  299. package/testeranto/bundles/web/core/src/lib/BaseSuite.test/web.test.mjs +1004 -86
  300. package/testeranto/metafiles/node/core.json +990 -0
  301. package/testeranto/{bundles/pure/core/metafile.json → metafiles/pure/core.json} +153 -309
  302. package/testeranto/{bundles/web/core/metafile.json → metafiles/web/core.json} +1075 -1825
  303. package/testeranto/reports/core/config.json +8 -64
  304. package/testeranto/reports/core/src/Pure.test/pure/prompt.txt +1 -1
  305. package/testeranto/reports/core/src/Pure.test/pure/type_errors.txt +63 -103
  306. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/error.log +61 -50
  307. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/prompt.txt +1 -1
  308. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/tests.json +24 -32
  309. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/type_errors.txt +17 -41
  310. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/error.log +22 -33
  311. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/info.log +0 -2
  312. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +13 -2
  313. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/prompt.txt +1 -1
  314. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/tests.json +30 -41
  315. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +31 -77
  316. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/lint_errors.txt +47 -0
  317. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/prompt.txt +2 -3
  318. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/tests.json +17 -29
  319. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/type_errors.txt +84 -96
  320. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/prompt.txt +3 -2
  321. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/tests.json +7 -9
  322. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/type_errors.txt +42 -99
  323. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/prompt.txt +1 -1
  324. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +42 -99
  325. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/prompt.txt +1 -1
  326. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/tests.json +7 -9
  327. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/type_errors.txt +41 -98
  328. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/exit.log +1 -0
  329. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/prompt.txt +17 -0
  330. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/stderr.log +18 -0
  331. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/type_errors.txt +32 -0
  332. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/exit.log +1 -1
  333. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/lint_errors.txt +6 -14
  334. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/prompt.txt +3 -3
  335. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stderr.log +66 -0
  336. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stdout.log +10 -0
  337. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/type_errors.txt +21 -52
  338. package/testeranto/reports/core/summary.json +22 -71
  339. package/testeranto.config.ts +21 -45
  340. package/tsc.log +289 -449
  341. package/tsconfig.json +3 -2
  342. package/CNAME +0 -1
  343. package/README.html +0 -302
  344. package/dist/common/src/PM/layers/base/PM_Base.js +0 -1
  345. package/dist/common/src/PM/layers/base/components/PageOperations.js +0 -1
  346. package/dist/common/src/PM/layers/base/components/PageOperations.testeranto.js +0 -1
  347. package/dist/common/src/PM/layers/linting/components/Linter.js +0 -1
  348. package/dist/common/src/PM/layers/linting/components/TypeChecker.js +0 -1
  349. package/dist/common/src/PM/layers/main/components/SidecarManager.js +0 -1
  350. package/dist/common/src/PM/layers/main/components/TestRunner.js +0 -1
  351. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +0 -19
  352. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +0 -113
  353. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.mock.js +0 -46
  354. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.node.js +0 -12
  355. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.pure.js +0 -12
  356. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.specification.js +0 -18
  357. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.web.js +0 -12
  358. package/dist/common/src/lib/basebuilder.js +0 -96
  359. package/dist/common/src/lib/classBuilder.js +0 -36
  360. package/dist/common/src/lib/classBuilder.test/classBuilder.test.adapter.js +0 -23
  361. package/dist/common/src/lib/classBuilder.test/classBuilder.test.js +0 -12
  362. package/dist/common/src/lib/classBuilder.test/mock.js +0 -17
  363. package/dist/common/src/lib/core.js +0 -47
  364. package/dist/common/src/lib/core.test/core.test.implementation.js +0 -121
  365. package/dist/common/src/lib/core.test/core.test.js +0 -63
  366. package/dist/common/src/lib/core.test/core.test.specification.js +0 -53
  367. package/dist/common/src/lib/core.test/core.test.types.js +0 -2
  368. package/dist/module/src/PM/layers/base/PM_Base.js +0 -1
  369. package/dist/module/src/PM/layers/base/components/PageOperations.js +0 -1
  370. package/dist/module/src/PM/layers/base/components/PageOperations.testeranto.js +0 -1
  371. package/dist/module/src/PM/layers/linting/components/Linter.js +0 -1
  372. package/dist/module/src/PM/layers/linting/components/TypeChecker.js +0 -1
  373. package/dist/module/src/PM/layers/main/components/SidecarManager.js +0 -1
  374. package/dist/module/src/PM/layers/main/components/TestRunner.js +0 -1
  375. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +0 -16
  376. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +0 -110
  377. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.mock.js +0 -42
  378. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.node.js +0 -7
  379. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.pure.js +0 -7
  380. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.specification.js +0 -14
  381. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.web.js +0 -7
  382. package/dist/module/src/lib/basebuilder.js +0 -92
  383. package/dist/module/src/lib/classBuilder.js +0 -32
  384. package/dist/module/src/lib/classBuilder.test/classBuilder.test.adapter.js +0 -20
  385. package/dist/module/src/lib/classBuilder.test/classBuilder.test.js +0 -7
  386. package/dist/module/src/lib/classBuilder.test/mock.js +0 -14
  387. package/dist/module/src/lib/core.js +0 -44
  388. package/dist/module/src/lib/core.test/core.test.implementation.js +0 -118
  389. package/dist/module/src/lib/core.test/core.test.js +0 -58
  390. package/dist/module/src/lib/core.test/core.test.specification.js +0 -49
  391. package/dist/module/src/lib/core.test/core.test.types.js +0 -1
  392. package/dist/types/PM/__tests__/nodeSidecar.testeranto.d.ts +0 -16
  393. package/dist/types/PM/__tests__/pureSidecar.testeranto.d.ts +0 -16
  394. package/dist/types/PM/__tests__/webSidecar.testeranto.d.ts +0 -16
  395. package/dist/types/PM/layers/base/components/PageOperations.testeranto.d.ts +0 -0
  396. package/dist/types/PM/layers/linting/components/Linter.d.ts +0 -0
  397. package/dist/types/PM/layers/linting/components/TypeChecker.d.ts +0 -0
  398. package/dist/types/PM/layers/main/components/SidecarManager.d.ts +0 -0
  399. package/dist/types/PM/layers/main/components/TestRunner.d.ts +0 -0
  400. package/dist/types/Pure.test.d.ts +0 -47
  401. package/dist/types/ReportServer.test.ts/index.d.ts +0 -29
  402. package/dist/types/components/pure/AppFrame.test/index.d.ts +0 -5
  403. package/dist/types/components/pure/FeaturesReporterView.test/index.d.ts +0 -2
  404. package/dist/types/components/pure/ModalContent.test/index.d.ts +0 -2
  405. package/dist/types/components/pure/ProjectPageView.test/index.d.ts +0 -2
  406. package/dist/types/components/pure/SettingsButton.d.ts +0 -3
  407. package/dist/types/components/pure/TestPageView.test/index.d.ts +0 -32
  408. package/dist/types/lib/BaseSuite.test/node.test.d.ts +0 -3
  409. package/dist/types/lib/BaseSuite.test/pure.test.d.ts +0 -3
  410. package/dist/types/lib/BaseSuite.test/web.test.d.ts +0 -3
  411. package/dist/types/lib/abstractBase.d.ts +0 -70
  412. package/dist/types/lib/abstractBase.test/index.d.ts +0 -3
  413. package/dist/types/lib/baseBuilder.test/baseBuilder.test.adapter.d.ts +0 -3
  414. package/dist/types/lib/baseBuilder.test/baseBuilder.test.implementation.d.ts +0 -3
  415. package/dist/types/lib/baseBuilder.test/baseBuilder.test.mock.d.ts +0 -15
  416. package/dist/types/lib/baseBuilder.test/baseBuilder.test.node.d.ts +0 -3
  417. package/dist/types/lib/baseBuilder.test/baseBuilder.test.pure.d.ts +0 -3
  418. package/dist/types/lib/baseBuilder.test/baseBuilder.test.specification.d.ts +0 -3
  419. package/dist/types/lib/baseBuilder.test/baseBuilder.test.types.d.ts +0 -22
  420. package/dist/types/lib/baseBuilder.test/baseBuilder.test.web.d.ts +0 -3
  421. package/dist/types/lib/basebuilder.d.ts +0 -23
  422. package/dist/types/lib/classBuilder.d.ts +0 -15
  423. package/dist/types/lib/classBuilder.test/classBuilder.test.adapter.d.ts +0 -3
  424. package/dist/types/lib/classBuilder.test/classBuilder.test.d.ts +0 -3
  425. package/dist/types/lib/classBuilder.test/classBuilder.test.implementation.d.ts +0 -3
  426. package/dist/types/lib/classBuilder.test/classBuilder.test.specification.d.ts +0 -3
  427. package/dist/types/lib/classBuilder.test/mock.d.ts +0 -14
  428. package/dist/types/lib/core.d.ts +0 -12
  429. package/dist/types/lib/core.test/core.test.d.ts +0 -3
  430. package/dist/types/lib/core.test/core.test.types.d.ts +0 -46
  431. package/dist/types/lib/mocks.test.d.ts +0 -2
  432. package/dist/types/mothership/test.d.ts +0 -19
  433. package/dist/types/utils/logFiles.d.ts +0 -7
  434. package/docs.html +0 -590
  435. package/example.css +0 -351
  436. package/index.html +0 -138
  437. package/scripts/compile-docs.js +0 -150
  438. package/smil30/SMIL-anim.mod.xsd +0 -163
  439. package/smil30/SMIL-control.mod.xsd +0 -73
  440. package/smil30/SMIL-layout.mod.xsd +0 -149
  441. package/smil30/SMIL-link.mod.xsd +0 -145
  442. package/smil30/SMIL-media.mod.xsd +0 -1646
  443. package/smil30/SMIL-metainformation.mod.xsd +0 -45
  444. package/smil30/SMIL-smiltext.mod.xsd +0 -353
  445. package/smil30/SMIL-state.mod.xsd +0 -133
  446. package/smil30/SMIL-struct.mod.xsd +0 -70
  447. package/smil30/SMIL-timing.mod.xsd +0 -105
  448. package/smil30/SMIL-transition.mod.xsd +0 -229
  449. package/smil30/SMIL.xsd +0 -63
  450. package/smil30/its.xsd +0 -42
  451. package/smil30/smil-attribs-1.mod.xsd +0 -610
  452. package/smil30/smil-datatypes-1.mod.xsd +0 -72
  453. package/smil30/smil-framework-1.mod.xsd +0 -45
  454. package/smil30/xml.xsd +0 -16
  455. package/src/App.scss +0 -123
  456. package/src/PM/layers/base/PM_Base.ts +0 -0
  457. package/src/PM/layers/base/components/PageOperations.testeranto.ts +0 -0
  458. package/src/PM/layers/base/components/PageOperations.ts +0 -0
  459. package/src/PM/layers/linting/components/Linter.ts +0 -0
  460. package/src/PM/layers/linting/components/TypeChecker.ts +0 -0
  461. package/src/PM/layers/main/components/SidecarManager.ts +0 -0
  462. package/src/PM/layers/main/components/TestRunner.ts +0 -0
  463. package/src/fonts.scss +0 -55
  464. package/src/lib/abstractBase.ts +0 -332
  465. package/src/lib/baseBuilder.test/baseBuilder.test.adapter.ts +0 -22
  466. package/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts +0 -138
  467. package/src/lib/baseBuilder.test/baseBuilder.test.mock.ts +0 -90
  468. package/src/lib/baseBuilder.test/baseBuilder.test.node.ts +0 -16
  469. package/src/lib/baseBuilder.test/baseBuilder.test.pure.ts +0 -16
  470. package/src/lib/baseBuilder.test/baseBuilder.test.specification.ts +0 -35
  471. package/src/lib/baseBuilder.test/baseBuilder.test.types.ts +0 -36
  472. package/src/lib/baseBuilder.test/baseBuilder.test.web.ts +0 -16
  473. package/src/lib/basebuilder.ts +0 -192
  474. package/src/lib/classBuilder.test/classBuilder.test.adapter.ts +0 -25
  475. package/src/lib/classBuilder.test/classBuilder.test.specification.ts +0 -104
  476. package/src/lib/classBuilder.test/classBuilder.test.ts +0 -14
  477. package/src/lib/classBuilder.test/mock.ts +0 -83
  478. package/src/lib/classBuilder.ts +0 -122
  479. package/src/lib/core.test/core.test.implementation.ts +0 -155
  480. package/src/lib/core.test/core.test.specification.ts +0 -113
  481. package/src/lib/core.test/core.test.ts +0 -72
  482. package/src/lib/core.test/core.test.types.ts +0 -68
  483. package/src/lib/core.ts +0 -141
  484. package/style.css +0 -12175
  485. package/testeranto/bundles/node/core/chunk-JBB5E3XJ.mjs +0 -258
  486. package/testeranto/bundles/node/core/chunk-L67RWZ4W.mjs +0 -899
  487. package/testeranto/bundles/node/core/chunk-ZQRRQYS4.mjs +0 -92
  488. package/testeranto/bundles/node/core/metafile.json +0 -5735
  489. package/testeranto/bundles/node/core/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +0 -247
  490. package/testeranto/bundles/node/core/src/lib/classBuilder.test/classBuilder.test.mjs +0 -423
  491. package/testeranto/bundles/node/core/src/lib/core.test/core.test.mjs +0 -505
  492. package/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs +0 -4804
  493. package/testeranto/bundles/node/core/src/mothership/test.mjs +0 -24588
  494. package/testeranto/bundles/pure/core/chunk-KHJ35R7C.mjs +0 -997
  495. package/testeranto/bundles/pure/core/src/Pure.test.mjs +0 -428
  496. package/testeranto/bundles/pure/core/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +0 -235
  497. package/testeranto/bundles/web/core/MPLUSRounded1c-Black-O75GP5JI.ttf +0 -0
  498. package/testeranto/bundles/web/core/MPLUSRounded1c-Bold-R524Q5BH.ttf +0 -0
  499. package/testeranto/bundles/web/core/MPLUSRounded1c-ExtraBold-C6GRMYVT.ttf +0 -0
  500. package/testeranto/bundles/web/core/MPLUSRounded1c-Light-WKN65Y2C.ttf +0 -0
  501. package/testeranto/bundles/web/core/MPLUSRounded1c-Medium-ZC4DWL7C.ttf +0 -0
  502. package/testeranto/bundles/web/core/MPLUSRounded1c-Regular-DT6EKZ3S.ttf +0 -0
  503. package/testeranto/bundles/web/core/MPLUSRounded1c-Thin-YWDNVG6M.ttf +0 -0
  504. package/testeranto/bundles/web/core/chunk-BADF3AZF.mjs +0 -108
  505. package/testeranto/bundles/web/core/chunk-BXV27S2S.mjs +0 -6252
  506. package/testeranto/bundles/web/core/chunk-EIYZKF2C.mjs +0 -223
  507. package/testeranto/bundles/web/core/chunk-FNXFUNA7.mjs +0 -28528
  508. package/testeranto/bundles/web/core/chunk-LU364HVS.mjs +0 -3311
  509. package/testeranto/bundles/web/core/chunk-QWII7WIM.mjs +0 -2281
  510. package/testeranto/bundles/web/core/chunk-VAYOSMXI.mjs +0 -21775
  511. package/testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.css +0 -12105
  512. package/testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.html +0 -15
  513. package/testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.mjs +0 -517
  514. package/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.html +0 -15
  515. package/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs +0 -166
  516. package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.css +0 -12105
  517. package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.html +0 -15
  518. package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.mjs +0 -93
  519. package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.css +0 -12105
  520. package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.html +0 -15
  521. package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs +0 -343
  522. package/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.css +0 -12105
  523. package/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.html +0 -15
  524. package/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.mjs +0 -483
  525. package/testeranto/bundles/web/core/src/lib/baseBuilder.test/baseBuilder.test.web.html +0 -15
  526. package/testeranto/bundles/web/core/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +0 -256
  527. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/debug.log +0 -0
  528. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/error.log +0 -22
  529. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/exit.log +0 -1
  530. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/info.log +0 -4
  531. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/lint_errors.txt +0 -2
  532. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/prompt.txt +0 -18
  533. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/tests.json +0 -57
  534. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/type_errors.txt +0 -55
  535. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/warn.log +0 -0
  536. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/suite-0/given-basicRender/then-4/butThen/features-reporter.png +0 -0
  537. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/debug.log +0 -0
  538. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/error.log +0 -0
  539. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/exit.log +0 -0
  540. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/info.log +0 -4
  541. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/message.txt +0 -17
  542. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/prompt.txt +0 -15
  543. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/suite-0/given-basicRender/then-2/butThen/modal-content.png +0 -0
  544. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/tests.json +0 -42
  545. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/type_errors.txt +0 -65
  546. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/warn.log +0 -0
  547. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/suite-0/given-basicRender/then-6/butThen/happy-state.png +0 -0
  548. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/suite-0/given-errorHandling/then-1/butThen/error-state.png +0 -0
  549. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/exit.log +0 -1
  550. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.txt +0 -0
  551. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/message.txt +0 -17
  552. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/prompt.txt +0 -17
  553. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/stderr.log +0 -0
  554. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/stdout.log +0 -2
  555. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/suite-0/given-testInitialization/then-0/butThen/hello.txt +0 -1
  556. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/suite-0/given-testInitialization/then-1/butThen/artifact_test.txt +0 -1
  557. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +0 -71
  558. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +0 -65
  559. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/exit.log +0 -0
  560. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.txt +0 -0
  561. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/message.txt +0 -17
  562. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/prompt.txt +0 -17
  563. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +0 -65
  564. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/debug.log +0 -0
  565. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/error.log +0 -1
  566. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/exit.log +0 -1
  567. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/info.log +0 -0
  568. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/lint_errors.txt +0 -0
  569. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/message.txt +0 -17
  570. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +0 -17
  571. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/suite-0/given-testInitialization/then-0/butThen/hello.txt +0 -1
  572. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/suite-0/given-testInitialization/then-1/butThen/artifact_test.txt +0 -1
  573. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +0 -71
  574. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +0 -65
  575. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/warn.log +0 -0
  576. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/exit.log +0 -1
  577. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/lint_errors.txt +0 -0
  578. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/message.txt +0 -17
  579. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/prompt.txt +0 -17
  580. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/stderr.log +0 -0
  581. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/stdout.log +0 -619
  582. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/tests.json +0 -165
  583. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt +0 -140
  584. package/testeranto/reports/core/src/lib/core.test/core.test/node/exit.log +0 -1
  585. package/testeranto/reports/core/src/lib/core.test/core.test/node/lint_errors.txt +0 -21
  586. package/testeranto/reports/core/src/lib/core.test/core.test/node/message.txt +0 -17
  587. package/testeranto/reports/core/src/lib/core.test/core.test/node/prompt.txt +0 -19
  588. package/testeranto/reports/core/src/lib/core.test/core.test/node/stderr.log +0 -0
  589. package/testeranto/reports/core/src/lib/core.test/core.test/node/type_errors.txt +0 -64
  590. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/tests.json +0 -162
  591. package/testeranto/reports/core/src/mothership/test/node/exit.log +0 -1
  592. package/testeranto/reports/core/src/mothership/test/node/lint_errors.txt +0 -0
  593. package/testeranto/reports/core/src/mothership/test/node/message.txt +0 -17
  594. package/testeranto/reports/core/src/mothership/test/node/prompt.txt +0 -14
  595. package/testeranto/reports/core/src/mothership/test/node/stderr.log +0 -27
  596. package/testeranto/reports/core/src/mothership/test/node/stdout.log +0 -8
  597. package/testeranto/reports/core/src/mothership/test/node/tests.json +0 -36
  598. package/testeranto/reports/core/src/mothership/test/node/type_errors.txt +0 -38
  599. package/videos/download-smil-xsd.sh +0 -29
  600. package/videos/project0/index.md +0 -72
  601. package/videos/project0/narration.json +0 -7
  602. package/videos/project0/narration.ssml +0 -58
  603. package/videos/project0/package.json +0 -21
  604. package/videos/project0/presentation.smil +0 -25
  605. package/videos/project0/smil30/SMIL-anim.mod.xsd +0 -163
  606. package/videos/project0/smil30/SMIL-anim.mod.xsd.1 +0 -163
  607. package/videos/project0/smil30/SMIL-anim.mod.xsd.2 +0 -163
  608. package/videos/project0/smil30/SMIL-control.mod.xsd +0 -73
  609. package/videos/project0/smil30/SMIL-control.mod.xsd.1 +0 -73
  610. package/videos/project0/smil30/SMIL-control.mod.xsd.2 +0 -73
  611. package/videos/project0/smil30/SMIL-layout.mod.xsd +0 -149
  612. package/videos/project0/smil30/SMIL-layout.mod.xsd.1 +0 -149
  613. package/videos/project0/smil30/SMIL-layout.mod.xsd.2 +0 -149
  614. package/videos/project0/smil30/SMIL-link.mod.xsd +0 -145
  615. package/videos/project0/smil30/SMIL-link.mod.xsd.1 +0 -145
  616. package/videos/project0/smil30/SMIL-link.mod.xsd.2 +0 -145
  617. package/videos/project0/smil30/SMIL-media.mod.xsd +0 -1646
  618. package/videos/project0/smil30/SMIL-media.mod.xsd.1 +0 -1646
  619. package/videos/project0/smil30/SMIL-media.mod.xsd.2 +0 -1646
  620. package/videos/project0/smil30/SMIL-metainformation.mod.xsd +0 -45
  621. package/videos/project0/smil30/SMIL-metainformation.mod.xsd.1 +0 -45
  622. package/videos/project0/smil30/SMIL-metainformation.mod.xsd.2 +0 -45
  623. package/videos/project0/smil30/SMIL-smiltext.mod.xsd +0 -353
  624. package/videos/project0/smil30/SMIL-smiltext.mod.xsd.1 +0 -353
  625. package/videos/project0/smil30/SMIL-smiltext.mod.xsd.2 +0 -353
  626. package/videos/project0/smil30/SMIL-state.mod.xsd +0 -133
  627. package/videos/project0/smil30/SMIL-state.mod.xsd.1 +0 -133
  628. package/videos/project0/smil30/SMIL-state.mod.xsd.2 +0 -133
  629. package/videos/project0/smil30/SMIL-struct.mod.xsd +0 -70
  630. package/videos/project0/smil30/SMIL-struct.mod.xsd.1 +0 -70
  631. package/videos/project0/smil30/SMIL-struct.mod.xsd.2 +0 -70
  632. package/videos/project0/smil30/SMIL-timing.mod.xsd +0 -105
  633. package/videos/project0/smil30/SMIL-timing.mod.xsd.1 +0 -105
  634. package/videos/project0/smil30/SMIL-timing.mod.xsd.2 +0 -105
  635. package/videos/project0/smil30/SMIL-transition.mod.xsd +0 -229
  636. package/videos/project0/smil30/SMIL-transition.mod.xsd.1 +0 -229
  637. package/videos/project0/smil30/SMIL-transition.mod.xsd.2 +0 -229
  638. package/videos/project0/smil30/SMIL.xsd +0 -63
  639. package/videos/project0/smil30/SMIL.xsd.1 +0 -63
  640. package/videos/project0/smil30/SMIL.xsd.2 +0 -63
  641. package/videos/project0/smil30/its.xsd +0 -42
  642. package/videos/project0/smil30/its.xsd.1 +0 -42
  643. package/videos/project0/smil30/its.xsd.2 +0 -42
  644. package/videos/project0/smil30/smil-attribs-1.mod.xsd +0 -610
  645. package/videos/project0/smil30/smil-attribs-1.mod.xsd.1 +0 -610
  646. package/videos/project0/smil30/smil-attribs-1.mod.xsd.2 +0 -610
  647. package/videos/project0/smil30/smil-datatypes-1.mod.xsd +0 -72
  648. package/videos/project0/smil30/smil-datatypes-1.mod.xsd.1 +0 -72
  649. package/videos/project0/smil30/smil-datatypes-1.mod.xsd.2 +0 -72
  650. package/videos/project0/smil30/smil-framework-1.mod.xsd +0 -45
  651. package/videos/project0/smil30/smil-framework-1.mod.xsd.1 +0 -45
  652. package/videos/project0/smil30/smil-framework-1.mod.xsd.2 +0 -45
  653. package/videos/project0/smil30/smil-profile-model-1.mod.xsd +0 -1331
  654. package/videos/project0/smil30/smil-profile-model-1.mod.xsd.1 +0 -1331
  655. package/videos/project0/smil30/smil-qname-1.mod.xsd +0 -121
  656. package/videos/project0/smil30/smil-qname-1.mod.xsd.1 +0 -121
  657. package/videos/project0/smil30/xml.xsd +0 -16
  658. package/videos/project0/smil30/xml.xsd.1 +0 -16
  659. package/videos/project0/smil30/xml.xsd.2 +0 -16
  660. package/videos/project0/smil30.xsd +0 -137
  661. package/videos/project0/src/audio/metadata.json +0 -5
  662. package/videos/project0/src/audio/narration.mp3 +0 -0
  663. package/videos/project0/src/motion-canvas.d.ts +0 -1
  664. package/videos/project0/src/project.meta +0 -31
  665. package/videos/project0/src/project.ts +0 -13
  666. package/videos/project0/src/scenes/example.meta +0 -5
  667. package/videos/project0/src/scenes/scene1.meta +0 -3
  668. package/videos/project0/src/scenes/scene1.tsx +0 -129
  669. package/videos/project0/src/scenes/scene2.tsx +0 -132
  670. package/videos/project0/src/scenes/scene3.meta +0 -26
  671. package/videos/project0/src/scenes/scene3.tsx +0 -188
  672. package/videos/project0/tsconfig.json +0 -4
  673. package/videos/project0/vite.config.ts +0 -10
  674. package/videos/trash/output/project.mp4 +0 -0
  675. package/videos/trash/text.mp4 +0 -0
  676. package/videos/trash/video/project.tsx +0 -549
  677. package/videos/trash/video/render.ts +0 -15
  678. package/videos/trash/vite.config.ts +0 -10
  679. package/videos/tts.js +0 -109
  680. /package/dist/common/{src/lib/baseBuilder.test/baseBuilder.test.types.js → design-editor/types.js} +0 -0
  681. /package/dist/common/src/lib/{classBuilder.test/classBuilder.test.types.js → Tiposkripto.test/Tiposkripto.types.js} +0 -0
  682. /package/dist/module/{src/lib/baseBuilder.test/baseBuilder.test.types.js → design-editor/types.js} +0 -0
  683. /package/dist/module/src/lib/{classBuilder.test/classBuilder.test.types.js → Tiposkripto.test/Tiposkripto.types.js} +0 -0
  684. /package/dist/types/{App.d.ts → src/App.d.ts} +0 -0
  685. /package/dist/types/{CoreTypes.d.ts → src/CoreTypes.d.ts} +0 -0
  686. /package/dist/types/{Init.d.ts → src/Init.d.ts} +0 -0
  687. /package/dist/types/{NodeSidecar.d.ts → src/NodeSidecar.d.ts} +0 -0
  688. /package/dist/types/{PM → src/PM}/PM_WithEslintAndTsc.d.ts +0 -0
  689. /package/dist/types/{PM → src/PM}/base.d.ts +0 -0
  690. /package/dist/types/{PM → src/PM}/node.d.ts +0 -0
  691. /package/dist/types/{PM → src/PM}/nodeSidecar.d.ts +0 -0
  692. /package/dist/types/{PM → src/PM}/pureSidecar.d.ts +0 -0
  693. /package/dist/types/{PM → src/PM}/sidecar.d.ts +0 -0
  694. /package/dist/types/{PM → src/PM}/types.d.ts +0 -0
  695. /package/dist/types/{PM → src/PM}/web.d.ts +0 -0
  696. /package/dist/types/{PM → src/PM}/webSidecar.d.ts +0 -0
  697. /package/dist/types/{PureSidecar.d.ts → src/PureSidecar.d.ts} +0 -0
  698. /package/dist/types/{ReportServer.d.ts → src/ReportServer.d.ts} +0 -0
  699. /package/dist/types/{ReportServerLib.d.ts → src/ReportServerLib.d.ts} +0 -0
  700. /package/dist/types/{WebSidecar.d.ts → src/WebSidecar.d.ts} +0 -0
  701. /package/dist/types/{build.d.ts → src/build.d.ts} +0 -0
  702. /package/dist/types/{components → src/components}/SunriseAnimation.d.ts +0 -0
  703. /package/dist/types/{components → src/components}/SunriseAnimation.test/implementation.d.ts +0 -0
  704. /package/dist/types/{components → src/components}/SunriseAnimation.test/index.d.ts +0 -0
  705. /package/dist/types/{components → src/components}/SunriseAnimation.test/interface.d.ts +0 -0
  706. /package/dist/types/{components → src/components}/SunriseAnimation.test/specification.d.ts +0 -0
  707. /package/dist/types/{components → src/components}/SunriseAnimation.test/types.d.ts +0 -0
  708. /package/dist/types/{components → src/components}/TestStatusBadge.d.ts +0 -0
  709. /package/dist/types/{components → src/components}/pure/AppFrame.test/implementation.d.ts +0 -0
  710. /package/dist/types/{components → src/components}/pure/AppFrame.test/specification.d.ts +0 -0
  711. /package/dist/types/{components → src/components}/pure/AppFrame.test/types.d.ts +0 -0
  712. /package/dist/types/{components → src/components}/pure/FeaturesReporterView.d.ts +0 -0
  713. /package/dist/types/{components → src/components}/pure/FeaturesReporterView.test/implementation.d.ts +0 -0
  714. /package/dist/types/{components → src/components}/pure/FeaturesReporterView.test/specification.d.ts +0 -0
  715. /package/dist/types/{components → src/components}/pure/FeaturesReporterView.test/types.d.ts +0 -0
  716. /package/dist/types/{components → src/components}/pure/ModalContent.d.ts +0 -0
  717. /package/dist/types/{components → src/components}/pure/ModalContent.test/implementation.d.ts +0 -0
  718. /package/dist/types/{components → src/components}/pure/ModalContent.test/specification.d.ts +0 -0
  719. /package/dist/types/{components → src/components}/pure/ModalContent.test/types.d.ts +0 -0
  720. /package/dist/types/{components → src/components}/pure/ProjectPageView.d.ts +0 -0
  721. /package/dist/types/{components → src/components}/pure/ProjectPageView.test/implementation.d.ts +0 -0
  722. /package/dist/types/{components → src/components}/pure/ProjectPageView.test/specification.d.ts +0 -0
  723. /package/dist/types/{components → src/components}/pure/ProjectPageView.test/types.d.ts +0 -0
  724. /package/dist/types/{PM/layers/base/PM_Base.d.ts → src/components/pure/SingleProcessView.d.ts} +0 -0
  725. /package/dist/types/{components → src/components}/pure/TestPageView.d.ts +0 -0
  726. /package/dist/types/{components → src/components}/pure/TestPageView.test/specification.d.ts +0 -0
  727. /package/dist/types/{components → src/components}/pure/TestPageView.test/types.d.ts +0 -0
  728. /package/dist/types/{components → src/components}/pure/ThemeCard.d.ts +0 -0
  729. /package/dist/types/{components → src/components}/stateful/FeaturesReporter.d.ts +0 -0
  730. /package/dist/types/{components → src/components}/stateful/ProjectPage.d.ts +0 -0
  731. /package/dist/types/{components → src/components}/stateful/ProjectsPage.d.ts +0 -0
  732. /package/dist/types/{components → src/components}/stateful/TestPage.d.ts +0 -0
  733. /package/dist/types/{defaultConfig.d.ts → src/defaultConfig.d.ts} +0 -0
  734. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/consoleDetectorPlugin.d.ts +0 -0
  735. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/eslint-formatter-testeranto.d.ts +0 -0
  736. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/featuresPlugin.d.ts +0 -0
  737. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/index.d.ts +0 -0
  738. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/inputFilesPlugin.d.ts +0 -0
  739. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/nativeImportDetectorPlugin.d.ts +0 -0
  740. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/node.d.ts +0 -0
  741. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/pure.d.ts +0 -0
  742. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/rebuildPlugin.d.ts +0 -0
  743. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/web.d.ts +0 -0
  744. /package/dist/types/{init-docs.d.ts → src/init-docs.d.ts} +0 -0
  745. /package/dist/types/{lib → src/lib}/BaseSuite.test/test.d.ts +0 -0
  746. /package/dist/types/{lib → src/lib}/Sidecar.d.ts +0 -0
  747. /package/dist/types/{lib → src/lib}/abstractBase.test/adapter.d.ts +0 -0
  748. /package/dist/types/{lib → src/lib}/abstractBase.test/implementation.d.ts +0 -0
  749. /package/dist/types/{lib → src/lib}/abstractBase.test/specification.d.ts +0 -0
  750. /package/dist/types/{PM/layers/base/components/PageOperations.d.ts → src/lib/mocks.test.d.ts} +0 -0
  751. /package/dist/types/{lib → src/lib}/pmProxy.d.ts +0 -0
  752. /package/dist/types/{lib → src/lib}/pmProxy.test/adapter.d.ts +0 -0
  753. /package/dist/types/{lib → src/lib}/pmProxy.test/implementation.d.ts +0 -0
  754. /package/dist/types/{lib → src/lib}/pmProxy.test/mockPM.d.ts +0 -0
  755. /package/dist/types/{lib → src/lib}/pmProxy.test/specification.d.ts +0 -0
  756. /package/dist/types/{lib → src/lib}/pmProxy.test/types.d.ts +0 -0
  757. /package/dist/types/{mothership → src/mothership}/index.d.ts +0 -0
  758. /package/dist/types/{run.d.ts → src/run.d.ts} +0 -0
  759. /package/dist/types/{types → src/types}/features.d.ts +0 -0
  760. /package/dist/types/{utils → src/utils}/api.d.ts +0 -0
  761. /package/dist/types/{utils → src/utils}/buildTemplates.d.ts +0 -0
  762. /package/dist/types/{utils → src/utils}/featureUtils.d.ts +0 -0
  763. /package/dist/types/{utils → src/utils}/makePrompt.d.ts +0 -0
  764. /package/dist/types/{utils → src/utils}/queue.d.ts +0 -0
  765. /package/dist/types/{utils.d.ts → src/utils.d.ts} +0 -0
  766. /package/dist/types/{web.html.d.ts → src/web.html.d.ts} +0 -0
  767. /package/testeranto/reports/core/src/{components/pure/ModalContent.test/index/web → lib/TipoSkripto.test/TipoSkripto/node}/lint_errors.txt +0 -0
  768. /package/testeranto/reports/core/src/{components/pure/AppFrame.test/index/web → lib/TipoSkripto.test/TipoSkripto/node}/message.txt +0 -0
  769. /package/testeranto/reports/core/src/lib/{core.test/core.test → TipoSkripto.test/TipoSkripto}/node/stdout.log +0 -0
package/tsc.log CHANGED
@@ -1,32 +1,35 @@
1
1
  $ /Users/adam/Code/testeranto/node_modules/.bin/tsc --noEmit
2
- ../testeranto-react/src/react-dom/component/dynamic.ts(33,14): error TS2322: Type '(testInput: typeof Component) => { beforeAll: (subject: typeof Component, artificer: ITTestResourceConfiguration) => Promise<{ htmlElement: HTMLElement; }>; ... 5 more ...; assertThis: (x: (s: ISelection) => ISelection) => (s: ISelection) => ISelection; }' is not assignable to type '(testInput: typeof Component) => ITestAdapter<I>'.
2
+ node_modules/testeranto-react/src/react-dom/component/dynamic.ts(33,14): error TS2322: Type '(testInput: typeof Component) => { beforeAll: (subject: typeof Component, artificer: ITTestResourceConfiguration) => Promise<{ htmlElement: HTMLElement; }>; ... 5 more ...; assertThis: (x: (s: ISelection) => ISelection) => (s: ISelection) => ISelection; }' is not assignable to type '(testInput: typeof Component) => ITestAdapter<I>'.
3
3
  Call signature return types '{ beforeAll: (subject: typeof Component, artificer: ITTestResourceConfiguration) => Promise<{ htmlElement: HTMLElement; }>; ... 5 more ...; assertThis: (x: (s: ISelection) => ISelection) => (s: ISelection) => ISelection; }' and 'ITestAdapter<I>' are incompatible.
4
4
  The types returned by 'beforeAll(...)' are incompatible between these types.
5
5
  Type 'Promise<{ htmlElement: HTMLElement; }>' is not assignable to type 'Promise<ISubject>'.
6
6
  Property 'domRoot' is missing in type '{ htmlElement: HTMLElement; }' but required in type 'ISubject'.
7
- ../testeranto-react/src/react-dom/component/dynamic.ts(47,45): error TS2339: Property 'subject' does not exist on type 'Readonly<{}>'.
8
- ../testeranto-react/src/react-dom/component/dynamic.ts(114,9): error TS2554: Expected 1 arguments, but got 3.
9
- ../testeranto-react/src/react-dom/jsx/dynamic.ts(22,3): error TS2741: Property 'assertThis' is missing in type '{ beforeAll: (prototype: IInput, artificer: ITTestResourceConfiguration) => Promise<HTMLElement>; beforeEach: () => Promise<...>; andWhen: (s: HTMLElement, whenCB: any) => Promise<...>; butThen: (s: HTMLElement) => Promise<...>; afterEach: (store: HTMLElement, ndx: string, artificer: IPM) => Promise<...>; afterAll: ...' but required in type 'ITestAdapter<I>'.
10
- ../testeranto-react/src/react-dom/jsx/dynamic.ts(25,17): error TS2345: Argument of type 'null' is not assignable to parameter of type 'HTMLElement | PromiseLike<HTMLElement>'.
11
- ../testeranto-react/src/react-dom/jsx/dynamic.ts(30,17): error TS2345: Argument of type 'FunctionComponentElement<any>' is not assignable to parameter of type 'HTMLElement | PromiseLike<HTMLElement>'.
12
- ../testeranto-react/src/react/component/index.ts(3,44): error TS2307: Cannot find module '../../../Types' or its corresponding type declarations.
13
- src/App.tsx(31,34): error TS2339: Property 'createRoot' does not exist on type 'typeof import("/Users/adam/Code/testeranto/node_modules/@types/react-dom/index")'.
14
- src/App.tsx(41,10): error TS2339: Property 'App' does not exist on type 'Window & typeof globalThis'.
15
- src/App.tsx(43,3): error TS2740: Type 'typeof import("/Users/adam/Code/testeranto/node_modules/@types/react-dom/client")' is missing the following properties from type 'typeof import("/Users/adam/Code/testeranto/node_modules/@types/react-dom/index")': findDOMNode, unmountComponentAtNode, createPortal, flushSync, and 5 more.
7
+ node_modules/testeranto-react/src/react-dom/component/dynamic.ts(47,45): error TS2339: Property 'subject' does not exist on type 'Readonly<{}>'.
8
+ node_modules/testeranto-react/src/react-dom/component/dynamic.ts(114,9): error TS2554: Expected 1 arguments, but got 3.
9
+ node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts(4,39): error TS2459: Module '"testeranto/src/lib"' declares 'IPM' locally, but it is not exported.
10
+ node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts(29,5): error TS2719: Type '(subject: HTMLElement, initializer: (c?: any) => unknown, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, initialValues: any, pm: import("/Users/adam/Code/testeranto/src/lib/types").IPM) => Promise<...>' is not assignable to type '(subject: HTMLElement, initializer: (c?: any) => unknown, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, initialValues: any, pm: import("/Users/adam/Code/testeranto/src/lib/types").IPM) => Promise<...>'. Two different types with this name exist, but they are unrelated.
11
+ Type 'Promise<unknown>' is not assignable to type 'Promise<HTMLElement>'.
12
+ Type 'unknown' is not assignable to type 'HTMLElement'.
13
+ node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts(42,17): error TS2551: Property 'container' does not exist on type 'HTMLElement'. Did you mean 'contains'?
14
+ node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts(43,15): error TS2339: Property 'domRoot' does not exist on type 'HTMLElement'.
15
+ node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts(44,15): error TS2551: Property 'container' does not exist on type 'HTMLElement'. Did you mean 'contains'?
16
+ node_modules/testeranto-react/src/react/component/index.ts(21,3): error TS2739: Type '{ beforeEach: () => Promise<CElement<any, any>>; andWhen: (s: CElement<any, any>, whenCB: () => (s: CElement<any, any>) => any) => any; }' is missing the following properties from type 'ITestAdapter<I>': assertThis, butThen, afterAll, afterEach, beforeAll
17
+ src/App.tsx(49,18): error TS2339: Property 'render' does not exist on type 'typeof import("/Users/adam/Code/testeranto/node_modules/@types/react-dom/client")'.
18
+ src/components/DesignEditorPage.tsx(97,19): error TS2339: Property 'showOpenFilePicker' does not exist on type 'Window & typeof globalThis'.
16
19
  src/components/pure/AppFrame.test/implementation.tsx(19,19): error TS2322: Type '(children: React.ReactNode) => () => (selection: ISelection) => { children: React.ReactNode; htmlElement: HTMLElement; reactElement: React.ReactElement; domRoot: HTMLElement | null; container?: HTMLElement; testId?: string; }' is not assignable to type '(Ig_0: ReactNode) => (s: ISelection) => ISelection'.
17
20
  Call signature return types '() => (selection: ISelection) => { children: ReactNode; htmlElement: HTMLElement; reactElement: ReactElement<any, string | JSXElementConstructor<any>>; domRoot: HTMLElement | null; container?: HTMLElement | undefined; testId?: string | undefined; }' and '(s: ISelection) => ISelection' are incompatible.
18
21
  Type '(selection: ISelection) => { children: React.ReactNode; htmlElement: HTMLElement; reactElement: React.ReactElement; domRoot: HTMLElement | null; container?: HTMLElement; testId?: string; }' is not assignable to type 'ISelection'.
19
22
  src/components/pure/AppFrame.test/index.tsx(19,3): error TS2345: Argument of type 'ITestImplementation<I, O>' is not assignable to parameter of type 'ITestImplementation<I, O, { whens: TestWhenImplementation<I, O>; }>'.
20
23
  Type 'ITestImplementation<I, O>' is not assignable to type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, "whens">'.
21
24
  The types returned by 'givens.Default(...)' are incompatible between these types.
22
- Type '(s: import("/Users/adam/Code/testeranto/src/components/pure/AppFrame.test/types").ISelection) => import("/Users/adam/Code/testeranto/src/components/pure/AppFrame.test/types").ISelection' is not assignable to type '(s: import("/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic").ISelection) => import("/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic").ISelection'.
25
+ Type '(s: import("/Users/adam/Code/testeranto/src/components/pure/AppFrame.test/types").ISelection) => import("/Users/adam/Code/testeranto/src/components/pure/AppFrame.test/types").ISelection' is not assignable to type '(s: import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").ISelection) => import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").ISelection'.
23
26
  Types of parameters 's' and 's' are incompatible.
24
- Type 'import("/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic").ISelection' is not assignable to type 'import("/Users/adam/Code/testeranto/src/components/pure/AppFrame.test/types").ISelection'.
27
+ Type 'import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").ISelection' is not assignable to type 'import("/Users/adam/Code/testeranto/src/components/pure/AppFrame.test/types").ISelection'.
25
28
  Types of property 'domRoot' are incompatible.
26
29
  Type 'Root' is missing the following properties from type 'HTMLElement': accessKey, accessKeyLabel, autocapitalize, autocorrect, and 314 more.
27
- src/components/pure/FeaturesReporterView.test/implementation.tsx(18,13): error TS2322: Type '"test"' is not assignable to type '"file" | "project"'.
28
- src/components/pure/FeaturesReporterView.test/implementation.tsx(23,17): error TS2322: Type '"given"' is not assignable to type '"file" | "project"'.
29
- src/components/pure/FeaturesReporterView.test/implementation.tsx(28,21): error TS2322: Type '"then"' is not assignable to type '"file" | "project"'.
30
+ src/components/pure/FeaturesReporterView.test/implementation.tsx(18,13): error TS2322: Type '"test"' is not assignable to type '"project" | "file"'.
31
+ src/components/pure/FeaturesReporterView.test/implementation.tsx(23,17): error TS2322: Type '"given"' is not assignable to type '"project" | "file"'.
32
+ src/components/pure/FeaturesReporterView.test/implementation.tsx(28,21): error TS2322: Type '"then"' is not assignable to type '"project" | "file"'.
30
33
  src/components/pure/FeaturesReporterView.test/implementation.tsx(60,9): error TS2322: Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.
31
34
  Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput & { container?: HTMLElement | undefined; }'.
32
35
  Property 'treeData' is missing in type 'Promise<{ htmlElement: any; }>' but required in type 'IInput'.
@@ -50,143 +53,114 @@ src/components/pure/FeaturesReporterView.test/implementation.tsx(92,18): error T
50
53
  src/components/pure/FeaturesReporterView.test/implementation.tsx(98,5): error TS2322: Type '(name: string) => ({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(...args: any[]) => (state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.
51
54
  Type '({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.
52
55
  Target signature provides too few arguments. Expected 2 or more, but got 1.
53
- src/components/pure/FeaturesReporterView.test/index.tsx(16,3): error TS2345: Argument of type 'import("/Users/adam/Code/testeranto/src/CoreTypes").ITestSpecification<import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").I, import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").O>' is not assignable to parameter of type 'import("/Users/adam/Code/testeranto/src/CoreTypes").ITestSpecification<import("/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic").I, import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").O>'.
56
+ src/components/pure/FeaturesReporterView.test/index.tsx(16,3): error TS2345: Argument of type 'import("/Users/adam/Code/testeranto/src/CoreTypes").ITestSpecification<import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").I, import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").O>' is not assignable to parameter of type 'import("/Users/adam/Code/testeranto/src/CoreTypes").ITestSpecification<import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I, import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").O>'.
54
57
  Types of parameters 'Suite' and 'Suite' are incompatible.
55
- Type 'import("/Users/adam/Code/testeranto/src/Types").SuiteSpecification<import("/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic").I, import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").O>' is not assignable to type 'import("/Users/adam/Code/testeranto/src/Types").SuiteSpecification<import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").I, import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").O>'.
58
+ Type 'import("/Users/adam/Code/testeranto/src/Types").SuiteSpecification<import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I, import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").O>' is not assignable to type 'import("/Users/adam/Code/testeranto/src/Types").SuiteSpecification<import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").I, import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").O>'.
56
59
  Types of property 'Default' are incompatible.
57
- Type '(name: string, givens: import("/Users/adam/Code/testeranto/src/lib/abstractBase").IGivens<import("/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic").I>) => import("/Users/adam/Code/testeranto/src/lib/BaseSuite").BaseSuite<...>' is not assignable to type '(name: string, givens: import("/Users/adam/Code/testeranto/src/lib/abstractBase").IGivens<import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").I>) => import("/Users/adam/Code/testeranto/src/lib/BaseSuite").BaseSuite<...>'.
60
+ Type '(name: string, givens: import("/Users/adam/Code/testeranto/src/lib/BaseGiven").IGivens<import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I>) => import("/Users/adam/Code/testeranto/src/lib/BaseSuite").BaseSuite<...>' is not assignable to type '(name: string, givens: import("/Users/adam/Code/testeranto/src/lib/BaseGiven").IGivens<import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").I>) => import("/Users/adam/Code/testeranto/src/lib/BaseSuite").BaseSuite<...>'.
58
61
  Types of parameters 'givens' and 'givens' are incompatible.
59
- Type 'import("/Users/adam/Code/testeranto/src/lib/abstractBase").IGivens<import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").I>' is not assignable to type 'import("/Users/adam/Code/testeranto/src/lib/abstractBase").IGivens<import("/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic").I>'.
60
- Type 'import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").I' is not assignable to type 'import("/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic").I'.
62
+ Type 'import("/Users/adam/Code/testeranto/src/lib/BaseGiven").IGivens<import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").I>' is not assignable to type 'import("/Users/adam/Code/testeranto/src/lib/BaseGiven").IGivens<import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I>'.
63
+ Type 'import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").I' is not assignable to type 'import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I'.
61
64
  Types of property 'iinput' are incompatible.
62
65
  Property 'prototype' is missing in type 'IInput' but required in type 'typeof Component'.
63
- src/components/pure/ModalContent.test/implementation.tsx(21,9): error TS2322: Type '({ htmlElement }: IModalContentProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'.
64
- Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IModalContentProps & { container?: HTMLElement | undefined; }'.
65
- Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IModalContentProps': theme, handleThemeChange
66
- src/components/pure/ModalContent.test/implementation.tsx(21,18): error TS2339: Property 'htmlElement' does not exist on type 'IModalContentProps & { container?: HTMLElement | undefined; }'.
67
- src/components/pure/ModalContent.test/implementation.tsx(29,9): error TS2322: Type '({ htmlElement }: IModalContentProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'.
68
- Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IModalContentProps & { container?: HTMLElement | undefined; }'.
69
- Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IModalContentProps': theme, handleThemeChange
70
- src/components/pure/ModalContent.test/implementation.tsx(29,18): error TS2339: Property 'htmlElement' does not exist on type 'IModalContentProps & { container?: HTMLElement | undefined; }'.
71
- src/components/pure/ModalContent.test/implementation.tsx(35,5): error TS2322: Type '(name: string) => ({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(...args: any[]) => (state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'.
72
- Type '({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'.
66
+ src/components/pure/ModalContent.test/implementation.tsx(24,32): error TS2339: Property 'htmlElement' does not exist on type 'IModalContentProps & { container?: HTMLElement | undefined; }'.
67
+ src/components/pure/ModalContent.test/implementation.tsx(32,36): error TS2339: Property 'htmlElement' does not exist on type 'IModalContentProps & { container?: HTMLElement | undefined; }'.
68
+ src/components/pure/ModalContent.test/implementation.tsx(37,5): error TS2322: Type '(name: string) => (state: any, pm: IPM) => Promise<any>' is not assignable to type '(...args: any[]) => (state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'.
69
+ Type '(state: any, pm: IPM) => Promise<any>' is not assignable to type '(state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'.
73
70
  Target signature provides too few arguments. Expected 2 or more, but got 1.
74
- src/components/pure/ModalContent.test/index.tsx(13,3): error TS2345: Argument of type 'import("/Users/adam/Code/testeranto/src/CoreTypes").ITestSpecification<import("/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types").I, import("/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types").O>' is not assignable to parameter of type 'import("/Users/adam/Code/testeranto/src/CoreTypes").ITestSpecification<import("/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic").I, import("/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types").O>'.
75
- Types of parameters 'Suite' and 'Suite' are incompatible.
76
- Type 'import("/Users/adam/Code/testeranto/src/Types").SuiteSpecification<import("/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic").I, import("/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types").O>' is not assignable to type 'import("/Users/adam/Code/testeranto/src/Types").SuiteSpecification<import("/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types").I, import("/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types").O>'.
77
- Types of property 'Default' are incompatible.
78
- Type '(name: string, givens: import("/Users/adam/Code/testeranto/src/lib/abstractBase").IGivens<import("/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic").I>) => import("/Users/adam/Code/testeranto/src/lib/BaseSuite").BaseSuite<...>' is not assignable to type '(name: string, givens: import("/Users/adam/Code/testeranto/src/lib/abstractBase").IGivens<import("/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types").I>) => import("/Users/adam/Code/testeranto/src/lib/BaseSuite").BaseSuite<...>'.
79
- Types of parameters 'givens' and 'givens' are incompatible.
80
- Type 'import("/Users/adam/Code/testeranto/src/lib/abstractBase").IGivens<import("/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types").I>' is not assignable to type 'import("/Users/adam/Code/testeranto/src/lib/abstractBase").IGivens<import("/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic").I>'.
81
- Type 'import("/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types").I' is not assignable to type 'import("/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic").I'.
82
- Types of property 'iinput' are incompatible.
83
- Property 'prototype' is missing in type 'IModalContentProps' but required in type 'typeof Component'.
84
- src/components/pure/NavBar.tsx(76,23): error TS2353: Object literal may only specify known properties, and '':hover'' does not exist in type 'Properties<string | number, string & {}>'.
85
- src/components/pure/ProjectPageView.test/implementation.tsx(11,20): error TS2739: Type '{ summary: { "test-suite-1": { testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; }; "test-suite-2": { testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; }; }; ... 9 more ...; navigate: () => void; }' is missing the following properties from type 'IProjectPageViewProps': activeTab, setActiveTab
86
- src/components/pure/ProjectPageView.test/implementation.tsx(93,22): error TS2739: Type '{ summary: null; nodeLogs: null; webLogs: null; pureLogs: null; config: { tests: never[]; }; loading: false; error: string; projectName: string; route: string; setRoute: () => void; navigate: () => void; }' is missing the following properties from type 'IProjectPageViewProps': activeTab, setActiveTab
87
- src/components/pure/ProjectPageView.test/implementation.tsx(114,9): error TS2322: Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
88
- Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
89
- Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 6 more.
90
- src/components/pure/ProjectPageView.test/implementation.tsx(114,18): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
91
- src/components/pure/ProjectPageView.test/implementation.tsx(122,9): error TS2322: Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
92
- Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
93
- Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 6 more.
94
- src/components/pure/ProjectPageView.test/implementation.tsx(122,18): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
95
- src/components/pure/ProjectPageView.test/implementation.tsx(130,9): error TS2322: Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
96
- Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
97
- Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 6 more.
98
- src/components/pure/ProjectPageView.test/implementation.tsx(130,18): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
99
- src/components/pure/ProjectPageView.test/implementation.tsx(138,9): error TS2322: Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
100
- Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
101
- Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 6 more.
102
- src/components/pure/ProjectPageView.test/implementation.tsx(138,18): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
103
- src/components/pure/ProjectPageView.test/implementation.tsx(146,9): error TS2322: Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
104
- Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
105
- Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 6 more.
106
- src/components/pure/ProjectPageView.test/implementation.tsx(146,18): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
107
- src/components/pure/ProjectPageView.test/implementation.tsx(149,24): error TS18046: 'el' is of type 'unknown'.
108
- src/components/pure/ProjectPageView.test/implementation.tsx(156,9): error TS2322: Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
109
- Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
110
- Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 6 more.
111
- src/components/pure/ProjectPageView.test/implementation.tsx(156,18): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
112
- src/components/pure/ProjectPageView.test/implementation.tsx(159,24): error TS18046: 'el' is of type 'unknown'.
113
- src/components/pure/ProjectPageView.test/implementation.tsx(165,9): error TS2322: Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
114
- Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
115
- Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 6 more.
116
- src/components/pure/ProjectPageView.test/implementation.tsx(165,18): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
117
- src/components/pure/ProjectPageView.test/implementation.tsx(175,5): error TS2322: Type '(name: string) => ({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(...args: any[]) => (state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { ...; }'.
118
- Type '({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
71
+ src/components/pure/ModalContent.test/index.tsx(8,10): error TS2305: Module '"../../../CoreTypes"' has no exported member 'ITestInterface'.
72
+ src/components/pure/ModalContent.test/index.tsx(62,27): error TS2558: Expected 2 type arguments, but got 3.
73
+ src/components/pure/ModalContent.test/specification.ts(20,31): error TS2554: Expected 0 arguments, but got 1.
74
+ src/components/pure/ModalContent.test/specification.ts(21,30): error TS2554: Expected 0 arguments, but got 1.
75
+ src/components/pure/NavBar.tsx(87,21): error TS2322: Type '{ children: (ReactNode | Element)[]; key: number; as: "div" | ForwardRefExoticComponent<LinkProps & RefAttributes<HTMLAnchorElement>>; to: string | undefined; active: boolean | undefined; className: string; title: string | undefined; }' is not assignable to type 'IntrinsicAttributes & Omit<(Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & { ...; }) | (LinkProps & RefAttributes<...>), BsPrefixProps<...> & NavLinkProps> & BsPrefixProps<...> & NavLinkProps & { ...; }'.
76
+ Property 'to' does not exist on type 'IntrinsicAttributes & Omit<(Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & { ...; }) | (LinkProps & RefAttributes<...>), BsPrefixProps<...> & NavLinkProps> & BsPrefixProps<...> & NavLinkProps & { ...; }'.
77
+ src/components/pure/ProjectPageView.test/implementation.tsx(10,3): error TS2741: Property 'Navigation' is missing in type '{ Default: () => { summary: { "test-suite-1": { testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; }; "test-suite-2": { testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; }; }; ... 14 more ...; domRoot: any; }; WithError: () => { ...; }; }' but required in type '{ Default: (...args: any[]) => IProjectPageViewProps; WithError: (...args: any[]) => IProjectPageViewProps; Navigation: (...args: any[]) => IProjectPageViewProps; }'.
78
+ src/components/pure/ProjectPageView.test/implementation.tsx(138,37): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
79
+ src/components/pure/ProjectPageView.test/implementation.tsx(147,37): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
80
+ src/components/pure/ProjectPageView.test/implementation.tsx(156,37): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
81
+ src/components/pure/ProjectPageView.test/implementation.tsx(165,37): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
82
+ src/components/pure/ProjectPageView.test/implementation.tsx(174,37): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
83
+ src/components/pure/ProjectPageView.test/implementation.tsx(177,24): error TS18046: 'el' is of type 'unknown'.
84
+ src/components/pure/ProjectPageView.test/implementation.tsx(185,37): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
85
+ src/components/pure/ProjectPageView.test/implementation.tsx(188,24): error TS18046: 'el' is of type 'unknown'.
86
+ src/components/pure/ProjectPageView.test/implementation.tsx(195,37): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
87
+ src/components/pure/ProjectPageView.test/implementation.tsx(205,5): error TS2322: Type '(name: string) => (state: any, pm: any) => Promise<any>' is not assignable to type '(...args: any[]) => (state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { ...; }'.
88
+ Type '(state: any, pm: any) => Promise<any>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
119
89
  Target signature provides too few arguments. Expected 2 or more, but got 1.
120
- src/components/pure/ProjectPageView.test/index.tsx(8,20): error TS2307: Cannot find module './../../../App.scss' or its corresponding type declarations.
121
- src/components/pure/ProjectPageView.test/index.tsx(18,3): error TS2345: Argument of type 'import("/Users/adam/Code/testeranto/src/CoreTypes").ITestSpecification<import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").I, import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").O>' is not assignable to parameter of type 'import("/Users/adam/Code/testeranto/src/CoreTypes").ITestSpecification<import("/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic").I, import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").O>'.
90
+ src/components/pure/ProjectPageView.test/index.tsx(16,3): error TS2345: Argument of type 'import("/Users/adam/Code/testeranto/src/CoreTypes").ITestSpecification<import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").I, import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").O>' is not assignable to parameter of type 'import("/Users/adam/Code/testeranto/src/CoreTypes").ITestSpecification<import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I, import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").O>'.
122
91
  Types of parameters 'Suite' and 'Suite' are incompatible.
123
- Type 'import("/Users/adam/Code/testeranto/src/Types").SuiteSpecification<import("/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic").I, import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").O>' is not assignable to type 'import("/Users/adam/Code/testeranto/src/Types").SuiteSpecification<import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").I, import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").O>'.
92
+ Type 'import("/Users/adam/Code/testeranto/src/Types").SuiteSpecification<import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I, import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").O>' is not assignable to type 'import("/Users/adam/Code/testeranto/src/Types").SuiteSpecification<import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").I, import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").O>'.
124
93
  Types of property 'Default' are incompatible.
125
- Type '(name: string, givens: import("/Users/adam/Code/testeranto/src/lib/abstractBase").IGivens<import("/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic").I>) => import("/Users/adam/Code/testeranto/src/lib/BaseSuite").BaseSuite<...>' is not assignable to type '(name: string, givens: import("/Users/adam/Code/testeranto/src/lib/abstractBase").IGivens<import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").I>) => import("/Users/adam/Code/testeranto/src/lib/BaseSuite").BaseSuite<...>'.
94
+ Type '(name: string, givens: import("/Users/adam/Code/testeranto/src/lib/BaseGiven").IGivens<import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I>) => import("/Users/adam/Code/testeranto/src/lib/BaseSuite").BaseSuite<...>' is not assignable to type '(name: string, givens: import("/Users/adam/Code/testeranto/src/lib/BaseGiven").IGivens<import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").I>) => import("/Users/adam/Code/testeranto/src/lib/BaseSuite").BaseSuite<...>'.
126
95
  Types of parameters 'givens' and 'givens' are incompatible.
127
- Type 'import("/Users/adam/Code/testeranto/src/lib/abstractBase").IGivens<import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").I>' is not assignable to type 'import("/Users/adam/Code/testeranto/src/lib/abstractBase").IGivens<import("/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic").I>'.
128
- Type 'import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").I' is not assignable to type 'import("/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic").I'.
96
+ Type 'import("/Users/adam/Code/testeranto/src/lib/BaseGiven").IGivens<import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").I>' is not assignable to type 'import("/Users/adam/Code/testeranto/src/lib/BaseGiven").IGivens<import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I>'.
97
+ Type 'import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").I' is not assignable to type 'import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I'.
129
98
  Types of property 'iinput' are incompatible.
130
99
  Property 'prototype' is missing in type 'IProjectPageViewProps' but required in type 'typeof Component'.
131
- src/components/pure/TestPageView.test/implementation.ts(42,20): error TS2322: Type '{ route: string; setRoute: () => void; navigate: () => void; projectName: string; testName: string; decodedTestPath: string; runtime: string; testData: { name: string; givens: { name: string; whens: { name: string; }[]; thens: { ...; }[]; }[]; }; ... 4 more ...; errorCounts: { ...; }; }' is not assignable to type '(props: IProjectPageViewProps) => ISelection'.
132
- Type '{ route: string; setRoute: () => void; navigate: () => void; projectName: string; testName: string; decodedTestPath: string; runtime: string; testData: { name: string; givens: { name: string; whens: { name: string; }[]; thens: { ...; }[]; }[]; }; ... 4 more ...; errorCounts: { ...; }; }' provides no match for the signature '(props: IProjectPageViewProps): ISelection'.
133
- src/components/pure/TestPageView.test/implementation.ts(61,23): error TS2322: Type '{ route: string; setRoute: () => void; navigate: () => void; projectName: string; testName: string; decodedTestPath: string; runtime: string; testData: null; logs: undefined; typeErrors: string; lintErrors: string; testsExist: boolean; errorCounts: { ...; }; }' is not assignable to type '(props: IProjectPageViewProps) => ISelection'.
134
- Type '{ route: string; setRoute: () => void; navigate: () => void; projectName: string; testName: string; decodedTestPath: string; runtime: string; testData: null; logs: undefined; typeErrors: string; lintErrors: string; testsExist: boolean; errorCounts: { ...; }; }' provides no match for the signature '(props: IProjectPageViewProps): ISelection'.
135
- src/components/pure/TestPageView.test/implementation.ts(80,21): error TS2322: Type '{ route: string; setRoute: () => void; navigate: () => void; projectName: string; testName: string; decodedTestPath: string; runtime: string; testData: { name: string; givens: { name: string; whens: { name: string; }[]; thens: { ...; }[]; }[]; }; ... 4 more ...; errorCounts: { ...; }; }' is not assignable to type '(props: IProjectPageViewProps) => ISelection'.
136
- Type '{ route: string; setRoute: () => void; navigate: () => void; projectName: string; testName: string; decodedTestPath: string; runtime: string; testData: { name: string; givens: { name: string; whens: { name: string; }[]; thens: { ...; }[]; }[]; }; ... 4 more ...; errorCounts: { ...; }; }' provides no match for the signature '(props: IProjectPageViewProps): ISelection'.
137
- src/components/pure/TestPageView.test/implementation.ts(102,5): error TS2322: Type '(tabName: string) => (selection: ISelection) => ISelection' is not assignable to type '(Iw_0: string) => (zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection) => ISelection>'.
138
- Call signature return types '(selection: ISelection) => ISelection' and '(zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection) => ISelection>' are incompatible.
139
- Type 'ISelection' is missing the following properties from type 'Promise<(sel: ISelection) => ISelection>': then, catch, finally, [Symbol.toStringTag]
140
- src/components/pure/TestPageView.test/implementation.ts(106,27): error TS2345: Argument of type 'Root' is not assignable to parameter of type 'Element | DocumentFragment'.
141
- src/components/pure/TestPageView.test/implementation.ts(109,29): error TS2322: Type '(selection: ISelection) => ISelection' is not assignable to type '(zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection) => ISelection>'.
142
- Type 'ISelection' is missing the following properties from type 'Promise<(sel: ISelection) => ISelection>': then, catch, finally, [Symbol.toStringTag]
143
- src/components/pure/TestPageView.test/implementation.ts(110,32): error TS2339: Property 'container' does not exist on type 'ISelection'.
144
- src/components/pure/TestPageView.test/implementation.ts(121,5): error TS2322: Type '(name: string) => ({ htmlElement }: ISelection, pm: PM) => Promise<{ htmlElement: HTMLElement; }>' is not assignable to type '(It_0: string) => (ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'.
145
- Call signature return types '({ htmlElement }: ISelection, pm: PM) => Promise<{ htmlElement: HTMLElement; }>' and '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>' are incompatible.
146
- Type 'Promise<{ htmlElement: HTMLElement; }>' is not assignable to type '(sel: ISelection) => Promise<ISelection>'.
147
- Type 'Promise<{ htmlElement: HTMLElement; }>' provides no match for the signature '(sel: ISelection): Promise<ISelection>'.
148
- src/components/pure/TestPageView.test/implementation.ts(128,26): error TS2322: Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'.
149
- Type 'Promise<ISelection>' is not assignable to type '(sel: ISelection) => Promise<ISelection>'.
150
- Type 'Promise<ISelection>' provides no match for the signature '(sel: ISelection): Promise<ISelection>'.
151
- src/components/pure/TestPageView.test/implementation.ts(129,32): error TS2339: Property 'container' does not exist on type 'ISelection'.
152
- src/components/pure/TestPageView.test/implementation.ts(133,5): error TS2322: Type '(tabName: string) => (selection: ISelection) => Promise<ISelection>' is not assignable to type '(It_0: string) => (ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'.
153
- Call signature return types '(selection: ISelection) => Promise<ISelection>' and '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>' are incompatible.
154
- Type 'Promise<ISelection>' is not assignable to type '(sel: ISelection) => Promise<ISelection>'.
155
- Type 'Promise<ISelection>' provides no match for the signature '(sel: ISelection): Promise<ISelection>'.
156
- src/components/pure/TestPageView.test/implementation.ts(134,35): error TS2339: Property 'container' does not exist on type 'ISelection'.
157
- src/components/pure/TestPageView.test/implementation.ts(138,29): error TS2322: Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'.
158
- Type 'Promise<ISelection>' is not assignable to type '(sel: ISelection) => Promise<ISelection>'.
159
- Type 'Promise<ISelection>' provides no match for the signature '(sel: ISelection): Promise<ISelection>'.
160
- src/components/pure/TestPageView.test/implementation.ts(139,32): error TS2339: Property 'container' does not exist on type 'ISelection'.
161
- src/components/pure/TestPageView.test/implementation.ts(141,22): error TS2339: Property 'testsExist' does not exist on type 'ISelection'.
162
- src/components/pure/TestPageView.test/implementation.ts(143,36): error TS2339: Property 'container' does not exist on type 'ISelection'.
163
- src/components/pure/TestPageView.test/implementation.ts(147,26): error TS2339: Property 'errorCounts' does not exist on type 'ISelection'.
164
- src/components/pure/TestPageView.test/implementation.ts(149,21): error TS2339: Property 'container' does not exist on type 'ISelection'.
165
- src/components/pure/TestPageView.test/implementation.ts(153,26): error TS2339: Property 'errorCounts' does not exist on type 'ISelection'.
166
- src/components/pure/TestPageView.test/implementation.ts(154,37): error TS2339: Property 'container' does not exist on type 'ISelection'.
167
- src/components/pure/TestPageView.test/implementation.ts(159,29): error TS2322: Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'.
168
- Type 'Promise<ISelection>' is not assignable to type '(sel: ISelection) => Promise<ISelection>'.
169
- Type 'Promise<ISelection>' provides no match for the signature '(sel: ISelection): Promise<ISelection>'.
170
- src/components/pure/TestPageView.test/implementation.ts(161,21): error TS2339: Property 'testsExist' does not exist on type 'ISelection'.
171
- src/components/pure/TestPageView.test/implementation.ts(162,39): error TS2339: Property 'container' does not exist on type 'ISelection'.
172
- src/components/pure/TestPageView.test/implementation.ts(167,22): error TS2322: Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'.
173
- Type 'Promise<ISelection>' is not assignable to type '(sel: ISelection) => Promise<ISelection>'.
174
- Type 'Promise<ISelection>' provides no match for the signature '(sel: ISelection): Promise<ISelection>'.
175
- src/components/pure/TestPageView.test/implementation.ts(168,30): error TS2339: Property 'container' does not exist on type 'ISelection'.
176
- src/components/pure/TestPageView.test/implementation.ts(172,28): error TS2322: Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'.
177
- Type 'Promise<ISelection>' is not assignable to type '(sel: ISelection) => Promise<ISelection>'.
178
- Type 'Promise<ISelection>' provides no match for the signature '(sel: ISelection): Promise<ISelection>'.
179
- src/components/pure/TestPageView.test/implementation.ts(173,36): error TS2339: Property 'container' does not exist on type 'ISelection'.
180
- src/components/pure/TestPageView.test/implementation.ts(177,28): error TS2322: Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'.
181
- Type 'Promise<ISelection>' is not assignable to type '(sel: ISelection) => Promise<ISelection>'.
182
- Type 'Promise<ISelection>' provides no match for the signature '(sel: ISelection): Promise<ISelection>'.
183
- src/components/pure/TestPageView.test/implementation.ts(178,36): error TS2339: Property 'container' does not exist on type 'ISelection'.
184
- src/components/pure/TestPageView.test/implementation.ts(182,37): error TS2322: Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'.
185
- Type 'Promise<ISelection>' is not assignable to type '(sel: ISelection) => Promise<ISelection>'.
186
- Type 'Promise<ISelection>' provides no match for the signature '(sel: ISelection): Promise<ISelection>'.
187
- src/components/pure/TestPageView.test/implementation.ts(185,22): error TS2304: Cannot find name 'jest'.
188
- src/components/pure/TestPageView.test/implementation.ts(189,13): error TS2554: Expected 3 arguments, but got 1.
189
- src/components/pure/TestPageView.test/implementation.ts(190,51): error TS2339: Property 'called' does not exist on type '(data: string) => Promise<void>'.
100
+ src/components/pure/TestPageView.test/implementation.ts(7,39): error TS2459: Module '"../../../lib"' declares 'IPM' locally, but it is not exported.
101
+ src/components/pure/TestPageView.test/implementation.ts(29,20): error TS2322: Type '(props: IInput) => { summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; error: string | null; projectName: string; activeTab: string; setActiveTab: (tab: string) => void; container: HTMLDivElement; reactElement: React.DetailedReactHTMLElement<...>; domRoot: ReactDom.Root; }' is not assignable to type '(props: IProjectPageViewProps) => ISelection'.
102
+ Property 'htmlElement' is missing in type '{ summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; error: string | null; projectName: string; activeTab: string; setActiveTab: (tab: string) => void; container: HTMLDivElement; reactElement: React.DetailedReactHTMLElement<...>; domRoot: ReactDom.Root; }' but required in type 'ISelection'.
103
+ src/components/pure/TestPageView.test/implementation.ts(34,48): error TS2769: No overload matches this call.
104
+ The last overload gave the following error.
105
+ Argument of type 'IProjectPageViewProps' is not assignable to parameter of type 'string | FunctionComponent<{}> | ComponentClass<{}, any>'.
106
+ src/components/pure/TestPageView.test/implementation.ts(45,23): error TS2322: Type '(props: IInput) => { errorCounts: { runTimeErrors: number; typeErrors: number; staticErrors: number; }; summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; ... 6 more ...; domRoot: ReactDom.Root; }' is not assignable to type '(props: IProjectPageViewProps) => ISelection'.
107
+ Property 'htmlElement' is missing in type '{ errorCounts: { runTimeErrors: number; typeErrors: number; staticErrors: number; }; summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; error: string | null; ... 5 more ...; domRoot: ReactDom.Root; }' but required in type 'ISelection'.
108
+ src/components/pure/TestPageView.test/implementation.ts(49,48): error TS2769: No overload matches this call.
109
+ The last overload gave the following error.
110
+ Argument of type 'IProjectPageViewProps' is not assignable to parameter of type 'string | FunctionComponent<{}> | ComponentClass<{}, any>'.
111
+ src/components/pure/TestPageView.test/implementation.ts(65,21): error TS2322: Type '(props: IInput) => { logs: { 'tests.json': string; 'stdout.log': string; }; summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; error: string | null; projectName: string; ... 4 more ...; domRoot: ReactDom.Root; }' is not assignable to type '(props: IProjectPageViewProps) => ISelection'.
112
+ Property 'htmlElement' is missing in type '{ logs: { 'tests.json': string; 'stdout.log': string; }; summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; error: string | null; projectName: string; activeTab: string; setActiveTab: (tab: string) => void; container: HTMLDivElement; reactElement: React.DetailedReactHTMLElement<...' but required in type 'ISelection'.
113
+ src/components/pure/TestPageView.test/implementation.ts(69,48): error TS2769: No overload matches this call.
114
+ The last overload gave the following error.
115
+ Argument of type 'IProjectPageViewProps' is not assignable to parameter of type 'string | FunctionComponent<{}> | ComponentClass<{}, any>'.
116
+ src/components/pure/TestPageView.test/implementation.ts(87,5): error TS2322: Type '(tabName: string) => (selection: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => { reactElement: React.ReactElement<any, string | React.JSXElementConstructor<any>>; activeTab: string; htmlElement: HTMLElement; domRoot: ReactDom.Root; }>' is not assignable to type '(Iw_0: string) => (zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>>'.
117
+ Call signature return types '(selection: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => { reactElement: ReactElement<any, string | JSXElementConstructor<...>>; activeTab: string; htmlElement: HTMLElement; domRoot: Root; }>' and '(zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>>' are incompatible.
118
+ Type 'Promise<(sel: ISelection) => { reactElement: ReactElement<any, string | JSXElementConstructor<any>>; activeTab: string; htmlElement: HTMLElement; domRoot: Root; }>' is not assignable to type 'Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>>'.
119
+ Type '(sel: ISelection) => { reactElement: React.ReactElement<any, string | React.JSXElementConstructor<any>>; activeTab: string; htmlElement: HTMLElement; domRoot: ReactDom.Root; }' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
120
+ Type '{ reactElement: ReactElement<any, string | JSXElementConstructor<any>>; activeTab: string; htmlElement: HTMLElement; domRoot: Root; }' is missing the following properties from type 'Promise<(sel: ISelection) => ISelection>': then, catch, finally, [Symbol.toStringTag]
121
+ src/components/pure/TestPageView.test/implementation.ts(98,29): error TS2322: Type '(selection: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>' is not assignable to type '(zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>>'.
122
+ Type 'Promise<(sel: ISelection) => ISelection>' is not assignable to type 'Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>>'.
123
+ Type '(sel: ISelection) => ISelection' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
124
+ Type 'ISelection' is missing the following properties from type 'Promise<(sel: ISelection) => ISelection>': then, catch, finally, [Symbol.toStringTag]
125
+ src/components/pure/TestPageView.test/implementation.ts(100,32): error TS2339: Property 'container' does not exist on type 'ISelection'.
126
+ src/components/pure/TestPageView.test/implementation.ts(109,5): error TS2322: Type '(name: string) => (ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(It_0: string) => (ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>'.
127
+ Call signature return types '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' and '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>' are incompatible.
128
+ Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
129
+ Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
130
+ src/components/pure/TestPageView.test/implementation.ts(113,26): error TS2322: Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
131
+ Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
132
+ Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
133
+ src/components/pure/TestPageView.test/implementation.ts(114,26): error TS2339: Property 'container' does not exist on type 'ISelection'.
134
+ src/components/pure/TestPageView.test/implementation.ts(118,5): error TS2322: Type '(tabName: string) => (ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(It_0: string) => (ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>'.
135
+ Call signature return types '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' and '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>' are incompatible.
136
+ Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
137
+ Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
138
+ src/components/pure/TestPageView.test/implementation.ts(120,24): error TS2339: Property 'activeTab' does not exist on type 'ISelection'.
139
+ src/components/pure/TestPageView.test/implementation.ts(123,29): error TS2322: Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
140
+ Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
141
+ Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
142
+ src/components/pure/TestPageView.test/implementation.ts(125,26): error TS2339: Property 'container' does not exist on type 'ISelection'.
143
+ src/components/pure/TestPageView.test/implementation.ts(129,29): error TS2322: Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
144
+ Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
145
+ Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
146
+ src/components/pure/TestPageView.test/implementation.ts(131,15): error TS2339: Property 'testsExist' does not exist on type 'ISelection'.
147
+ src/components/pure/TestPageView.test/implementation.ts(132,33): error TS2339: Property 'container' does not exist on type 'ISelection'.
148
+ src/components/pure/TestPageView.test/implementation.ts(137,22): error TS2322: Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
149
+ Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
150
+ Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
151
+ src/components/pure/TestPageView.test/implementation.ts(139,24): error TS2339: Property 'container' does not exist on type 'ISelection'.
152
+ src/components/pure/TestPageView.test/implementation.ts(143,28): error TS2322: Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
153
+ Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
154
+ Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
155
+ src/components/pure/TestPageView.test/implementation.ts(145,30): error TS2339: Property 'container' does not exist on type 'ISelection'.
156
+ src/components/pure/TestPageView.test/implementation.ts(149,28): error TS2322: Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
157
+ Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
158
+ Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
159
+ src/components/pure/TestPageView.test/implementation.ts(151,30): error TS2339: Property 'container' does not exist on type 'ISelection'.
160
+ src/components/pure/TestPageView.test/implementation.ts(155,37): error TS2322: Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
161
+ Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
162
+ Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
163
+ src/components/pure/TestPageView.test/implementation.ts(157,31): error TS2339: Property 'container' does not exist on type 'ISelection'.
190
164
  src/components/pure/TestPageView.test/index.tsx(18,3): error TS2345: Argument of type 'ITestSpecification<{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }, O>' is not assignable to parameter of type 'ITestSpecification<I, O>'.
191
165
  Types of parameters 'Suite' and 'Suite' are incompatible.
192
166
  Type 'SuiteSpecification<I, O>' is not assignable to type 'SuiteSpecification<{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }, O>'.
@@ -197,230 +171,95 @@ src/components/pure/TestPageView.test/index.tsx(18,3): error TS2345: Argument of
197
171
  Type '{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }' is not assignable to type 'I'.
198
172
  Types of property 'istore' are incompatible.
199
173
  Type 'ISelection' is missing the following properties from type 'HTMLElement': accessKey, accessKeyLabel, autocapitalize, autocorrect, and 314 more.
200
- src/components/pure/TestPageView.tsx(278,21): error TS2322: Type '{ testName: string; testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; variant: "compact"; className: string; }' is not assignable to type 'IntrinsicAttributes & TestStatusBadgeProps'.
174
+ src/components/pure/TestPageView.tsx(64,13): error TS18046: 'node' is of type 'unknown'.
175
+ src/components/pure/TestPageView.tsx(72,45): error TS18046: 'node' is of type 'unknown'.
176
+ src/components/pure/TestPageView.tsx(1011,11): error TS2322: Type '{ testName: string; testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; variant: "compact"; className: string; }' is not assignable to type 'IntrinsicAttributes & TestStatusBadgeProps'.
201
177
  Property 'className' does not exist on type 'IntrinsicAttributes & TestStatusBadgeProps'.
202
- src/components/stateful/ProjectsPage.tsx(66,7): error TS2322: Type 'Record<string, ISummary>' is not assignable to type 'TestSummary'.
178
+ src/components/stateful/FileTree.tsx(2,10): error TS2459: Module '"./TextEditorPage"' declares 'FileType' locally, but it is not exported.
179
+ src/components/stateful/FileTree.tsx(53,12): error TS18046: 'dirFiles' is of type 'unknown'.
180
+ src/components/stateful/ProjectsPage.tsx(95,7): error TS2322: Type 'Record<string, ISummary>' is not assignable to type 'TestSummary'.
203
181
  'string' index signatures are incompatible.
204
182
  Type 'ISummary' has no properties in common with type '{ testsExist?: boolean | undefined; runTimeErrors?: number | undefined; typeErrors?: number | undefined; staticErrors?: number | undefined; }'.
205
- src/components/stateful/ProjectsPage.tsx(67,7): error TS2322: Type 'Record<string, object>' is not assignable to type 'ProjectConfig'.
183
+ src/components/stateful/ProjectsPage.tsx(96,7): error TS2322: Type 'Record<string, object>' is not assignable to type 'ProjectConfig'.
206
184
  'string' index signatures are incompatible.
207
185
  Property 'tests' is missing in type '{}' but required in type '{ tests: [string, string][]; }'.
208
- src/components/stateful/TestPage.tsx(90,18): error TS2345: Argument of type 'string' is not assignable to parameter of type 'SetStateAction<null>'.
209
- src/components/stateful/TestPage.tsx(104,7): error TS2322: Type '{ route: "coverage" | "results" | "logs" | "types" | "lint"; setRoute: Dispatch<SetStateAction<string>>; navigate: NavigateFunction; ... 6 more ...; errorCounts: { ...; }; }' is not assignable to type 'IntrinsicAttributes & TestPageViewProps'.
186
+ src/components/stateful/SingleProcessPage.tsx(4,35): error TS2306: File '/Users/adam/Code/testeranto/src/components/pure/SingleProcessView.tsx' is not a module.
187
+ src/components/stateful/TestPage.tsx(76,24): error TS18046: 'output' is of type 'unknown'.
188
+ src/components/stateful/TestPage.tsx(83,27): error TS18046: 'output' is of type 'unknown'.
189
+ src/components/stateful/TestPage.tsx(153,9): error TS2322: Type '{}' is not assignable to type 'string'.
190
+ src/components/stateful/TestPage.tsx(195,18): error TS2345: Argument of type 'string' is not assignable to parameter of type 'SetStateAction<null>'.
191
+ src/components/stateful/TestPage.tsx(211,9): error TS2322: Type '{ route: "coverage" | "results" | "logs" | "types" | "lint"; setRoute: Dispatch<SetStateAction<string>>; navigate: NavigateFunction; ... 6 more ...; errorCounts: { ...; }; }' is not assignable to type 'IntrinsicAttributes & TestPageViewProps'.
210
192
  Property 'route' does not exist on type 'IntrinsicAttributes & TestPageViewProps'.
193
+ src/components/stateful/TextEditorPage.tsx(110,11): error TS2322: Type 'string | undefined' is not assignable to type 'string | null'.
194
+ Type 'undefined' is not assignable to type 'string | null'.
211
195
  src/components/SunriseAnimation.test/interface.ts(2,10): error TS2305: Module '"../../CoreTypes"' has no exported member 'ITestInterface'.
212
196
  src/components/SunriseAnimation.test/interface.ts(5,34): error TS2307: Cannot find module './SunriseAnimation' or its corresponding type declarations.
213
197
  src/components/SunriseAnimation.test/interface.ts(7,14): error TS1214: Identifier expected. 'interface' is a reserved word in strict mode. Modules are automatically in strict mode.
214
- src/lib/abstractBase.test/adapter.ts(5,47): error TS2322: Type 'Promise<() => { testStore: { value: string; }; }>' is not assignable to type 'Promise<{ testStore: { value: string; }; error?: Error | undefined; }>'.
215
- Type '() => { testStore: { value: string; }; }' is not assignable to type '{ testStore: { value: string; }; error?: Error | undefined; }'.
216
- src/lib/abstractBase.test/adapter.ts(8,25): error TS2739: Type '{ testStore: { value: string; }; error?: Error | undefined; }' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
217
- src/lib/abstractBase.test/implementation.ts(11,20): error TS2322: Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' is not assignable to type '() => { testStore: { value: string; }; }'.
198
+ src/lib/abstractBase.test/adapter.ts(7,3): error TS2719: Type '(subject: {}, initializer: (c?: any) => () => () => { testStore: { value: string; }; }, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, initialValues: any, pm: import("/Users/adam/Code/testeranto/src/lib/types").IPM) => Promise<...>' is not assignable to type '(subject: {}, initializer: (c?: any) => () => () => { testStore: { value: string; }; }, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, initialValues: any, pm: import("/Users/adam/Code/testeranto/src/lib/types").IPM) => Promise<...>'. Two different types with this name exist, but they are unrelated.
199
+ Type 'Promise<() => { testStore: { value: string; }; }>' is not assignable to type 'Promise<{ testStore: { value: string; }; error?: Error | undefined; }>'.
200
+ Type '() => { testStore: { value: string; }; }' is not assignable to type '{ testStore: { value: string; }; error?: Error | undefined; }'.
201
+ src/lib/abstractBase.test/adapter.ts(16,3): error TS2719: Type '(store: { testStore: { value: string; }; error?: Error | undefined; }, whenCB: (store: any) => (store: any) => any, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, pm: import("/Users/adam/Code/testeranto/src/lib/types").IPM) => Promise<...>' is not assignable to type '(store: { testStore: { value: string; }; error?: Error | undefined; }, whenCB: (store: any) => (store: any) => any, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, pm: import("/Users/adam/Code/testeranto/src/lib/types").IPM) => Promise<...>'. Two different types with this name exist, but they are unrelated.
202
+ Type 'Promise<(store: any) => any>' is not assignable to type 'Promise<{ testStore: { value: string; }; error?: Error | undefined; }>'.
203
+ Type '(store: any) => any' is not assignable to type '{ testStore: { value: string; }; error?: Error | undefined; }'.
204
+ src/lib/abstractBase.test/adapter.ts(19,3): error TS2719: Type '(store: { testStore: { value: string; }; error?: Error | undefined; }, thenCB: (store: any) => (store: any) => any, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, pm: import("/Users/adam/Code/testeranto/src/lib/types").IPM) => Promise<...>' is not assignable to type '(store: { testStore: { value: string; }; error?: Error | undefined; }, thenCB: (store: any) => (store: any) => any, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, pm: import("/Users/adam/Code/testeranto/src/lib/types").IPM) => Promise<...>'. Two different types with this name exist, but they are unrelated.
205
+ Type 'Promise<(store: any) => any>' is not assignable to type 'Promise<{ testSelection: { selected: boolean; }; }>'.
206
+ Type '(store: any) => any' is not assignable to type '{ testSelection: { selected: boolean; }; }'.
207
+ src/lib/abstractBase.test/implementation.ts(11,26): error TS2322: Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' is not assignable to type '() => { testStore: { value: string; }; }'.
218
208
  Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' provides no match for the signature '(): { testStore: { value: string; }; }'.
219
- src/lib/abstractBase.test/implementation.ts(15,22): error TS2322: Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' is not assignable to type '() => { testStore: { value: string; }; }'.
209
+ src/lib/abstractBase.test/implementation.ts(15,28): error TS2322: Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' is not assignable to type '() => { testStore: { value: string; }; }'.
220
210
  Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' provides no match for the signature '(): { testStore: { value: string; }; }'.
221
- src/lib/abstractBase.test/implementation.ts(22,5): error TS2322: Type '(newValue: string) => (store: { testSelection: { selected: boolean; }; }) => { testStore: { value: string; }; testSelection: { selected: boolean; }; }' is not assignable to type '(...Iw: any) => (zel: { testSelection: { selected: boolean; }; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: any) => any>'.
222
- Call signature return types '(store: { testSelection: { selected: boolean; }; }) => { testStore: { value: string; }; testSelection: { selected: boolean; }; }' and '(zel: { testSelection: { selected: boolean; }; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: any) => any>' are incompatible.
223
- Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' is missing the following properties from type 'Promise<(store: any) => any>': then, catch, finally, [Symbol.toStringTag]
224
- src/lib/abstractBase.test/implementation.ts(32,5): error TS2322: Type '(expected: string) => (store: { testSelection: { selected: boolean; }; }) => { testSelection: { selected: boolean; }; }' is not assignable to type '(...It: any) => (ssel: { testSelection: { selected: boolean; }; }, utils: PM) => (store: any) => any'.
225
- Call signature return types '(store: { testSelection: { selected: boolean; }; }) => { testSelection: { selected: boolean; }; }' and '(ssel: { testSelection: { selected: boolean; }; }, utils: PM) => (store: any) => any' are incompatible.
226
- Type '{ testSelection: { selected: boolean; }; }' is not assignable to type '(store: any) => any'.
227
- Type '{ testSelection: { selected: boolean; }; }' provides no match for the signature '(store: any): any'.
228
- src/lib/abstractBase.test/implementation.ts(33,17): error TS2339: Property 'testStore' does not exist on type '{ testSelection: { selected: boolean; }; }'.
229
- src/lib/abstractBase.test/implementation.ts(34,60): error TS2339: Property 'testStore' does not exist on type '{ testSelection: { selected: boolean; }; }'.
230
- src/lib/abstractBase.test/implementation.ts(38,5): error TS2322: Type '(expected: string) => (store: { testSelection: { selected: boolean; }; }) => { testSelection: { selected: boolean; }; }' is not assignable to type '(...It: any) => (ssel: { testSelection: { selected: boolean; }; }, utils: PM) => (store: any) => any'.
231
- Call signature return types '(store: { testSelection: { selected: boolean; }; }) => { testSelection: { selected: boolean; }; }' and '(ssel: { testSelection: { selected: boolean; }; }, utils: PM) => (store: any) => any' are incompatible.
232
- Type '{ testSelection: { selected: boolean; }; }' is not assignable to type '(store: any) => any'.
233
- Type '{ testSelection: { selected: boolean; }; }' provides no match for the signature '(store: any): any'.
234
- src/lib/abstractBase.test/implementation.ts(39,18): error TS2339: Property 'error' does not exist on type '{ testSelection: { selected: boolean; }; }'.
235
- src/lib/abstractBase.test/implementation.ts(39,34): error TS2339: Property 'error' does not exist on type '{ testSelection: { selected: boolean; }; }'.
236
- src/lib/abstractBase.test/MockGiven.ts(24,12): error TS2349: This expression is not callable.
211
+ src/lib/abstractBase.test/MockGiven.ts(30,20): error TS2349: This expression is not callable.
237
212
  Type 'unknown' has no call signatures.
238
213
  src/lib/abstractBase.test/types.ts(13,17): error TS2707: Generic type 'Ibdd_out' requires between 0 and 4 type arguments.
239
- src/lib/baseBuilder.test/baseBuilder.test.adapter.ts(8,49): error TS2322: Type 'Promise<{}>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.
240
- Type '{}' is missing the following properties from type 'BaseBuilder<any, any, any, any, any, any>': specs, assertThis, testResourceRequirement, artifacts, and 12 more.
241
- src/lib/baseBuilder.test/baseBuilder.test.adapter.ts(9,3): error TS2719: Type '(subject: import("/Users/adam/Code/testeranto/src/lib/basebuilder").BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => import("/Users/adam/Code/testeranto/src/lib/basebuilder").BaseBuilder<any, any, any, any, any, any>, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestR...' is not assignable to type '(subject: import("/Users/adam/Code/testeranto/src/lib/basebuilder").BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => import("/Users/adam/Code/testeranto/src/lib/basebuilder").BaseBuilder<any, any, any, any, any, any>, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestR...'. Two different types with this name exist, but they are unrelated.
242
- Type 'Promise<() => BaseBuilder<any, any, any, any, any, any>>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.
243
- Type '() => BaseBuilder<any, any, any, any, any, any>' is not assignable to type 'BaseBuilder<any, any, any, any, any, any>'.
244
- src/lib/baseBuilder.test/baseBuilder.test.adapter.ts(14,26): error TS2554: Expected 1 arguments, but got 2.
245
- src/lib/baseBuilder.test/baseBuilder.test.adapter.ts(17,26): error TS2554: Expected 1 arguments, but got 2.
246
- src/lib/baseBuilder.test/baseBuilder.test.adapter.ts(19,25): error TS2739: Type 'BaseBuilder<any, any, any, any, any, any>' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
247
- src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(19,5): error TS2322: Type '() => MockBaseBuilder<Ibdd_in_any, Ibdd_out_any, {}, {}, {}, {}>' is not assignable to type '() => () => BaseBuilder<any, any, any, any, any, any>'.
248
- Type 'MockBaseBuilder<Ibdd_in_any, Ibdd_out_any, {}, {}, {}, {}>' is not assignable to type '() => BaseBuilder<any, any, any, any, any, any>'.
249
- Type 'MockBaseBuilder<Ibdd_in_any, Ibdd_out_any, {}, {}, {}, {}>' provides no match for the signature '(): BaseBuilder<any, any, any, any, any, any>'.
250
- src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(30,5): error TS2322: Type '(input: any) => MockBaseBuilder<Ibdd_in_any, Ibdd_out_any, {}, {}, {}, {}>' is not assignable to type '() => () => BaseBuilder<any, any, any, any, any, any>'.
251
- Target signature provides too few arguments. Expected 1 or more, but got 0.
252
- src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(37,11): error TS2322: Type 'never[]' is not assignable to type 'number'.
253
- src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(41,5): error TS2322: Type '(requirements: ITTestResourceRequest) => MockBaseBuilder<Ibdd_in_any, Ibdd_out_any, {}, {}, {}, {}>' is not assignable to type '() => () => BaseBuilder<any, any, any, any, any, any>'.
254
- Target signature provides too few arguments. Expected 1 or more, but got 0.
255
- src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(60,32): error TS2322: Type '(builder: BaseBuilder<any, any, any, any, any, any>, utils: PM) => BaseBuilder<any, any, any, any, any, any>' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.
256
- Type 'BaseBuilder<any, any, any, any, any, any>' is not assignable to type '(store: any) => any'.
257
- Type 'BaseBuilder<any, any, any, any, any, any>' provides no match for the signature '(store: any): any'.
258
- src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(66,100): error TS2339: Property 'constructor' does not exist on type 'never'.
259
- src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(87,46): error TS2322: Type '(builder: TestSubject) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.
260
- Type 'TestSubject' is not assignable to type '(store: any) => any'.
261
- Type 'MockBaseBuilder<any, any, any, any, any, any>' provides no match for the signature '(store: any): any'.
262
- src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(93,30): error TS2322: Type '(builder: TestSubject) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.
263
- Type 'TestSubject' is not assignable to type '(store: any) => any'.
264
- Type 'MockBaseBuilder<any, any, any, any, any, any>' provides no match for the signature '(store: any): any'.
265
- src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(99,34): error TS2322: Type '(builder: TestSubject, utils: PM) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.
266
- Type 'TestSubject' is not assignable to type '(store: any) => any'.
267
- Type 'MockBaseBuilder<any, any, any, any, any, any>' provides no match for the signature '(store: any): any'.
268
- src/lib/basebuilder.ts(76,49): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.
269
- src/lib/basebuilder.ts(82,17): error TS2349: This expression is not callable.
270
- Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
271
- Type 'void' has no call signatures.
272
- src/lib/BaseSuite.test/mock.ts(36,9): error TS2416: Property 'andWhen' in type 'MockWhen' is not assignable to the same property in base type 'BaseWhen<I>'.
273
- 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<...>'.
274
- Types of parameters 'whenCB' and 'whenCB' are incompatible.
275
- Types of parameters 'x' and 'store' are incompatible.
276
- Type 'TestStore' is not assignable to type 'TestSelection'.
277
- Types of property 'testSelection' are incompatible.
278
- Type 'boolean | undefined' is not assignable to type 'boolean'.
279
- Type 'undefined' is not assignable to type 'boolean'.
280
- src/lib/BaseSuite.test/mock.ts(52,3): error TS2416: Property 'addArtifact' in type 'MockWhen' is not assignable to the same property in base type 'BaseWhen<I>'.
281
- Type '(name: string, content: string) => this' is not assignable to type '(path: string) => void'.
282
- Target signature provides too few arguments. Expected 2 or more, but got 1.
283
- src/lib/BaseSuite.test/mock.ts(59,9): error TS2416: Property 'butThen' in type 'MockThen' is not assignable to the same property in base type 'BaseThen<I>'.
284
- Types of parameters 'thenCB' and 'thenCB' are incompatible.
285
- Type 'Promise<BaseSuite<any, any>>' is not assignable to type 'Promise<TestSelection>'.
286
- Property 'testSelection' is missing in type 'BaseSuite<any, any>' but required in type 'TestSelection'.
287
- src/lib/BaseSuite.test/mock.ts(67,7): error TS2353: Object literal may only specify known properties, and 'name' does not exist in type 'TestSelection'.
288
- src/lib/BaseSuite.test/mock.ts(101,10): error TS2322: Type 'MockWhen' is not assignable to type 'BaseWhen<I>'.
289
- Types of property 'addArtifact' are incompatible.
290
- Type '(name: string, content: string) => MockWhen' is not assignable to type '(path: string) => void'.
291
- Target signature provides too few arguments. Expected 2 or more, but got 1.
292
- src/lib/BaseSuite.test/mock.ts(101,41): error TS2322: Type 'Promise<{ testStore: boolean; }>' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
293
- Type 'Promise<{ testStore: boolean; }>' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
294
- src/lib/BaseSuite.test/mock.ts(104,13): error TS2322: Type 'Promise<{ testSelection: boolean; }>' is not assignable to type 'Promise<(store: TestStore) => Promise<TestSelection>>'.
295
- Type '{ testSelection: boolean; }' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
296
- Type '{ testSelection: boolean; }' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
297
- src/lib/BaseSuite.test/test.ts(126,5): error TS2322: Type '() => MockSuite' is not assignable to type '() => () => Promise<TestStore>'.
298
- Type 'MockSuite' is not assignable to type '() => Promise<TestStore>'.
299
- Type 'MockSuite' provides no match for the signature '(): Promise<TestStore>'.
300
- src/lib/BaseSuite.test/test.ts(137,30): error TS2345: Argument of type 'Promise<unknown>' is not assignable to parameter of type 'string'.
301
- src/lib/BaseSuite.test/test.ts(144,15): error TS2339: Property 'specs' does not exist on type 'MockSuite'.
302
- src/lib/BaseSuite.test/test.ts(144,38): error TS2339: Property 'specs' does not exist on type 'MockSuite'.
303
- src/lib/BaseSuite.test/test.ts(151,15): error TS2339: Property 'testJobs' does not exist on type 'MockSuite'.
304
- src/lib/BaseSuite.test/test.ts(151,41): error TS2339: Property 'testJobs' does not exist on type 'MockSuite'.
305
- src/lib/BaseSuite.test/test.ts(157,7): error TS2322: Type '(suite: MockSuite) => Promise<MockSuite>' is not assignable to type '(zel: TestSelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: TestStore) => Promise<TestStore>>'.
214
+ src/lib/BaseSuite.test/mock.ts(49,5): error TS2322: Type '{ testSelection: boolean; error?: boolean | Error | undefined; name?: string; index?: number; testStore: boolean; }' is not assignable to type 'TestStore'.
215
+ Types of property 'error' are incompatible.
216
+ Type 'boolean | Error | undefined' is not assignable to type 'Error | undefined'.
217
+ Type 'boolean' is not assignable to type 'Error'.
218
+ src/lib/BaseSuite.test/mock.ts(85,13): error TS2322: Type 'Promise<{ testSelection: boolean; }>' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
219
+ Type 'Promise<{ testSelection: boolean; }>' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
220
+ src/lib/BaseSuite.test/mock.ts(90,29): error TS2511: Cannot create an instance of an abstract class.
221
+ src/lib/BaseSuite.test/test.ts(143,30): error TS2345: Argument of type 'Promise<unknown>' is not assignable to parameter of type 'string'.
222
+ src/lib/BaseSuite.test/test.ts(150,15): error TS2339: Property 'specs' does not exist on type 'MockSuite'.
223
+ src/lib/BaseSuite.test/test.ts(150,38): error TS2339: Property 'specs' does not exist on type 'MockSuite'.
224
+ src/lib/BaseSuite.test/test.ts(157,15): error TS2339: Property 'testJobs' does not exist on type 'MockSuite'.
225
+ src/lib/BaseSuite.test/test.ts(157,41): error TS2339: Property 'testJobs' does not exist on type 'MockSuite'.
226
+ src/lib/BaseSuite.test/test.ts(163,7): error TS2322: Type '(suite: MockSuite) => Promise<MockSuite>' is not assignable to type '(zel: TestSelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: TestStore) => Promise<TestStore>>'.
306
227
  Types of parameters 'suite' and 'zel' are incompatible.
307
228
  Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 11 more.
308
- src/lib/BaseSuite.test/test.ts(177,11): error TS2322: Type '() => void' is not assignable to type '((selector: string) => boolean) | ((selector: string) => boolean) | ((selector: string, page: string) => Promise<unknown>)'.
229
+ src/lib/BaseSuite.test/test.ts(182,11): error TS2322: Type '() => void' is not assignable to type '((tLog: ITLog, callback: (p: Promise<void>) => void) => (fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void) | ((tLog: ITLog, callback: (promise: Promise<...>) => void) => (fPath: string, value: any) => void) | ((tLog: ITLog, callback: (Promise: any) => void) => (fPath: any, value: string ...'.
230
+ Type '() => void' is not assignable to type '(tLog: ITLog, callback: (p: Promise<void>) => void) => (fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void'.
231
+ Type 'void' is not assignable to type '(fPath: string, value: string | Buffer | PassThrough) => void'.
232
+ src/lib/BaseSuite.test/test.ts(183,11): error TS2322: Type '() => void' is not assignable to type '((selector: string) => boolean) | ((selector: string) => boolean) | ((selector: string, page: string) => Promise<unknown>)'.
309
233
  Type '() => void' is not assignable to type '(selector: string) => boolean'.
310
234
  Type 'void' is not assignable to type 'boolean'.
311
- src/lib/BaseSuite.test/test.ts(179,11): error TS2322: Type '() => void' is not assignable to type '((p: any) => string) | ((p: any) => string) | ((p: any) => Promise<unknown>)'.
235
+ src/lib/BaseSuite.test/test.ts(185,11): error TS2322: Type '() => void' is not assignable to type '((p: any) => string) | ((p: any) => string) | ((p: any) => Promise<unknown>)'.
312
236
  Type '() => void' is not assignable to type '(p: any) => string'.
313
237
  Type 'void' is not assignable to type 'string'.
314
- src/lib/BaseSuite.test/test.ts(184,11): error TS2345: Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'.
315
- src/lib/BaseSuite.test/test.ts(198,13): error TS2345: Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'.
316
- src/lib/BaseSuite.test/test.ts(223,5): error TS2322: Type '(expectedName: string) => ((selection: TestSelection) => TestSelection)' is not assignable to type '(It_0: string) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
317
- Call signature return types '(selection: TestSelection) => TestSelection' and '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>' are incompatible.
318
- Type 'TestSelection' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
319
- Type 'TestSelection' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
320
- src/lib/BaseSuite.test/test.ts(226,24): error TS2339: Property 'name' does not exist on type 'TestSelection'.
321
- src/lib/BaseSuite.test/test.ts(229,23): error TS2339: Property 'name' does not exist on type 'TestSelection'.
322
- src/lib/BaseSuite.test/test.ts(231,70): error TS2339: Property 'name' does not exist on type 'TestSelection'.
323
- src/lib/BaseSuite.test/test.ts(237,5): error TS2322: Type '(expectedIndex: number) => ((selection: TestSelection) => TestSelection)' is not assignable to type '(It_0: number) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
324
- Call signature return types '(selection: TestSelection) => TestSelection' and '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>' are incompatible.
325
- Type 'TestSelection' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
326
- Type 'TestSelection' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
327
- src/lib/BaseSuite.test/test.ts(240,23): error TS2339: Property 'index' does not exist on type 'TestSelection'.
328
- src/lib/BaseSuite.test/test.ts(242,69): error TS2339: Property 'index' does not exist on type 'TestSelection'.
329
- src/lib/BaseSuite.test/test.ts(248,5): error TS2322: Type '(feature: string) => ((suite: MockSuite) => MockSuite)' is not assignable to type '(feature: string) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
330
- Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
331
- Types of parameters 'suite' and 'ssel' are incompatible.
332
- Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 11 more.
333
- src/lib/BaseSuite.test/test.ts(269,58): error TS2322: Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
238
+ src/lib/BaseSuite.test/test.ts(190,11): error TS2345: Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'.
239
+ src/lib/BaseSuite.test/test.ts(204,13): error TS2345: Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'.
240
+ src/lib/BaseSuite.test/test.ts(271,58): error TS2322: Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
334
241
  Types of parameters 'suite' and 'ssel' are incompatible.
335
242
  Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 11 more.
336
- src/lib/BaseSuite.test/test.ts(321,19): error TS2339: Property 'specs' does not exist on type 'MockSuite'.
337
- src/lib/BaseSuite.test/test.ts(330,19): error TS2339: Property 'testJobs' does not exist on type 'MockSuite'.
338
- src/lib/BaseSuite.test/test.ts(371,22): error TS2339: Property 'index' does not exist on type '() => Promise<TestStore>'.
339
- src/lib/BaseSuite.test/test.ts(374,19): error TS2339: Property 'store' does not exist on type '() => Promise<TestStore>'.
340
- src/lib/BaseSuite.test/test.ts(387,44): error TS2554: Expected 1 arguments, but got 2.
341
- src/lib/BaseSuite.test/test.ts(389,3): error TS2322: 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<...>'.
243
+ src/lib/BaseSuite.test/test.ts(323,19): error TS2339: Property 'specs' does not exist on type 'MockSuite'.
244
+ src/lib/BaseSuite.test/test.ts(332,19): error TS2339: Property 'testJobs' does not exist on type 'MockSuite'.
245
+ src/lib/BaseSuite.test/test.ts(373,22): error TS2339: Property 'index' does not exist on type '() => Promise<TestStore>'.
246
+ src/lib/BaseSuite.test/test.ts(376,19): error TS2339: Property 'store' does not exist on type '() => Promise<TestStore>'.
247
+ src/lib/BaseSuite.test/test.ts(393,26): error TS2349: This expression is not callable.
248
+ Type 'Promise<TestStore>' has no call signatures.
249
+ src/lib/BaseSuite.test/test.ts(393,33): error TS2345: Argument of type 'TestSelection' is not assignable to parameter of type 'TestStore'.
250
+ Property 'testStore' is missing in type 'TestSelection' but required in type 'TestStore'.
251
+ src/lib/BaseSuite.test/test.ts(398,3): error TS2322: Type '(store: TestStore, thenCB: (s: TestSelection) => Promise<BaseSuite<any, any>>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<TestSelection>' is not assignable to type '(store: TestStore, thenCB: (store: TestStore) => Promise<TestSelection>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<...>'.
342
252
  Types of parameters 'thenCB' and 'thenCB' are incompatible.
343
- Type '(store: TestStore) => Promise<TestSelection>' is not assignable to type '(selection: TestSelection) => Promise<TestSelection>'.
344
- Types of parameters 'store' and 'selection' are incompatible.
253
+ Type '(store: TestStore) => Promise<TestSelection>' is not assignable to type '(s: TestSelection) => Promise<BaseSuite<any, any>>'.
254
+ Types of parameters 'store' and 's' are incompatible.
345
255
  Property 'testStore' is missing in type 'TestSelection' but required in type 'TestStore'.
346
- src/lib/BaseSuite.test/test.ts(398,7): error TS2353: Object literal may only specify known properties, and 'name' does not exist in type 'TestSelection'.
347
- src/lib/BaseSuite.test/test.ts(419,3): error TS2322: Type '(store: I["istore"]) => I["istore"]' is not assignable to type '(store: TestStore, key: string, pm: IPM) => Promise<unknown>'.
256
+ src/lib/BaseSuite.test/test.ts(415,3): error TS2322: Type '(store: I["istore"]) => I["istore"]' is not assignable to type '(store: TestStore, key: string, pm: IPM) => Promise<unknown>'.
348
257
  Type 'TestStore' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
349
- src/lib/classBuilder.test/classBuilder.test.adapter.ts(9,3): error TS2322: Type '() => Promise<void>' is not assignable to type '(input: {}, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<BaseBuilder<any, any, any, any, any, any>>'.
350
- Type 'Promise<void>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.
351
- Type 'void' is not assignable to type 'BaseBuilder<any, any, any, any, any, any>'.
352
- src/lib/classBuilder.test/classBuilder.test.adapter.ts(10,3): error TS2322: Type '(subject: BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => BaseBuilder<any, any, any, any, any, any>) => Promise<() => BaseBuilder<any, any, any, any, any, any>>' is not assignable to type '(subject: BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => BaseBuilder<any, any, any, any, any, any>, testResource: ITTestResourceConfiguration, initialValues: any, pm: IPM) => Promise<...>'.
353
- Type 'Promise<() => BaseBuilder<any, any, any, any, any, any>>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.
354
- Type '() => BaseBuilder<any, any, any, any, any, any>' is not assignable to type 'BaseBuilder<any, any, any, any, any, any>'.
355
- src/lib/classBuilder.test/classBuilder.test.adapter.ts(17,26): error TS2554: Expected 1 arguments, but got 2.
356
- src/lib/classBuilder.test/classBuilder.test.adapter.ts(20,26): error TS2554: Expected 1 arguments, but got 2.
357
- src/lib/classBuilder.test/classBuilder.test.adapter.ts(22,25): error TS2739: Type 'BaseBuilder<any, any, any, any, any, any>' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
358
- src/lib/classBuilder.test/classBuilder.test.implementation.ts(7,10): error TS2724: '"../classBuilder"' has no exported member named 'TestClassBuilder'. Did you mean 'ClassBuilder'?
359
- src/lib/classBuilder.test/classBuilder.test.implementation.ts(28,9): error TS2345: Argument of type 'typeof MockSuite' is not assignable to parameter of type 'ISuiteKlasser<I, O>'.
360
- Type 'typeof MockSuite' provides no match for the signature '(name: string, index: number, givens: IGivens<I>): BaseSuite<I, O>'.
361
- src/lib/classBuilder.test/classBuilder.test.implementation.ts(47,9): error TS2554: Expected 8 arguments, but got 9.
362
- src/lib/classBuilder.test/classBuilder.test.implementation.ts(60,9): error TS2554: Expected 8 arguments, but got 9.
363
- src/lib/classBuilder.test/classBuilder.test.implementation.ts(73,9): error TS2554: Expected 8 arguments, but got 9.
364
- src/lib/classBuilder.test/classBuilder.test.implementation.ts(86,9): error TS2554: Expected 8 arguments, but got 9.
365
- src/lib/classBuilder.test/classBuilder.test.implementation.ts(207,30): error TS2322: Type '(builder: ClassBuilder<any, any, any>) => Promise<ClassBuilder<any, any, any>>' is not assignable to type '(builder: ClassBuilder<any, any, any>) => ClassBuilder<any, any, any>'.
366
- Type 'Promise<ClassBuilder<any, any, any>>' is missing the following properties from type 'ClassBuilder<any, any, any>': specs, assertThis, testResourceRequirement, artifacts, and 12 more.
367
- src/lib/classBuilder.test/classBuilder.test.implementation.ts(209,23): error TS2339: Property 'testRun' does not exist on type 'ClassBuilder<any, any, any>'.
368
- src/lib/classBuilder.test/classBuilder.test.specification.ts(19,26): error TS2554: Expected 4 arguments, but got 3.
369
- src/lib/classBuilder.test/classBuilder.test.specification.ts(24,35): error TS2554: Expected 4 arguments, but got 3.
370
- src/lib/classBuilder.test/classBuilder.test.specification.ts(64,37): error TS2554: Expected 4 arguments, but got 3.
371
- src/lib/classBuilder.test/classBuilder.test.specification.ts(69,36): error TS2554: Expected 4 arguments, but got 3.
372
- src/lib/classBuilder.test/classBuilder.test.specification.ts(83,54): error TS2304: Cannot find name 'ITestJob'.
373
- src/lib/classBuilder.test/classBuilder.test.specification.ts(101,7): error TS2554: Expected 2 arguments, but got 3.
374
- src/lib/classBuilder.test/mock.ts(45,7): error TS2345: 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 & { ...; }'.
375
- 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, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
376
- src/lib/classBuilder.ts(89,18): error TS2556: A spread argument must either have a tuple type or be passed to a rest parameter.
377
- src/lib/classBuilder.ts(104,28): error TS2556: A spread argument must either have a tuple type or be passed to a rest parameter.
378
- src/lib/core.test/core.test.adapter.ts(27,26): error TS2554: Expected 1 arguments, but got 2.
379
- src/lib/core.test/core.test.adapter.ts(30,26): error TS2554: Expected 1 arguments, but got 2.
380
- src/lib/core.test/core.test.adapter.ts(32,25): error TS2739: Type 'MockCore<any, any, any>' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
381
- src/lib/core.test/core.test.implementation.ts(21,11): error TS2304: Cannot find name 'specification'.
382
- src/lib/core.test/core.test.implementation.ts(23,11): error TS2345: Argument of type '{ ports: number[]; }' is not assignable to parameter of type 'ITTestResourceRequest'.
383
- Types of property 'ports' are incompatible.
384
- Type 'number[]' is not assignable to type 'number'.
385
- src/lib/core.test/core.test.implementation.ts(24,11): error TS2304: Cannot find name 'testAdapter'.
386
- src/lib/core.test/core.test.implementation.ts(36,9): error TS2304: Cannot find name 'specification'.
387
- src/lib/core.test/core.test.implementation.ts(38,11): error TS2322: Type 'never[]' is not assignable to type 'number'.
388
- src/lib/core.test/core.test.implementation.ts(39,9): error TS2304: Cannot find name 'testAdapter'.
389
- src/lib/core.test/core.test.implementation.ts(46,9): error TS2304: Cannot find name 'specification'.
390
- src/lib/core.test/core.test.implementation.ts(49,9): error TS2304: Cannot find name 'testAdapter'.
391
- src/lib/core.test/core.test.implementation.ts(56,9): error TS2304: Cannot find name 'specification'.
392
- src/lib/core.test/core.test.implementation.ts(58,11): error TS2322: Type 'never[]' is not assignable to type 'number'.
393
- src/lib/core.test/core.test.implementation.ts(59,14): error TS2304: Cannot find name 'testAdapter'.
394
- src/lib/core.test/core.test.implementation.ts(93,51): error TS2339: Property 'constructor' does not exist on type 'never'.
395
- src/lib/core.test/core.test.implementation.ts(138,30): error TS2322: Type '(builder: MockCore<any, any, any>) => Promise<MockCore<any, any, any>>' is not assignable to type '(builder: MockCore<any, any, any>) => MockCore<any, any, any>'.
396
- Type 'Promise<MockCore<any, any, any>>' is missing the following properties from type 'MockCore<any, any, any>': specs, testJobs, artifacts, testResourceRequirement, and 14 more.
397
- src/lib/core.test/core.test.specification.ts(29,7): error TS2554: Expected 2 arguments, but got 4.
398
- src/lib/core.test/core.test.specification.ts(42,13): error TS2353: Object literal may only specify known properties, and 'test' does not exist in type 'string[]'.
399
- src/lib/core.test/core.test.specification.ts(49,13): error TS2353: Object literal may only specify known properties, and 'ports' does not exist in type 'string[]'.
400
- src/lib/core.test/core.test.specification.ts(55,13): error TS2353: Object literal may only specify known properties, and 'assertThis' does not exist in type 'string[]'.
401
- src/lib/core.test/core.test.specification.ts(82,105): error TS2554: Expected 2 arguments, but got 3.
402
- src/lib/core.test/core.test.types.ts(15,17): error TS2707: Generic type 'Ibdd_out' requires between 0 and 4 type arguments.
403
- src/lib/core.test/MockCore.ts(32,56): error TS2322: Type 'never[]' is not assignable to type 'number'.
404
- src/lib/core.test/MockCore.ts(49,7): error TS2345: 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 & { ...; }'.
405
- 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
406
- src/lib/core.ts(48,7): error TS2345: 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")....'.
407
- 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>; }'.
408
- Types of property 'suites' are incompatible.
409
- Type 'Record<string, any>' is not assignable to type 'Record<string, never>'.
410
- 'string' index signatures are incompatible.
411
- Type 'any' is not assignable to type 'never'.
412
- src/lib/index.ts(17,3): error TS2322: 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<...>'.
413
- Types of parameters 'initialValues' and 'initializer' are incompatible.
414
- Type '(c?: any) => T["given"]' is not assignable to type 'T["iinitialValues"]'.
415
- 'T["iinitialValues"]' could be instantiated with an arbitrary type which could be unrelated to '(c?: any) => T["given"]'.
416
- src/lib/index.ts(19,20): error TS2536: Type '"iinitialValues"' cannot be used to index type 'T'.
417
- src/lib/index.ts(41,13): error TS2349: This expression is not callable.
258
+ src/lib/BaseThen.ts(76,41): error TS2556: A spread argument must either have a tuple type or be passed to a rest parameter.
259
+ src/lib/index.ts(42,12): error TS2349: This expression is not callable.
260
+ Type 'unknown' has no call signatures.
261
+ src/lib/index.ts(50,12): error TS2349: This expression is not callable.
418
262
  Type 'unknown' has no call signatures.
419
- src/lib/index.ts(53,3): error TS2322: 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>'.
420
- Types of property 'assertThis' are incompatible.
421
- Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
422
- Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
423
- src/lib/mocks.test.ts(8,16): error TS2304: Cannot find name 'BaseSuite'.
424
263
  src/lib/pmProxy.test/adapter.ts(13,3): error TS2719: Type '(subject: { proxies: import("/Users/adam/Code/testeranto/src/lib/pmProxy.test/index").ITestProxies; filepath: string; mockPm: import("/Users/adam/Code/testeranto/src/lib/types").IPM; }, initializer: (c?: any) => [...], testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, ini...' is not assignable to type '(subject: { proxies: import("/Users/adam/Code/testeranto/src/lib/pmProxy.test/index").ITestProxies; filepath: string; mockPm: import("/Users/adam/Code/testeranto/src/lib/types").IPM; }, initializer: (c?: any) => [...], testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, ini...'. Two different types with this name exist, but they are unrelated.
425
264
  Type 'Promise<{ proxies: ITestProxies; filepath: string; mockPm: IPM; }>' is not assignable to type 'Promise<{ butThenProxy: IProxy; }>'.
426
265
  Property 'butThenProxy' is missing in type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' but required in type '{ butThenProxy: IProxy; }'.
@@ -431,31 +270,24 @@ src/lib/pmProxy.test/adapter.ts(37,12): error TS2349: This expression is not cal
431
270
  Type '[IPM, "string"]' has no call signatures.
432
271
  src/lib/pmProxy.test/adapter.ts(42,3): error TS2322: Type '(input: any, testResource: any, pm: any, theGivenString: any) => Promise<{ beforeEachProxy: any; }>' is not assignable to type '(input: { butThenProxy: IProxy; }, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<{ proxies: ITestProxies; filepath: string; mockPm: IPM; }>'.
433
272
  Target signature provides too few arguments. Expected 4 or more, but got 3.
434
- src/lib/pmProxy.test/adapter.ts(51,3): error TS2322: Type '(returnedFilePath: any, expectation: any) => void' is not assignable to type '(x: [IPM, "string"]) => any'.
273
+ src/lib/pmProxy.test/adapter.ts(51,3): error TS2322: Type '(actualResult: any, expectedResult: any) => void' is not assignable to type '(x: [IPM, "string"]) => any'.
435
274
  Target signature provides too few arguments. Expected 2 or more, but got 1.
436
- src/lib/pmProxy.test/implementation.ts(55,5): error TS2322: Type '(method: string, expectedPath: string) => (store: { pathRewriter: PathRewriter; }) => [undefined, undefined] | [string, string, any] | [any, string]' is not assignable to type '(...It: any) => (ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, "string"]'.
437
- Type '(store: { pathRewriter: PathRewriter; }) => [undefined, undefined] | [string, string, any] | [any, string]' is not assignable to type '(ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, "string"]'.
275
+ src/lib/pmProxy.test/implementation.ts(56,5): error TS2322: Type '(method: string, expectedPath: string) => (store: { pathRewriter: PathRewriter; }) => Promise<string | undefined>' is not assignable to type '(...It: any) => (ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, "string"]'.
276
+ Type '(store: { pathRewriter: PathRewriter; }) => Promise<string | undefined>' is not assignable to type '(ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, "string"]'.
438
277
  Types of parameters 'store' and 'ssel' are incompatible.
439
278
  Property 'pathRewriter' is missing in type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' but required in type '{ pathRewriter: PathRewriter; }'.
440
- src/lib/pmProxy.test/implementation.ts(81,17): error TS2554: Expected 1 arguments, but got 2.
441
- src/lib/pmProxy.test/implementation.ts(83,35): error TS2339: Property 'getLastCall' does not exist on type 'IPM'.
442
- Property 'getLastCall' does not exist on type 'PM_Node'.
443
- src/lib/pmProxy.test/implementation.ts(84,38): error TS2339: Property 'getLastCall' does not exist on type 'IPM'.
444
- Property 'getLastCall' does not exist on type 'PM_Node'.
445
- src/lib/pmProxy.test/implementation.ts(91,35): error TS2339: Property 'getLastCall' does not exist on type 'IPM'.
446
- Property 'getLastCall' does not exist on type 'PM_Node'.
447
- src/lib/pmProxy.test/implementation.ts(97,19): error TS2322: Type '"screen.png"' is not assignable to type '`${string}.webm`'.
448
- src/lib/pmProxy.test/implementation.ts(103,35): error TS2339: Property 'getLastCall' does not exist on type 'IPM'.
449
- Property 'getLastCall' does not exist on type 'PM_Node'.
450
- src/lib/pmProxy.test/implementation.ts(104,38): error TS2339: Property 'getLastCall' does not exist on type 'IPM'.
451
- Property 'getLastCall' does not exist on type 'PM_Node'.
452
- src/lib/pmProxy.test/implementation.ts(108,69): error TS2322: Type '"shot.png"' is not assignable to type '`${string}.webm`'.
453
- src/lib/pmProxy.test/implementation.ts(109,35): error TS2339: Property 'getLastCall' does not exist on type 'IPM'.
454
- Property 'getLastCall' does not exist on type 'PM_Node'.
455
- src/lib/pmProxy.test/implementation.ts(126,5): error TS2322: Type '(expectedContent: any) => (result: any[]) => any[]' is not assignable to type '(...It: any) => (ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, "string"]'.
279
+ src/lib/pmProxy.test/implementation.ts(67,9): error TS2322: Type '(path: string, content: string, testName?: string) => Promise<any>' is not assignable to type '((x: any) => Promise<boolean>) | (() => Promise<boolean>) | ((x: any) => any)'.
280
+ Type '(path: string, content: string, testName?: string) => Promise<any>' is not assignable to type '(x: any) => Promise<boolean>'.
281
+ Target signature provides too few arguments. Expected 2 or more, but got 1.
282
+ src/lib/pmProxy.test/implementation.ts(103,17): error TS2554: Expected 1 arguments, but got 3.
283
+ src/lib/pmProxy.test/implementation.ts(115,19): error TS2322: Type '"screen.png"' is not assignable to type '`${string}.webm`'.
284
+ src/lib/pmProxy.test/implementation.ts(137,5): error TS2322: Type '(expectedContent: any) => (result: any[]) => any[]' is not assignable to type '(...It: any) => (ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, "string"]'.
456
285
  Type '(result: any[]) => any[]' is not assignable to type '(ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, "string"]'.
457
286
  Types of parameters 'result' and 'ssel' are incompatible.
458
287
  Type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' is missing the following properties from type 'any[]': length, pop, push, concat, and 35 more.
288
+ src/lib/pmProxy.test/implementation.ts(150,13): error TS2322: Type '(store: { pathRewriter: PathRewriter; }) => Promise<string>' is not assignable to type '(ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, "string"]'.
289
+ Types of parameters 'store' and 'ssel' are incompatible.
290
+ Property 'pathRewriter' is missing in type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' but required in type '{ pathRewriter: PathRewriter; }'.
459
291
  src/lib/pmProxy.test/index.ts(17,3): error TS2345: Argument of type 'ITestImplementation<I, any, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<any>; givens: TestGivenImplementation<I, any>; whens: TestWhenImplementation<I, any>; thens: TestThenImplementation<...>; }, never>'.
460
292
  Types of property 'givens' are incompatible.
461
293
  Type '{ [x: string]: (...Iw: any) => string; }' is not assignable to type 'TestGivenImplementation<I, any>'.
@@ -467,10 +299,33 @@ src/lib/pmProxy.test/mockPM.ts(23,3): error TS2416: Property 'launchSideCar' in
467
299
  Type 'Promise<[number, any]>' is not assignable to type 'Promise<void>'.
468
300
  Type '[number, any]' is not assignable to type 'void'.
469
301
  src/lib/pmProxy.test/types.ts(19,17): error TS2707: Generic type 'Ibdd_out' requires between 0 and 4 type arguments.
302
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(32,56): error TS2322: Type 'never[]' is not assignable to type 'number'.
303
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(47,7): error TS2345: 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 & { ...; }'.
304
+ 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, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
305
+ src/lib/Tiposkripto.test/Tiposkripto.adapter.ts(29,26): error TS2554: Expected 1 arguments, but got 2.
306
+ src/lib/Tiposkripto.test/Tiposkripto.adapter.ts(32,26): error TS2554: Expected 1 arguments, but got 2.
307
+ src/lib/Tiposkripto.test/Tiposkripto.adapter.ts(34,25): error TS2739: Type 'Tiposkripto<any, any, any>' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
308
+ src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(28,13): error TS2322: Type 'never[]' is not assignable to type 'number'.
309
+ src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(42,11): error TS2322: Type 'never[]' is not assignable to type 'number'.
310
+ src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(62,11): error TS2322: Type 'never[]' is not assignable to type 'number'.
311
+ src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(72,11): error TS2322: Type 'never[]' is not assignable to type 'number'.
312
+ src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(82,11): error TS2322: Type 'never[]' is not assignable to type 'number'.
313
+ src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(189,20): error TS2339: Property 'testAdapter' does not exist on type 'Tiposkripto<any, any, any>'.
314
+ src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(210,30): error TS2322: Type '(builder: Tiposkripto<any, any, any>) => Promise<Tiposkripto<any, any, any>>' is not assignable to type '(builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>'.
315
+ Type 'Promise<Tiposkripto<any, any, any>>' is missing the following properties from type 'Tiposkripto<any, any, any>': receiveTestResourceConfig, specs, assertThis, testResourceRequirement, and 14 more.
316
+ src/lib/Tiposkripto.test/Tiposkripto.specification.ts(20,26): error TS2554: Expected 4 arguments, but got 3.
317
+ src/lib/Tiposkripto.test/Tiposkripto.specification.ts(25,35): error TS2554: Expected 4 arguments, but got 3.
318
+ src/lib/Tiposkripto.test/Tiposkripto.specification.ts(59,37): error TS2554: Expected 4 arguments, but got 3.
319
+ src/lib/Tiposkripto.test/Tiposkripto.specification.ts(71,35): error TS2554: Expected 4 arguments, but got 3.
320
+ src/lib/Tiposkripto.test/Tiposkripto.specification.ts(76,34): error TS2554: Expected 4 arguments, but got 3.
321
+ src/lib/Tiposkripto.test/Tiposkripto.specification.ts(90,52): error TS2304: Cannot find name 'ITestJob'.
322
+ src/lib/Tiposkripto.ts(205,7): error TS2345: Argument of type 'Record<string, any>' is not assignable to parameter of type 'SuiteSpecification<I, O>'.
323
+ src/lib/Tiposkripto.ts(263,15): error TS2554: Expected 1 arguments, but got 3.
470
324
  src/mothership/test.ts(64,7): error TS2554: Expected 2 arguments, but got 3.
471
325
  src/mothership/test.ts(70,13): error TS2322: Type '(x: any) => any' is not assignable to type 'string'.
472
- src/Node.ts(33,7): error TS2345: 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 & { ...; }'.
473
- 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
326
+ src/Node.ts(34,7): error TS2345: 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 & { ...; }'.
327
+ 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, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
328
+ src/Node.ts(56,12): error TS2304: Cannot find name 'Testeranto'.
474
329
  src/PM/__tests__/nodeSidecar.testeranto.ts(53,43): error TS2304: Cannot find name 'I'.
475
330
  src/PM/__tests__/nodeSidecar.testeranto.ts(54,13): error TS2322: Type '(x: any) => any' is not assignable to type 'string'.
476
331
  src/PM/__tests__/nodeSidecar.testeranto.ts(95,29): error TS2454: Variable 'callbackFn' is used before being assigned.
@@ -497,98 +352,78 @@ src/PM/__tests__/webSidecar.testeranto.ts(94,38): error TS2322: Type 'boolean' i
497
352
  src/PM/__tests__/webSidecar.testeranto.ts(109,18): error TS2339: Property 'removeListenerCalled' does not exist on type 'PM'.
498
353
  src/PM/__tests__/webSidecar.testeranto.ts(118,20): error TS2304: Cannot find name 'IPartialNodeAdapter'.
499
354
  src/PM/__tests__/webSidecar.testeranto.ts(118,40): error TS2304: Cannot find name 'I'.
500
- src/PM/main.ts(305,7): error TS2322: Type '[number, Page]' is not assignable to type '[number, ITTestResourceConfiguration]'.
355
+ src/PM/main.ts(388,21): error TS2322: Type 'number | null' is not assignable to type 'number | undefined'.
356
+ Type 'null' is not assignable to type 'number | undefined'.
357
+ src/PM/main.ts(543,7): error TS2322: Type '[number, Page]' is not assignable to type '[number, ITTestResourceConfiguration]'.
501
358
  Type at position 1 in source is not compatible with type at position 1 in target.
502
359
  Type 'Page' is missing the following properties from type 'ITTestResourceConfiguration': name, fs, ports
503
- src/PM/main.ts(845,32): error TS2304: Cannot find name 'argz'.
504
- src/PM/main.ts(1121,31): error TS2322: Type 'import("/Users/adam/Code/testeranto/node_modules/puppeteer-core/lib/types").Page' is not assignable to type 'import("/Users/adam/Code/testeranto/node_modules/puppeteer-core/lib/esm/puppeteer/api/Page").Page'.
360
+ src/PM/main.ts(1097,32): error TS2304: Cannot find name 'argz'.
361
+ src/PM/main.ts(1373,31): error TS2322: Type 'import("/Users/adam/Code/testeranto/node_modules/puppeteer-core/lib/types").Page' is not assignable to type 'import("/Users/adam/Code/testeranto/node_modules/puppeteer-core/lib/esm/puppeteer/api/Page").Page'.
505
362
  Property '#private' in type 'Page' refers to a different member that cannot be accessed from within type 'Page'.
506
- src/PM/main.ts(1128,6): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.
507
- src/PM/main.ts(1352,16): error TS2454: Variable 'argz' is used before being assigned.
508
- src/PM/main.ts(1596,9): error TS2532: Object is possibly 'undefined'.
509
- src/PM/pure.ts(114,3): error TS2416: Property 'customScreenShot' in type 'PM_Pure' is not assignable to the same property in base type 'PM'.
510
- Type '(opts: ScreencastOptions, page: string) => any' is not assignable to type '(opts: { path: string; }, page?: string | undefined) => any'.
511
- Types of parameters 'opts' and 'opts' are incompatible.
512
- Type '{ path: string; }' is not assignable to type 'ScreencastOptions'.
513
- Types of property 'path' are incompatible.
514
- Type 'string' is not assignable to type '`${string}.webm`'.
515
- src/PM/pure.ts(145,3): error TS2416: Property 'createWriteStream' in type 'PM_Pure' is not assignable to the same property in base type 'PM'.
516
- Type '() => { write: () => boolean; end: () => void; }' is not assignable to type '(filepath: string, testName: string) => Promise<string>'.
517
- Type '{ write: () => boolean; end: () => void; }' is missing the following properties from type 'Promise<string>': then, catch, finally, [Symbol.toStringTag]
363
+ src/PM/main.ts(1380,6): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.
364
+ src/PM/main.ts(1604,16): error TS2454: Variable 'argz' is used before being assigned.
365
+ src/PM/main.ts(1867,9): error TS2532: Object is possibly 'undefined'.
366
+ src/PM/main.ts(1912,11): error TS2322: Type 'string' is not assignable to type 'null'.
367
+ src/PM/PM_WithEslintAndTsc.ts(249,10): error TS2339: Property 'broadcast' does not exist on type 'PM_WithEslintAndTsc'.
518
368
  src/PM/web.ts(59,12): error TS2339: Property 'mainFrame' does not exist on type 'string | Page'.
519
369
  Property 'mainFrame' does not exist on type 'string'.
520
- src/Pure.test.ts(58,20): error TS2322: Type '{ pm: IPM; config: {}; proxies: { butThenProxy: (pm: IPM, path: string) => { writeFileSync: (p: string, c: string) => any; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; andWhenProxy: (pm: IPM, path: string) => { ...; } | ... 1 more ... | { ...; }; befor...' is not assignable to type '() => IPM'.
521
- Type '{ pm: IPM; config: {}; proxies: { butThenProxy: (pm: IPM, path: string) => { writeFileSync: (p: string, c: string) => any; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; andWhenProxy: (pm: IPM, path: string) => { ...; } | ... 1 more ... | { ...; }; befor...' provides no match for the signature '(): IPM'.
522
- src/Pure.test.ts(65,54): error TS2554: Expected 1 arguments, but got 2.
523
- src/Pure.test.ts(70,54): error TS2554: Expected 1 arguments, but got 2.
524
- src/Pure.test.ts(75,64): error TS2554: Expected 1 arguments, but got 2.
525
- src/Pure.test.ts(82,5): error TS2322: Type '(proxyType: string) => (store: { pm: IPM; }) => { pm: IPM; } | { pm: {}; } | { largePayload: boolean; pm: { writeFileSync: (p: string, c: string) => boolean; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; } | { ...; }' is not assignable to type '(Iw_0: string) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>'.
526
- Call signature return types '(store: { pm: IPM; }) => { pm: IPM; } | { pm: {}; } | { largePayload: boolean; pm: { writeFileSync: (p: string, c: string) => boolean; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; } | { ...; }' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>' are incompatible.
527
- Type '{ pm: IPM; } | { pm: {}; } | { largePayload: boolean; pm: { writeFileSync: (p: string, c: string) => boolean; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; } | { ...; }' is not assignable to type 'Promise<(store: { pm: IPM; }) => { pm: IPM; }>'.
528
- Type '{ pm: IPM; }' is missing the following properties from type 'Promise<(store: { pm: IPM; }) => { pm: IPM; }>': then, catch, finally, [Symbol.toStringTag]
529
- src/Pure.test.ts(114,5): error TS2322: Type '(artifact: Promise<string>) => (store: { pm: IPM; }) => { artifacts: any[]; pm: IPM; }' is not assignable to type '(Iw_0: Promise<string>) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>'.
530
- Call signature return types '(store: { pm: IPM; }) => { artifacts: any[]; pm: IPM; }' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>' are incompatible.
531
- Type '{ artifacts: any[]; pm: IPM; }' is missing the following properties from type 'Promise<(store: { pm: IPM; }) => { pm: IPM; }>': then, catch, finally, [Symbol.toStringTag]
532
- src/Pure.test.ts(117,31): error TS2339: Property 'artifacts' does not exist on type '{ pm: IPM; }'.
533
- src/Pure.test.ts(120,5): error TS2322: Type '(jobs: any[]) => (store: { pm: IPM; }) => { testJobs: any[]; pm: IPM; }' is not assignable to type '(Iw_0: any[]) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>'.
534
- Call signature return types '(store: { pm: IPM; }) => { testJobs: any[]; pm: IPM; }' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>' are incompatible.
535
- Type '{ testJobs: any[]; pm: IPM; }' is missing the following properties from type 'Promise<(store: { pm: IPM; }) => { pm: IPM; }>': then, catch, finally, [Symbol.toStringTag]
536
- src/Pure.test.ts(126,5): error TS2322: Type '(modifier: (specs: any) => any[]) => (store: { pm: IPM; }) => { specs: any[]; pm: IPM; }' is not assignable to type '(Iw_0: (specs: any) => any[]) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>'.
537
- Call signature return types '(store: { pm: IPM; }) => { specs: any[]; pm: IPM; }' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>' are incompatible.
538
- Type '{ specs: any[]; pm: IPM; }' is missing the following properties from type 'Promise<(store: { pm: IPM; }) => { pm: IPM; }>': then, catch, finally, [Symbol.toStringTag]
539
- src/Pure.test.ts(129,31): error TS2339: Property 'specs' does not exist on type '{ pm: IPM; }'.
540
- src/Pure.test.ts(135,32): error TS2322: Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
541
- Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
542
- Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
543
- src/Pure.test.ts(141,27): error TS2322: Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
544
- Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
545
- Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
546
- src/Pure.test.ts(142,20): error TS2339: Property 'getCallCount' does not exist on type 'IPM'.
547
- Property 'getCallCount' does not exist on type 'PM_Node'.
548
- src/Pure.test.ts(147,24): error TS2322: Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
549
- Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
550
- Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
551
- src/Pure.test.ts(151,29): error TS2322: Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
552
- Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
553
- Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
554
- src/Pure.test.ts(155,30): error TS2322: Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
555
- Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
556
- Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
557
- src/Pure.test.ts(156,20): error TS2339: Property 'getCallCount' does not exist on type 'IPM'.
558
- Property 'getCallCount' does not exist on type 'PM_Node'.
559
- src/Pure.test.ts(161,5): error TS2322: Type '(expectedCount: number) => (store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(It_0: number) => (ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
560
- Call signature return types '(store: { pm: IPM; }) => { pm: IPM; }' and '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }' are incompatible.
561
- Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
562
- Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
563
- src/Pure.test.ts(162,36): error TS2339: Property 'getCallCount' does not exist on type 'IPM'.
564
- Property 'getCallCount' does not exist on type 'PM_Node'.
565
- src/Pure.test.ts(170,5): error TS2322: Type '(expectedPath: string) => (store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(It_0: string) => (ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
566
- Call signature return types '(store: { pm: IPM; }) => { pm: IPM; }' and '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }' are incompatible.
567
- Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
568
- Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
569
- src/Pure.test.ts(173,35): error TS2339: Property 'getLastCall' does not exist on type 'IPM'.
570
- Property 'getLastCall' does not exist on type 'PM_Node'.
571
- src/Pure.test.ts(179,26): error TS2322: Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
572
- Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
573
- Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
574
- src/Pure.test.ts(180,20): error TS2339: Property 'getCallCount' does not exist on type 'IPM'.
575
- Property 'getCallCount' does not exist on type 'PM_Node'.
576
- src/Pure.test.ts(185,5): error TS2322: Type '(expectedError: string) => (store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(It_0: string) => (ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
577
- Call signature return types '(store: { pm: IPM; }) => { pm: IPM; }' and '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }' are incompatible.
578
- Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
579
- Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
580
- src/Pure.test.ts(198,33): error TS2322: Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
581
- Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
582
- Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
583
- src/Pure.test.ts(204,31): error TS2322: Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
584
- Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
585
- Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
586
- src/Pure.test.ts(206,58): error TS2554: Expected 1 arguments, but got 2.
587
- src/Pure.test.ts(212,29): error TS2322: Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
588
- Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
589
- Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
590
- src/Pure.ts(32,7): error TS2345: 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 & { ...; }'.
591
- 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
370
+ src/Pure.test.ts(58,5): error TS2322: Type '() => { pm: IPM; config: {}; proxies: { butThenProxy: (pm: IPM, path: string) => { writeFileSync: (p: string, c: string) => any; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; andWhenProxy: (pm: IPM, path: string) => { ...; } | ... 1 more ... | { ...; };...' is not assignable to type '() => () => { pm: IPM; config: {}; proxies: any; }'.
371
+ Type '{ pm: IPM; config: {}; proxies: { butThenProxy: (pm: IPM, path: string) => { writeFileSync: (p: string, c: string) => any; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; andWhenProxy: (pm: IPM, path: string) => { ...; } | ... 1 more ... | { ...; }; befor...' is not assignable to type '() => { pm: IPM; config: {}; proxies: any; }'.
372
+ Type '{ pm: IPM; config: {}; proxies: { butThenProxy: (pm: IPM, path: string) => { writeFileSync: (p: string, c: string) => any; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; andWhenProxy: (pm: IPM, path: string) => { ...; } | ... 1 more ... | { ...; }; befor...' provides no match for the signature '(): { pm: IPM; config: {}; proxies: any; }'.
373
+ src/Pure.test.ts(88,5): error TS2322: Type '(proxyType: string) => (store: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<{ pm: IPM; } | { largePayload: boolean; pm: IPM; }>' is not assignable to type '(Iw_0: string) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.
374
+ Call signature return types '(store: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<{ pm: IPM; } | { largePayload: boolean; pm: IPM; }>' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>' are incompatible.
375
+ Type 'Promise<{ pm: IPM; } | { largePayload: boolean; pm: IPM; }>' is not assignable to type 'Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.
376
+ Type '{ pm: IPM; } | { largePayload: boolean; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
377
+ Type '{ pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
378
+ Type '{ pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.
379
+ src/Pure.test.ts(120,5): error TS2322: Type '(artifact: Promise<string>) => (store: { pm: IPM; }) => Promise<{ artifacts: any[]; pm: IPM; }>' is not assignable to type '(Iw_0: Promise<string>) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { ...; }>'.
380
+ Call signature return types '(store: { pm: IPM; }) => Promise<{ artifacts: any[]; pm: IPM; }>' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>' are incompatible.
381
+ Type 'Promise<{ artifacts: any[]; pm: IPM; }>' is not assignable to type 'Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.
382
+ Type '{ artifacts: any[]; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
383
+ Type '{ artifacts: any[]; pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.
384
+ src/Pure.test.ts(123,31): error TS2339: Property 'artifacts' does not exist on type '{ pm: IPM; }'.
385
+ src/Pure.test.ts(126,5): error TS2322: Type '(jobs: any[]) => (store: { pm: IPM; }) => Promise<{ testJobs: any[]; pm: IPM; }>' is not assignable to type '(Iw_0: any[]) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.
386
+ Call signature return types '(store: { pm: IPM; }) => Promise<{ testJobs: any[]; pm: IPM; }>' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>' are incompatible.
387
+ Type 'Promise<{ testJobs: any[]; pm: IPM; }>' is not assignable to type 'Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.
388
+ Type '{ testJobs: any[]; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
389
+ Type '{ testJobs: any[]; pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.
390
+ src/Pure.test.ts(132,5): error TS2322: Type '(modifier: (specs: any) => any[]) => (store: { pm: IPM; }) => Promise<{ specs: any[]; pm: IPM; }>' is not assignable to type '(Iw_0: (specs: any) => any[]) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { ...; }>'.
391
+ Call signature return types '(store: { pm: IPM; }) => Promise<{ specs: any[]; pm: IPM; }>' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>' are incompatible.
392
+ Type 'Promise<{ specs: any[]; pm: IPM; }>' is not assignable to type 'Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.
393
+ Type '{ specs: any[]; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
394
+ Type '{ specs: any[]; pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.
395
+ src/Pure.test.ts(135,31): error TS2339: Property 'specs' does not exist on type '{ pm: IPM; }'.
396
+ src/Pure.test.ts(141,32): error TS2322: Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
397
+ Target signature provides too few arguments. Expected 3 or more, but got 2.
398
+ src/Pure.test.ts(147,27): error TS2322: Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
399
+ Target signature provides too few arguments. Expected 3 or more, but got 2.
400
+ src/Pure.test.ts(150,24): error TS2322: Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
401
+ Target signature provides too few arguments. Expected 3 or more, but got 2.
402
+ src/Pure.test.ts(153,29): error TS2322: Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
403
+ Target signature provides too few arguments. Expected 3 or more, but got 2.
404
+ src/Pure.test.ts(156,30): error TS2322: Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
405
+ Target signature provides too few arguments. Expected 3 or more, but got 2.
406
+ src/Pure.test.ts(159,5): error TS2322: Type '(expectedCount: number) => (store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(It_0: number) => (ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
407
+ Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
408
+ Target signature provides too few arguments. Expected 3 or more, but got 2.
409
+ src/Pure.test.ts(162,5): error TS2322: Type '(expectedPath: string) => (store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(It_0: string) => (ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
410
+ Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
411
+ Target signature provides too few arguments. Expected 3 or more, but got 2.
412
+ src/Pure.test.ts(165,26): error TS2322: Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
413
+ Target signature provides too few arguments. Expected 3 or more, but got 2.
414
+ src/Pure.test.ts(168,5): error TS2322: Type '(expectedError: string) => (store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(It_0: string) => (ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
415
+ Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
416
+ Target signature provides too few arguments. Expected 3 or more, but got 2.
417
+ src/Pure.test.ts(171,33): error TS2322: Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
418
+ Target signature provides too few arguments. Expected 3 or more, but got 2.
419
+ src/Pure.test.ts(174,31): error TS2322: Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
420
+ Target signature provides too few arguments. Expected 3 or more, but got 2.
421
+ src/Pure.test.ts(177,29): error TS2322: Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
422
+ Target signature provides too few arguments. Expected 3 or more, but got 2.
423
+ src/Pure.test.ts(315,28): error TS2304: Cannot find name 'ITestAdapter'.
424
+ src/Pure.ts(33,7): error TS2345: 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 & { ...; }'.
425
+ 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, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
426
+ src/Pure.ts(83,21): error TS2304: Cannot find name 'Testeranto'.
592
427
  src/ReportServer.test.ts/index.ts(117,3): error TS2719: 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.
593
428
  Type 'Promise<Server<typeof IncomingMessage, typeof ServerResponse>>' is not assignable to type 'Promise<number>'.
594
429
  Type 'Server<typeof IncomingMessage, typeof ServerResponse>' is not assignable to type 'number'.
@@ -597,13 +432,18 @@ src/ReportServer.test.ts/index.ts(180,14): error TS2304: Cannot find name 'IProj
597
432
  src/ReportServer.test.ts/index.ts(182,10): error TS2304: Cannot find name 'IProjectPageViewProps'.
598
433
  src/ReportServer.test.ts/index.ts(190,3): error TS2345: Argument of type '(port: number) => void' is not assignable to parameter of type '(port: number) => Server<typeof IncomingMessage, typeof ServerResponse>'.
599
434
  Type 'void' is not assignable to type 'Server<typeof IncomingMessage, typeof ServerResponse>'.
600
- src/ReportServer.ts(5,20): error TS2345: Argument of type 'string' is not assignable to parameter of type 'number'.
435
+ src/ReportServer.ts(8,20): error TS2345: Argument of type 'string | 3000' is not assignable to parameter of type 'number'.
436
+ Type 'string' is not assignable to type 'number'.
601
437
  src/ReportServerLib.ts(111,33): error TS2339: Property 'status' does not exist on type 'Error'.
438
+ src/utils/api.ts(34,44): error TS2345: Argument of type 'string' is not assignable to parameter of type 'RuntimeName'.
602
439
  src/utils/featureUtils.tsx(26,4): error TS2686: 'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.
603
440
  src/utils/featureUtils.tsx(28,8): error TS2686: 'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.
604
441
  src/utils/featureUtils.tsx(30,12): error TS2686: 'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.
605
442
  src/utils/featureUtils.tsx(34,11): error TS2686: 'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.
606
443
  src/utils/featureUtils.tsx(35,14): error TS2686: 'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.
444
+ src/utils/makePrompt.ts(60,31): error TS2345: Argument of type 'IRunTime' is not assignable to parameter of type 'RuntimeName'.
445
+ Type '"spawn"' is not assignable to type 'RuntimeName'.
607
446
  src/Web.ts(43,7): error TS2345: 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 & { ...; }'.
608
- 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
447
+ 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, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
448
+ src/Web.ts(92,12): error TS2552: Cannot find name 'Testeranto'. Did you mean 'WebTesteranto'?
609
449
  info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.