testeranto 0.200.0 → 0.202.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 (376) hide show
  1. package/README.md +26 -1
  2. package/bundle.js +3 -2
  3. package/design-editor/DesignEditor.tsx +40 -241
  4. package/dist/common/design-editor/DesignEditor.js +33 -198
  5. package/dist/common/src/App.js +158 -16
  6. package/dist/common/src/PM/PM_WithBuild.js +135 -0
  7. package/dist/common/src/PM/PM_WithEslintAndTsc.js +79 -67
  8. package/dist/common/src/PM/PM_WithGit.js +517 -0
  9. package/dist/common/src/PM/PM_WithProcesses.js +519 -0
  10. package/dist/common/src/PM/PM_WithWebSocket.js +535 -0
  11. package/dist/common/src/PM/base.js +62 -0
  12. package/dist/common/src/PM/main.js +533 -1676
  13. package/dist/common/src/PM/metafileOutputs.js +78 -0
  14. package/dist/common/src/PM/node.js +0 -6
  15. package/dist/common/src/PM/pure.js +0 -8
  16. package/dist/common/src/PM/types.js +1 -0
  17. package/dist/common/src/PM/utils.js +210 -0
  18. package/dist/common/src/PM/web.js +0 -6
  19. package/dist/common/src/ReportServer.js +0 -10
  20. package/dist/common/src/ReportServerLib.js +0 -140
  21. package/dist/common/src/components/pure/AppFrame.js +68 -56
  22. package/dist/common/src/components/pure/ArtifactTree.js +80 -0
  23. package/dist/common/src/components/pure/BuildLogViewer.js +106 -0
  24. package/dist/common/src/components/pure/DebugEnv.js +30 -0
  25. package/dist/common/src/components/pure/FileTree.js +34 -0
  26. package/dist/common/src/components/pure/FileTreeItem.js +29 -0
  27. package/dist/common/src/components/pure/GitHubLoginButton.js +18 -0
  28. package/dist/common/src/components/pure/GitIntegrationView.js +342 -0
  29. package/dist/common/src/components/pure/ProcessManager.js +1 -0
  30. package/dist/common/src/components/pure/ProcessManagerView.js +73 -74
  31. package/dist/common/src/components/pure/ProjectPageView.js +4 -117
  32. package/dist/common/src/components/pure/Settings.js +121 -0
  33. package/dist/common/src/components/pure/Settings.test.js +34 -0
  34. package/dist/common/src/components/pure/SignIn.js +22 -0
  35. package/dist/common/src/components/pure/SingleProcessView.js +166 -213
  36. package/dist/common/src/components/pure/TestPageView.js +113 -368
  37. package/dist/common/src/components/pure/TestPageView_utils.js +117 -0
  38. package/dist/common/src/components/pure/TestTable.js +33 -0
  39. package/dist/common/src/components/pure/ToastNotification.js +14 -0
  40. package/dist/common/src/components/pure/UserProfile.js +27 -0
  41. package/dist/common/src/components/stateful/AuthCallbackPage.js +51 -0
  42. package/dist/common/src/components/stateful/FeaturesReporter.js +2 -1
  43. package/dist/common/src/components/stateful/FileTree.js +58 -39
  44. package/dist/common/src/components/stateful/GitIntegrationPage.js +12 -0
  45. package/dist/common/src/components/stateful/ProcessManagerPage.js +13 -15
  46. package/dist/common/src/components/stateful/ProjectPage.js +6 -5
  47. package/dist/common/src/components/stateful/ProjectsPage.js +17 -19
  48. package/dist/common/src/components/stateful/SingleProcessPage.js +16 -26
  49. package/dist/common/src/components/stateful/TestPage.js +7 -5
  50. package/dist/common/src/hooks/useGitMode.js +21 -0
  51. package/dist/common/src/lib/BaseSuite.test/mock.js +15 -8
  52. package/dist/common/src/lib/BaseSuite.test/test.js +56 -80
  53. package/dist/common/src/lib/Tiposkripto.js +24 -0
  54. package/dist/common/src/lib/Tiposkripto.test/MockTiposkripto.js +154 -10
  55. package/dist/common/src/lib/Tiposkripto.test/Tiposkripto.adapter.js +6 -12
  56. package/dist/common/src/lib/Tiposkripto.test/Tiposkripto.implementation.js +63 -23
  57. package/dist/common/src/lib/Tiposkripto.test/Tiposkripto.specification.js +14 -6
  58. package/dist/common/src/lib/pmProxy.test/specification.js +167 -52
  59. package/dist/common/src/services/FileService.js +505 -0
  60. package/dist/common/src/services/GitHubAuthService.js +184 -0
  61. package/dist/common/src/testeranto.js +38 -97
  62. package/dist/common/src/utils/api.js +12 -8
  63. package/dist/common/src/utils/gitTest.js +27 -0
  64. package/dist/common/src/utils.js +23 -13
  65. package/dist/common/testeranto.config.js +21 -17
  66. package/dist/common/tsconfig.common.tsbuildinfo +1 -1
  67. package/dist/module/design-editor/DesignEditor.js +33 -199
  68. package/dist/module/src/App.js +121 -15
  69. package/dist/module/src/PM/PM_WithBuild.js +128 -0
  70. package/dist/module/src/PM/PM_WithEslintAndTsc.js +79 -67
  71. package/dist/module/src/PM/PM_WithGit.js +477 -0
  72. package/dist/module/src/PM/PM_WithProcesses.js +479 -0
  73. package/dist/module/src/PM/PM_WithWebSocket.js +528 -0
  74. package/dist/module/src/PM/base.js +62 -0
  75. package/dist/module/src/PM/main.js +533 -1676
  76. package/dist/module/src/PM/metafileOutputs.js +78 -0
  77. package/dist/module/src/PM/node.js +0 -6
  78. package/dist/module/src/PM/pure.js +0 -8
  79. package/dist/module/src/PM/types.js +1 -1
  80. package/dist/module/src/PM/utils.js +196 -0
  81. package/dist/module/src/PM/web.js +0 -6
  82. package/dist/module/src/ReportServer.js +1 -9
  83. package/dist/module/src/ReportServerLib.js +1 -134
  84. package/dist/module/src/components/pure/AppFrame.js +66 -24
  85. package/dist/module/src/components/pure/ArtifactTree.js +80 -0
  86. package/dist/module/src/components/pure/BuildLogViewer.js +99 -0
  87. package/dist/module/src/components/pure/DebugEnv.js +23 -0
  88. package/dist/module/src/components/pure/FileTree.js +27 -0
  89. package/dist/module/src/components/pure/FileTreeItem.js +22 -0
  90. package/dist/module/src/components/pure/GitHubLoginButton.js +11 -0
  91. package/dist/module/src/components/pure/GitIntegrationView.js +305 -0
  92. package/dist/module/src/components/pure/ProcessManager.js +1 -0
  93. package/dist/module/src/components/pure/ProcessManagerView.js +74 -75
  94. package/dist/module/src/components/pure/ProjectPageView.js +5 -118
  95. package/dist/module/src/components/pure/Settings.js +84 -0
  96. package/dist/module/src/components/pure/Settings.test.js +29 -0
  97. package/dist/module/src/components/pure/SignIn.js +15 -0
  98. package/dist/module/src/components/pure/SingleProcessView.js +130 -214
  99. package/dist/module/src/components/pure/TestPageView.js +97 -352
  100. package/dist/module/src/components/pure/TestPageView_utils.js +109 -0
  101. package/dist/module/src/components/pure/TestTable.js +26 -0
  102. package/dist/module/src/components/pure/ToastNotification.js +7 -0
  103. package/dist/module/src/components/pure/UserProfile.js +20 -0
  104. package/dist/module/src/components/stateful/AuthCallbackPage.js +14 -0
  105. package/dist/module/src/components/stateful/FeaturesReporter.js +2 -1
  106. package/dist/module/src/components/stateful/FileTree.js +59 -33
  107. package/dist/module/src/components/stateful/GitIntegrationPage.js +5 -0
  108. package/dist/module/src/components/stateful/ProcessManagerPage.js +13 -15
  109. package/dist/module/src/components/stateful/ProjectPage.js +6 -5
  110. package/dist/module/src/components/stateful/ProjectsPage.js +16 -18
  111. package/dist/module/src/components/stateful/SingleProcessPage.js +16 -26
  112. package/dist/module/src/components/stateful/TestPage.js +8 -6
  113. package/dist/module/src/hooks/useGitMode.js +17 -0
  114. package/dist/module/src/lib/BaseSuite.test/mock.js +15 -8
  115. package/dist/module/src/lib/BaseSuite.test/test.js +56 -80
  116. package/dist/module/src/lib/Tiposkripto.js +24 -0
  117. package/dist/module/src/lib/Tiposkripto.test/MockTiposkripto.js +154 -10
  118. package/dist/module/src/lib/Tiposkripto.test/Tiposkripto.adapter.js +6 -12
  119. package/dist/module/src/lib/Tiposkripto.test/Tiposkripto.implementation.js +63 -23
  120. package/dist/module/src/lib/Tiposkripto.test/Tiposkripto.specification.js +14 -6
  121. package/dist/module/src/lib/pmProxy.test/specification.js +167 -52
  122. package/dist/module/src/services/FileService.js +468 -0
  123. package/dist/module/src/services/GitHubAuthService.js +180 -0
  124. package/dist/module/src/testeranto.js +38 -97
  125. package/dist/module/src/utils/api.js +10 -7
  126. package/dist/module/src/utils/gitTest.js +23 -0
  127. package/dist/module/src/utils.js +21 -12
  128. package/dist/module/testeranto.config.js +21 -17
  129. package/dist/module/tsconfig.module.tsbuildinfo +1 -1
  130. package/dist/prebuild/App.css +94 -121
  131. package/dist/prebuild/App.js +44601 -11225
  132. package/dist/prebuild/testeranto.mjs +4106 -0
  133. package/dist/types/design-editor/DesignEditor.d.ts +1 -18
  134. package/dist/types/src/App.d.ts +18 -0
  135. package/dist/types/src/PM/PM_WithBuild.d.ts +13 -0
  136. package/dist/types/src/PM/PM_WithEslintAndTsc.d.ts +2 -4
  137. package/dist/types/src/PM/PM_WithGit.d.ts +27 -0
  138. package/dist/types/src/PM/PM_WithProcesses.d.ts +29 -0
  139. package/dist/types/src/PM/PM_WithWebSocket.d.ts +108 -0
  140. package/dist/types/src/PM/base.d.ts +1 -1
  141. package/dist/types/src/PM/index.d.ts +0 -2
  142. package/dist/types/src/PM/main.d.ts +6 -77
  143. package/dist/types/src/PM/metafileOutputs.d.ts +0 -0
  144. package/dist/types/src/PM/node.d.ts +0 -2
  145. package/dist/types/src/PM/pure.d.ts +0 -2
  146. package/dist/types/src/PM/types.d.ts +118 -0
  147. package/dist/types/src/PM/utils.d.ts +35 -0
  148. package/dist/types/src/PM/web.d.ts +0 -2
  149. package/dist/types/src/Pure.d.ts +6 -1
  150. package/dist/types/src/ReportServer.d.ts +0 -1
  151. package/dist/types/src/ReportServerLib.d.ts +0 -1
  152. package/dist/types/src/Types.d.ts +1 -0
  153. package/dist/types/src/components/pure/ArtifactTree.d.ts +0 -0
  154. package/dist/types/src/components/pure/BuildLogViewer.d.ts +7 -0
  155. package/dist/types/src/components/pure/DebugEnv.d.ts +2 -0
  156. package/dist/types/src/components/pure/FileTree.d.ts +6 -0
  157. package/dist/types/src/components/pure/FileTreeItem.d.ts +8 -0
  158. package/dist/types/src/components/pure/GitHubLoginButton.d.ts +8 -0
  159. package/dist/types/src/components/pure/GitIntegrationView.d.ts +1 -0
  160. package/dist/types/src/components/pure/Settings.d.ts +1 -0
  161. package/dist/types/src/components/pure/Settings.test.d.ts +1 -0
  162. package/dist/types/src/components/pure/SignIn.d.ts +1 -0
  163. package/dist/types/src/components/pure/SingleProcessView.d.ts +10 -0
  164. package/dist/types/src/components/pure/TestPageView.d.ts +2 -1
  165. package/dist/types/src/components/pure/TestPageView_utils.d.ts +23 -0
  166. package/dist/types/src/components/pure/TestTable.d.ts +16 -0
  167. package/dist/types/src/components/pure/ToastNotification.d.ts +6 -0
  168. package/dist/types/src/components/pure/UserProfile.d.ts +2 -0
  169. package/dist/types/src/components/stateful/AuthCallbackPage.d.ts +2 -0
  170. package/dist/types/src/components/stateful/FileTree.d.ts +0 -8
  171. package/dist/types/src/components/stateful/GitIntegrationPage.d.ts +1 -0
  172. package/dist/types/src/hooks/useGitMode.d.ts +7 -0
  173. package/dist/types/src/lib/BaseSuite.test/mock.d.ts +2 -2
  174. package/dist/types/src/lib/BaseSuite.test/test.d.ts +4 -3
  175. package/dist/types/src/lib/Tiposkripto.d.ts +2 -0
  176. package/dist/types/src/lib/Tiposkripto.test/MockTiposkripto.d.ts +3 -0
  177. package/dist/types/src/lib/Tiposkripto.test/Tiposkripto.types.d.ts +5 -0
  178. package/dist/types/src/lib/index.d.ts +6 -0
  179. package/dist/types/src/services/FileService.d.ts +34 -0
  180. package/dist/types/src/services/GitHubAuthService.d.ts +32 -0
  181. package/dist/types/src/utils/api.d.ts +1 -0
  182. package/dist/types/src/utils/gitTest.d.ts +11 -0
  183. package/dist/types/src/utils.d.ts +3 -3
  184. package/dist/types/tsconfig.types.tsbuildinfo +1 -1
  185. package/example/__pycache__/Calculator.cpython-313.pyc +0 -0
  186. package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/README.md +187 -0
  187. package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/base_given.go +163 -0
  188. package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/base_suite.go +85 -0
  189. package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/base_then.go +21 -0
  190. package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/base_when.go +21 -0
  191. package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/golingvu.go +554 -0
  192. package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/test_adapter.go +33 -0
  193. package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/types.go +72 -0
  194. package/example/vendor/modules.txt +5 -0
  195. package/git-integration-plan.md +395 -0
  196. package/package.json +26 -14
  197. package/src/App.tsx +169 -18
  198. package/src/PM/PM_WithBuild.ts +171 -0
  199. package/src/PM/PM_WithEslintAndTsc.ts +109 -86
  200. package/src/PM/PM_WithGit.ts +585 -0
  201. package/src/PM/PM_WithProcesses.ts +639 -0
  202. package/src/PM/PM_WithWebSocket.ts +631 -0
  203. package/src/PM/base.ts +63 -1
  204. package/src/PM/index.ts +8 -5
  205. package/src/PM/main.ts +672 -2050
  206. package/src/PM/metafileOutputs.ts +90 -0
  207. package/src/PM/node.ts +18 -18
  208. package/src/PM/pure.ts +5 -13
  209. package/src/PM/types.ts +145 -0
  210. package/src/PM/utils.ts +256 -0
  211. package/src/PM/web.ts +8 -8
  212. package/src/README.md +122 -0
  213. package/src/ReportServer.ts +0 -12
  214. package/src/ReportServerLib.ts +0 -147
  215. package/src/Types.ts +1 -0
  216. package/src/app.scss +14 -164
  217. package/src/components/pure/AppFrame.tsx +237 -71
  218. package/src/components/pure/ArtifactTree.tsx +82 -0
  219. package/src/components/pure/BuildLogViewer.tsx +168 -0
  220. package/src/components/pure/DebugEnv.tsx +30 -0
  221. package/src/components/pure/FileTree.tsx +58 -0
  222. package/src/components/pure/FileTreeItem.tsx +49 -0
  223. package/src/components/pure/GitHubLoginButton.tsx +31 -0
  224. package/src/components/pure/GitIntegrationView.tsx +443 -0
  225. package/src/components/pure/ProcessManager.tsx +6 -5
  226. package/src/components/pure/ProcessManagerView.tsx +162 -166
  227. package/src/components/pure/ProjectPageView.tsx +6 -224
  228. package/src/components/pure/Settings.test.tsx +34 -0
  229. package/src/components/pure/Settings.tsx +163 -0
  230. package/src/components/pure/SignIn.tsx +33 -0
  231. package/src/components/pure/SingleProcessView.tsx +231 -235
  232. package/src/components/pure/TestPageView.test/specification.ts +1 -0
  233. package/src/components/pure/TestPageView.tsx +317 -826
  234. package/src/components/pure/TestPageView_utils.tsx +285 -0
  235. package/src/components/pure/TestTable.tsx +88 -0
  236. package/src/components/pure/ToastNotification.tsx +19 -0
  237. package/src/components/pure/UserProfile.tsx +44 -0
  238. package/src/components/stateful/AuthCallbackPage.tsx +21 -0
  239. package/src/components/stateful/FeaturesReporter.tsx +3 -1
  240. package/src/components/stateful/FileTree.tsx +58 -58
  241. package/src/components/stateful/GitIntegrationPage.tsx +8 -0
  242. package/src/components/stateful/ProcessManagerPage.tsx +13 -17
  243. package/src/components/stateful/ProjectPage.tsx +6 -5
  244. package/src/components/stateful/ProjectsPage.tsx +17 -19
  245. package/src/components/stateful/SVGEditor/CircleForm.tsx +68 -0
  246. package/src/components/stateful/SVGEditor/GroupForm.tsx +56 -0
  247. package/src/components/stateful/SVGEditor/RectForm.tsx +74 -0
  248. package/src/components/stateful/SVGEditor/SVGAttributeField.tsx +29 -0
  249. package/src/components/stateful/SVGEditor/SVGAttributesEditor.tsx +73 -0
  250. package/src/components/stateful/SVGEditor/SVGEditorControls.tsx +45 -0
  251. package/src/components/stateful/SVGEditor/SVGElementForm.tsx +45 -0
  252. package/src/components/stateful/SVGEditor/SVGPreview.tsx +225 -0
  253. package/src/components/stateful/SVGEditor/SVGTextEditor.tsx +166 -0
  254. package/src/components/stateful/SVGEditor/SVGTree.tsx +159 -0
  255. package/src/components/stateful/SVGEditor/SVGTypes.ts +36 -0
  256. package/src/components/stateful/SVGEditor/svg.xsd.xml +3038 -0
  257. package/src/components/stateful/SVGEditorPage.tsx +503 -0
  258. package/src/components/stateful/SingleProcessPage.tsx +18 -31
  259. package/src/components/stateful/TestPage.tsx +25 -22
  260. package/src/golingvu/golingvu.go +38 -2
  261. package/src/hooks/useGitMode.ts +20 -0
  262. package/src/lib/BaseSuite.test/mock.ts +16 -10
  263. package/src/lib/BaseSuite.test/test.ts +144 -103
  264. package/src/lib/Tiposkripto.test/MockTiposkripto.ts +178 -14
  265. package/src/lib/Tiposkripto.test/Tiposkripto.adapter.ts +9 -14
  266. package/src/lib/Tiposkripto.test/Tiposkripto.implementation.ts +78 -38
  267. package/src/lib/Tiposkripto.test/Tiposkripto.specification.ts +51 -9
  268. package/src/lib/Tiposkripto.test/Tiposkripto.types.ts +5 -0
  269. package/src/lib/Tiposkripto.ts +27 -0
  270. package/src/lib/index.ts +7 -0
  271. package/src/lib/pmProxy.test/specification.ts +168 -166
  272. package/src/pitono/PM/__pycache__/python.cpython-313.pyc +0 -0
  273. package/src/pitono/__pycache__/Pitono.cpython-313.pyc +0 -0
  274. package/src/pitono/__pycache__/__init__.cpython-313.pyc +0 -0
  275. package/src/pitono/__pycache__/base_given.cpython-313.pyc +0 -0
  276. package/src/pitono/__pycache__/base_suite.cpython-313.pyc +0 -0
  277. package/src/pitono/__pycache__/base_then.cpython-313.pyc +0 -0
  278. package/src/pitono/__pycache__/base_when.cpython-313.pyc +0 -0
  279. package/src/pitono/__pycache__/core_generator.cpython-313.pyc +0 -0
  280. package/src/pitono/__pycache__/simple_adapter.cpython-313.pyc +0 -0
  281. package/src/pitono/__pycache__/types.cpython-313.pyc +0 -0
  282. package/src/services/FileService.ts +542 -0
  283. package/src/services/GitHubAuthService.ts +240 -0
  284. package/src/testeranto.ts +62 -140
  285. package/src/utils/api.ts +15 -13
  286. package/src/utils/gitTest.ts +29 -0
  287. package/src/utils.ts +21 -12
  288. package/testeranto/App.css +94 -121
  289. package/testeranto/App.js +44601 -11225
  290. package/testeranto/bundles/golang/core/Calculator.golingvu.go +53 -0
  291. package/testeranto/bundles/golang/core/Calculator.golingvu.golingvu.go +53 -0
  292. package/testeranto/bundles/node/core/chunk-RIM6RECA.mjs +1170 -0
  293. package/testeranto/bundles/node/core/chunk-VXVF7WFO.mjs +4321 -0
  294. package/testeranto/bundles/node/core/example/Calculator.test.mjs +503 -0
  295. package/testeranto/bundles/node/core/src/lib/BaseSuite.test/node.test.mjs +94 -1231
  296. package/testeranto/bundles/node/core/src/lib/TipoSkripto.test/TipoSkripto.mjs +574 -0
  297. package/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs +482 -0
  298. package/testeranto/bundles/pure/core/chunk-XYOCRDEQ.mjs +1080 -0
  299. package/testeranto/bundles/pure/core/src/Pure.test.mjs +410 -0
  300. package/testeranto/bundles/pure/core/src/lib/BaseSuite.test/pure.test.mjs +93 -1146
  301. package/testeranto/bundles/python/core/Calculator.pitono.test.py +24 -0
  302. package/testeranto/bundles/python/core/test_example.py +24 -0
  303. package/testeranto/bundles/web/core/MPLUSRounded1c-Black-O75GP5JI.ttf +0 -0
  304. package/testeranto/bundles/web/core/MPLUSRounded1c-Bold-R524Q5BH.ttf +0 -0
  305. package/testeranto/bundles/web/core/MPLUSRounded1c-ExtraBold-C6GRMYVT.ttf +0 -0
  306. package/testeranto/bundles/web/core/MPLUSRounded1c-Light-WKN65Y2C.ttf +0 -0
  307. package/testeranto/bundles/web/core/MPLUSRounded1c-Medium-ZC4DWL7C.ttf +0 -0
  308. package/testeranto/bundles/web/core/MPLUSRounded1c-Regular-DT6EKZ3S.ttf +0 -0
  309. package/testeranto/bundles/web/core/MPLUSRounded1c-Thin-YWDNVG6M.ttf +0 -0
  310. package/testeranto/bundles/web/core/chunk-DFRN4SYZ.mjs +2297 -0
  311. package/testeranto/bundles/web/core/chunk-JMDLMADH.mjs +27996 -0
  312. package/testeranto/bundles/web/core/chunk-LQMU5NCG.mjs +3082 -0
  313. package/testeranto/bundles/web/core/chunk-Q5TONB2Z.mjs +6874 -0
  314. package/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs +164 -0
  315. package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.css +11697 -0
  316. package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.mjs +336 -0
  317. package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.css +11697 -0
  318. package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs +517 -0
  319. package/testeranto/bundles/web/core/src/lib/BaseSuite.test/web.test.mjs +107 -1134
  320. package/testeranto/metafiles/golang/core.json +3 -3
  321. package/testeranto/metafiles/node/core.json +474 -31
  322. package/testeranto/metafiles/pure/core.json +144 -28
  323. package/testeranto/metafiles/python/core.json +11 -0
  324. package/testeranto/metafiles/web/core.json +15829 -45
  325. package/testeranto/reports/core/config.json +40 -0
  326. package/testeranto/reports/core/src/Pure.test/pure/exit.log +0 -0
  327. package/testeranto/reports/core/src/Pure.test/pure/lint_errors.txt +0 -0
  328. package/testeranto/reports/core/src/Pure.test/pure/prompt.txt +14 -0
  329. package/testeranto/reports/core/src/Pure.test/pure/type_errors.txt +73 -0
  330. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/debug.log +0 -0
  331. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/error.log +91 -0
  332. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/exit.log +1 -0
  333. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/info.log +2 -0
  334. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/tests.json +68 -0
  335. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/warn.log +0 -0
  336. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/debug.log +0 -0
  337. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/error.log +30 -0
  338. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/exit.log +1 -0
  339. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/info.log +2 -0
  340. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/tests.json +88 -0
  341. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/warn.log +0 -0
  342. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/lint_errors.txt +0 -6
  343. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/prompt.txt +0 -11
  344. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/stdout.log +1 -0
  345. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/tests.json +1 -1
  346. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/type_errors.txt +35 -38
  347. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/lint_errors.txt +0 -2
  348. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/prompt.txt +0 -10
  349. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +40 -38
  350. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/tests.json +1 -1
  351. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/exit.log +1 -0
  352. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/lint_errors.txt +0 -0
  353. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/message.txt +17 -0
  354. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/prompt.txt +17 -0
  355. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/stderr.log +55 -0
  356. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/stdout.log +191 -0
  357. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/type_errors.txt +71 -0
  358. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/exit.log +1 -0
  359. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/lint_errors.txt +15 -0
  360. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/message.txt +17 -0
  361. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/prompt.txt +17 -0
  362. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stderr.log +20 -0
  363. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stdout.log +4 -0
  364. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/type_errors.txt +49 -0
  365. package/testeranto/reports/core/summary.json +34 -6
  366. package/testeranto.config.ts +26 -20
  367. package/tsc.log +141 -91
  368. package/tsconfig.json +6 -2
  369. package/dist/prebuild/ReportServer.mjs +0 -227
  370. package/dist/prebuild/mothership/index.mjs +0 -22
  371. package/dist/types/design-editor/server.d.ts +0 -1
  372. package/testeranto/bundles/web/core/src/lib/BaseSuite.test/web.test.html +0 -15
  373. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/lint_errors.txt +0 -2
  374. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/prompt.txt +0 -25
  375. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/type_errors.txt +0 -56
  376. /package/testeranto/reports/core/src/{lib/BaseSuite.test/web.test/web → Pure.test/pure}/message.txt +0 -0
package/tsc.log CHANGED
@@ -15,32 +15,6 @@ node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts(43,15): error TS2339:
15
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
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
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/build.ts(67,6): error TS2552: Cannot find name 'rawConfig'. Did you mean 'config'?
19
- src/build.ts(68,54): error TS2304: Cannot find name 'testName'.
20
- src/build.ts(95,3): error TS2339: Property 'pythonEntryPoints' does not exist on type 'IRunnables'.
21
- src/build.ts(102,3): error TS2339: Property 'golangEntryPoints' does not exist on type 'IRunnables'.
22
- src/build.ts(103,3): error TS2339: Property 'golangEntryPointSidecars' does not exist on type 'IRunnables'.
23
- src/build.ts(104,32): error TS2304: Cannot find name 'testName'.
24
- src/build.ts(117,7): error TS2304: Cannot find name 'nodeDone'.
25
- src/build.ts(117,19): error TS2304: Cannot find name 'webDone'.
26
- src/build.ts(117,30): error TS2304: Cannot find name 'importDone'.
27
- src/build.ts(120,7): error TS2304: Cannot find name 'nodeDone'.
28
- src/build.ts(120,19): error TS2304: Cannot find name 'webDone'.
29
- src/build.ts(120,30): error TS2304: Cannot find name 'importDone'.
30
- src/build.ts(120,58): error TS2304: Cannot find name 'mode'.
31
- src/build.ts(122,7): error TS2304: Cannot find name 'ansiC'.
32
- src/build.ts(123,12): error TS2304: Cannot find name 'testName'.
33
- src/build.ts(136,3): error TS2304: Cannot find name 'nodeDone'.
34
- src/build.ts(176,29): error TS2304: Cannot find name 'fs'.
35
- src/build.ts(201,41): error TS2304: Cannot find name 'testName'.
36
- src/build.ts(220,9): error TS2304: Cannot find name 'fs'.
37
- src/build.ts(221,9): error TS2304: Cannot find name 'fs'.
38
- src/build.ts(288,41): error TS2304: Cannot find name 'allEntryPoints'.
39
- src/build.ts(295,38): error TS2304: Cannot find name 'allEntryPoints'.
40
- src/build.ts(299,11): error TS2304: Cannot find name 'IRunTime'.
41
- src/build.ts(326,5): error TS2304: Cannot find name 'IRunTime'.
42
- src/build.ts(332,9): error TS2304: Cannot find name 'testName'.
43
- src/build.ts(336,7): error TS2304: Cannot find name 'fs'.
44
18
  src/components/DesignEditorPage.tsx(97,19): error TS2339: Property 'showOpenFilePicker' does not exist on type 'Window & typeof globalThis'.
45
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'.
46
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.
@@ -209,21 +183,21 @@ src/components/pure/TestPageView.tsx(1178,11): error TS2322: Type '{ testName: s
209
183
  Property 'className' does not exist on type 'IntrinsicAttributes & TestStatusBadgeProps'.
210
184
  src/components/stateful/FileTree.tsx(2,10): error TS2459: Module '"./TextEditorPage"' declares 'FileType' locally, but it is not exported.
211
185
  src/components/stateful/FileTree.tsx(53,12): error TS18046: 'dirFiles' is of type 'unknown'.
212
- src/components/stateful/ProjectsPage.tsx(95,7): error TS2322: Type 'Record<string, ISummary>' is not assignable to type 'TestSummary'.
186
+ src/components/stateful/ProjectsPage.tsx(98,7): error TS2322: Type 'Record<string, ISummary>' is not assignable to type 'TestSummary'.
213
187
  'string' index signatures are incompatible.
214
188
  Type 'ISummary' has no properties in common with type '{ testsExist?: boolean | undefined; runTimeErrors?: number | undefined; typeErrors?: number | undefined; staticErrors?: number | undefined; }'.
215
- src/components/stateful/ProjectsPage.tsx(96,7): error TS2322: Type 'Record<string, object>' is not assignable to type 'ProjectConfig'.
189
+ src/components/stateful/ProjectsPage.tsx(99,7): error TS2322: Type 'Record<string, object>' is not assignable to type 'ProjectConfig'.
216
190
  'string' index signatures are incompatible.
217
191
  Property 'tests' is missing in type '{}' but required in type '{ tests: [string, string][]; }'.
218
192
  src/components/stateful/SingleProcessPage.tsx(4,35): error TS2306: File '/Users/adam/Code/testeranto/src/components/pure/SingleProcessView.tsx' is not a module.
219
193
  src/components/stateful/TestPage.tsx(80,24): error TS18046: 'output' is of type 'unknown'.
220
194
  src/components/stateful/TestPage.tsx(88,27): error TS18046: 'output' is of type 'unknown'.
221
- src/components/stateful/TestPage.tsx(159,9): error TS2322: Type '{}' is not assignable to type 'string'.
222
- src/components/stateful/TestPage.tsx(160,9): error TS2322: Type '{}' is not assignable to type 'string'.
223
- src/components/stateful/TestPage.tsx(225,13): error TS2322: Type '{ errors: never[]; warnings: never[]; }' is not assignable to type 'string'.
224
- src/components/stateful/TestPage.tsx(230,11): error TS2322: Type '{ errors: never[]; warnings: never[]; }' is not assignable to type 'string'.
225
- src/components/stateful/TestPage.tsx(233,18): error TS2345: Argument of type 'string' is not assignable to parameter of type 'SetStateAction<null>'.
226
- src/components/stateful/TestPage.tsx(249,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'.
195
+ src/components/stateful/TestPage.tsx(162,9): error TS2322: Type '{}' is not assignable to type 'string'.
196
+ src/components/stateful/TestPage.tsx(163,9): error TS2322: Type '{}' is not assignable to type 'string'.
197
+ src/components/stateful/TestPage.tsx(228,13): error TS2322: Type '{ errors: never[]; warnings: never[]; }' is not assignable to type 'string'.
198
+ src/components/stateful/TestPage.tsx(233,11): error TS2322: Type '{ errors: never[]; warnings: never[]; }' is not assignable to type 'string'.
199
+ src/components/stateful/TestPage.tsx(236,18): error TS2345: Argument of type 'string' is not assignable to parameter of type 'SetStateAction<null>'.
200
+ src/components/stateful/TestPage.tsx(252,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'.
227
201
  Property 'route' does not exist on type 'IntrinsicAttributes & TestPageViewProps'.
228
202
  src/components/stateful/TextEditorPage.tsx(110,11): error TS2322: Type 'string | undefined' is not assignable to type 'string | null'.
229
203
  Type 'undefined' is not assignable to type 'string | null'.
@@ -246,19 +220,33 @@ src/lib/abstractBase.test/implementation.ts(15,28): error TS2322: Type '{ testSt
246
220
  src/lib/abstractBase.test/MockGiven.ts(30,20): error TS2349: This expression is not callable.
247
221
  Type 'unknown' has no call signatures.
248
222
  src/lib/abstractBase.test/types.ts(13,17): error TS2707: Generic type 'Ibdd_out' requires between 0 and 4 type arguments.
249
- 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'.
250
- Types of property 'error' are incompatible.
251
- Type 'boolean | Error | undefined' is not assignable to type 'Error | undefined'.
252
- Type 'boolean' is not assignable to type 'Error'.
253
- src/lib/BaseSuite.test/mock.ts(85,13): error TS2322: Type 'Promise<{ testSelection: boolean; }>' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
254
- Type 'Promise<{ testSelection: boolean; }>' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
255
- src/lib/BaseSuite.test/mock.ts(90,29): error TS2511: Cannot create an instance of an abstract class.
223
+ src/lib/BaseSuite.test/mock.ts(39,9): error TS2416: Property 'andWhen' in type 'MockWhen' is not assignable to the same property in base type 'BaseWhen<I>'.
224
+ Types of parameters 'whenCB' and 'whenCB' are incompatible.
225
+ Type '(s: TestSelection) => Promise<BaseSuite<any, any>>' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
226
+ Types of parameters 's' and 'store' are incompatible.
227
+ Type 'TestStore' is not assignable to type 'TestSelection'.
228
+ Types of property 'testSelection' are incompatible.
229
+ Type 'boolean | undefined' is not assignable to type 'boolean'.
230
+ Type 'undefined' is not assignable to type 'boolean'.
231
+ src/lib/BaseSuite.test/mock.ts(51,5): error TS2741: Property 'testStore' is missing in type 'TestSelection' but required in type 'TestStore'.
232
+ src/lib/BaseSuite.test/mock.ts(86,11): error TS2322: Type 'MockWhen' is not assignable to type 'BaseWhen<I>'.
233
+ Types of property 'andWhen' are incompatible.
234
+ Types of parameters 'whenCB' and 'whenCB' are incompatible.
235
+ Type '(s: TestSelection) => Promise<BaseSuite<any, any>>' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
236
+ Types of parameters 's' and 'store' are incompatible.
237
+ Type 'TestStore' is not assignable to type 'TestSelection'.
238
+ Types of property 'testSelection' are incompatible.
239
+ Type 'boolean | undefined' is not assignable to type 'boolean'.
240
+ Type 'undefined' is not assignable to type 'boolean'.
241
+ src/lib/BaseSuite.test/mock.ts(87,13): error TS2322: Type 'Promise<{ testSelection: boolean; }>' is not assignable to type '(s: TestSelection) => Promise<BaseSuite<any, any>>'.
242
+ Type 'Promise<{ testSelection: boolean; }>' provides no match for the signature '(s: TestSelection): Promise<BaseSuite<any, any>>'.
243
+ src/lib/BaseSuite.test/mock.ts(92,29): error TS2511: Cannot create an instance of an abstract class.
256
244
  src/lib/BaseSuite.test/test.ts(143,30): error TS2345: Argument of type 'Promise<unknown>' is not assignable to parameter of type 'string'.
257
245
  src/lib/BaseSuite.test/test.ts(150,15): error TS2339: Property 'specs' does not exist on type 'MockSuite'.
258
246
  src/lib/BaseSuite.test/test.ts(150,38): error TS2339: Property 'specs' does not exist on type 'MockSuite'.
259
247
  src/lib/BaseSuite.test/test.ts(157,15): error TS2339: Property 'testJobs' does not exist on type 'MockSuite'.
260
248
  src/lib/BaseSuite.test/test.ts(157,41): error TS2339: Property 'testJobs' does not exist on type 'MockSuite'.
261
- 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>>'.
249
+ 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<(x: TestSelection) => (store: TestStore) => Promise<...>>'.
262
250
  Types of parameters 'suite' and 'zel' are incompatible.
263
251
  Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 11 more.
264
252
  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 ...'.
@@ -272,23 +260,24 @@ src/lib/BaseSuite.test/test.ts(185,11): error TS2322: Type '() => void' is not a
272
260
  Type 'void' is not assignable to type 'string'.
273
261
  src/lib/BaseSuite.test/test.ts(190,11): error TS2345: Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'.
274
262
  src/lib/BaseSuite.test/test.ts(204,13): error TS2345: Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'.
275
- 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>'.
276
- Types of parameters 'suite' and 'ssel' are incompatible.
277
- Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 11 more.
278
- src/lib/BaseSuite.test/test.ts(323,19): error TS2339: Property 'specs' does not exist on type 'MockSuite'.
279
- src/lib/BaseSuite.test/test.ts(332,19): error TS2339: Property 'testJobs' does not exist on type 'MockSuite'.
280
- src/lib/BaseSuite.test/test.ts(373,22): error TS2339: Property 'index' does not exist on type '() => Promise<TestStore>'.
281
- src/lib/BaseSuite.test/test.ts(376,19): error TS2339: Property 'store' does not exist on type '() => Promise<TestStore>'.
282
- src/lib/BaseSuite.test/test.ts(393,26): error TS2349: This expression is not callable.
283
- Type 'Promise<TestStore>' has no call signatures.
284
- src/lib/BaseSuite.test/test.ts(393,33): error TS2345: Argument of type 'TestSelection' is not assignable to parameter of type 'TestStore'.
285
- Property 'testStore' is missing in type 'TestSelection' but required in type 'TestStore'.
286
- 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<...>'.
287
- Types of parameters 'thenCB' and 'thenCB' are incompatible.
263
+ src/lib/BaseSuite.test/test.ts(229,5): error TS2322: Type '(expectedName: string) => ((ssel: TestSelection, utils: IPM) => Promise<BaseSuite<any, any>>)' is not assignable to type '(It_0: string) => (ssel: TestSelection, utils: PM) => (s: TestSelection) => Promise<BaseSuite<any, any>>'.
264
+ Call signature return types '(ssel: TestSelection, utils: IPM) => Promise<BaseSuite<any, any>>' and '(ssel: TestSelection, utils: PM) => (s: TestSelection) => Promise<BaseSuite<any, any>>' are incompatible.
265
+ Type 'Promise<BaseSuite<any, any>>' is not assignable to type '(s: TestSelection) => Promise<BaseSuite<any, any>>'.
266
+ Type 'Promise<BaseSuite<any, any>>' provides no match for the signature '(s: TestSelection): Promise<BaseSuite<any, any>>'.
267
+ src/lib/BaseSuite.test/test.ts(239,32): error TS2511: Cannot create an instance of an abstract class.
268
+ src/lib/BaseSuite.test/test.ts(242,5): error TS2322: Type '(expectedIndex: number) => ((ssel: TestSelection, utils: IPM) => Promise<BaseSuite<any, any>>)' is not assignable to type '(It_0: number) => (ssel: TestSelection, utils: PM) => (s: TestSelection) => Promise<BaseSuite<any, any>>'.
269
+ Call signature return types '(ssel: TestSelection, utils: IPM) => Promise<BaseSuite<any, any>>' and '(ssel: TestSelection, utils: PM) => (s: TestSelection) => Promise<BaseSuite<any, any>>' are incompatible.
270
+ Type 'Promise<BaseSuite<any, any>>' is not assignable to type '(s: TestSelection) => Promise<BaseSuite<any, any>>'.
271
+ Type 'Promise<BaseSuite<any, any>>' provides no match for the signature '(s: TestSelection): Promise<BaseSuite<any, any>>'.
272
+ src/lib/BaseSuite.test/test.ts(252,32): error TS2511: Cannot create an instance of an abstract class.
273
+ src/lib/BaseSuite.test/test.ts(255,5): error TS2322: Type '(feature: string) => ((ssel: TestSelection, utils: IPM) => (store: TestStore) => Promise<TestSelection>)' is not assignable to type '(feature: string) => (ssel: TestSelection, utils: PM) => (s: TestSelection) => Promise<BaseSuite<any, any>>'.
274
+ Call signature return types '(ssel: TestSelection, utils: IPM) => (store: TestStore) => Promise<TestSelection>' and '(ssel: TestSelection, utils: PM) => (s: TestSelection) => Promise<BaseSuite<any, any>>' are incompatible.
288
275
  Type '(store: TestStore) => Promise<TestSelection>' is not assignable to type '(s: TestSelection) => Promise<BaseSuite<any, any>>'.
289
276
  Types of parameters 'store' and 's' are incompatible.
290
277
  Property 'testStore' is missing in type 'TestSelection' but required in type 'TestStore'.
291
- 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>'.
278
+ src/lib/BaseSuite.test/test.ts(406,22): error TS2339: Property 'index' does not exist on type '() => Promise<TestStore>'.
279
+ src/lib/BaseSuite.test/test.ts(409,19): error TS2339: Property 'store' does not exist on type '() => Promise<TestStore>'.
280
+ src/lib/BaseSuite.test/test.ts(450,3): error TS2322: Type '(store: I["istore"]) => I["istore"]' is not assignable to type '(store: TestStore, key: string, pm: IPM) => Promise<unknown>'.
292
281
  Type 'TestStore' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
293
282
  src/lib/BaseThen.ts(76,41): error TS2556: A spread argument must either have a tuple type or be passed to a rest parameter.
294
283
  src/lib/index.ts(42,12): error TS2349: This expression is not callable.
@@ -334,28 +323,67 @@ src/lib/pmProxy.test/mockPM.ts(23,3): error TS2416: Property 'launchSideCar' in
334
323
  Type 'Promise<[number, any]>' is not assignable to type 'Promise<void>'.
335
324
  Type '[number, any]' is not assignable to type 'void'.
336
325
  src/lib/pmProxy.test/types.ts(19,17): error TS2707: Generic type 'Ibdd_out' requires between 0 and 4 type arguments.
337
- src/lib/Tiposkripto.test/MockTiposkripto.ts(32,56): error TS2322: Type 'never[]' is not assignable to type 'number'.
338
- 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 & { ...; }'.
326
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(34,56): error TS2322: Type 'never[]' is not assignable to type 'number'.
327
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(42,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 & { ...; }'.
339
328
  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
340
- src/lib/Tiposkripto.test/Tiposkripto.adapter.ts(29,26): error TS2554: Expected 1 arguments, but got 2.
341
- src/lib/Tiposkripto.test/Tiposkripto.adapter.ts(32,26): error TS2554: Expected 1 arguments, but got 2.
342
- 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]
343
- src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(28,13): error TS2322: Type 'never[]' is not assignable to type 'number'.
329
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(63,47): error TS2339: Property 'suites' does not exist on type 'ITestImplementation<I, O, M>'.
330
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(64,45): error TS2339: Property 'givens' does not exist on type 'ITestImplementation<I, O, M>'.
331
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(65,44): error TS2339: Property 'whens' does not exist on type 'ITestImplementation<I, O, M>'.
332
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(66,44): error TS2339: Property 'thens' does not exist on type 'ITestImplementation<I, O, M>'.
333
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(71,53): error TS2339: Property 'givens' does not exist on type 'ITestImplementation<I, O, M>'.
334
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(135,35): error TS2339: Property 'whens' does not exist on type 'ITestImplementation<I, O, M>'.
335
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(136,45): error TS2339: Property 'whens' does not exist on type 'ITestImplementation<I, O, M>'.
336
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(142,35): error TS2339: Property 'thens' does not exist on type 'ITestImplementation<I, O, M>'.
337
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(143,45): error TS2339: Property 'thens' does not exist on type 'ITestImplementation<I, O, M>'.
338
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(150,9): error TS2345: Argument of type '(name: string, tests: Record<string, any>, features: any[]) => { name: string; tests: Record<string, any>; features: any[]; }' is not assignable to parameter of type 'SuiteSpecification<I, O>'.
339
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(159,28): error TS2339: Property 'tests' does not exist on type 'BaseSuite<I, O>'.
340
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(159,50): error TS2339: Property 'tests' does not exist on type 'BaseSuite<I, O>'.
341
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(160,51): error TS2339: Property 'tests' does not exist on type 'BaseSuite<I, O>'.
342
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(161,32): error TS2339: Property 'tests' does not exist on type 'BaseSuite<I, O>'.
343
+ src/lib/Tiposkripto.test/Tiposkripto.adapter.ts(24,26): error TS2554: Expected 1 arguments, but got 2.
344
+ src/lib/Tiposkripto.test/Tiposkripto.adapter.ts(27,26): error TS2554: Expected 1 arguments, but got 2.
345
+ src/lib/Tiposkripto.test/Tiposkripto.adapter.ts(29,25): error TS2739: Type 'Tiposkripto<any, any, any>' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
346
+ src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(26,11): error TS2322: Type 'never[]' is not assignable to type 'number'.
344
347
  src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(42,11): error TS2322: Type 'never[]' is not assignable to type 'number'.
348
+ src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(57,32): error TS2322: Type 'ITestImplementation<I, O, M>' is not assignable to type 'ITestImplementation<any, any>'.
349
+ Type 'ITestImplementation<I, O, M>' is not assignable to type '{ whens: TestWhenImplementation<any, any>; }'.
350
+ Types of property 'whens' are incompatible.
351
+ Type '{ addArtifact: (artifact: Promise<any>) => (builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>; setTestJobs: (jobs: ITestJob[]) => (builder: Tiposkripto<...>) => Tiposkripto<...>; modifySpecs: (modifier: (specs: any[]) => any[]) => (builder: Tiposkripto<...>) => Tiposkripto<...>; modifyJobs: (modifie...' is not assignable to type 'TestWhenImplementation<any, any>'.
352
+ Property 'addArtifact' is incompatible with index signature.
353
+ Type '(artifact: Promise<any>) => (builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>' is not assignable to type '(...Iw: any) => (zel: any, tr: ITTestResourceConfiguration, utils: PM) => Promise<any>'.
354
+ Call signature return types '(builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>' and '(zel: any, tr: ITTestResourceConfiguration, utils: PM) => Promise<any>' are incompatible.
355
+ Type 'Tiposkripto<any, any, any>' is missing the following properties from type 'Promise<any>': then, catch, finally, [Symbol.toStringTag]
345
356
  src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(62,11): error TS2322: Type 'never[]' is not assignable to type 'number'.
346
357
  src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(72,11): error TS2322: Type 'never[]' is not assignable to type 'number'.
347
358
  src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(82,11): error TS2322: Type 'never[]' is not assignable to type 'number'.
348
- src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(189,20): error TS2339: Property 'testAdapter' does not exist on type 'Tiposkripto<any, any, any>'.
349
- 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>'.
350
- Type 'Promise<Tiposkripto<any, any, any>>' is missing the following properties from type 'Tiposkripto<any, any, any>': receiveTestResourceConfig, specs, assertThis, testResourceRequirement, and 14 more.
351
- src/lib/Tiposkripto.test/Tiposkripto.specification.ts(20,26): error TS2554: Expected 4 arguments, but got 3.
352
- src/lib/Tiposkripto.test/Tiposkripto.specification.ts(25,35): error TS2554: Expected 4 arguments, but got 3.
353
- src/lib/Tiposkripto.test/Tiposkripto.specification.ts(59,37): error TS2554: Expected 4 arguments, but got 3.
354
- src/lib/Tiposkripto.test/Tiposkripto.specification.ts(71,35): error TS2554: Expected 4 arguments, but got 3.
355
- src/lib/Tiposkripto.test/Tiposkripto.specification.ts(76,34): error TS2554: Expected 4 arguments, but got 3.
356
- src/lib/Tiposkripto.test/Tiposkripto.specification.ts(90,52): error TS2304: Cannot find name 'ITestJob'.
357
- src/lib/Tiposkripto.ts(205,7): error TS2345: Argument of type 'Record<string, any>' is not assignable to parameter of type 'SuiteSpecification<I, O>'.
358
- src/lib/Tiposkripto.ts(263,15): error TS2554: Expected 1 arguments, but got 3.
359
+ src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(109,5): error TS2322: Type '(config: string) => (builder: Tiposkripto<any, any, any>) => Promise<IFinalResults>' is not assignable to type '(config: string) => (builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>'.
360
+ Call signature return types '(builder: Tiposkripto<any, any, any>) => Promise<IFinalResults>' and '(builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>' are incompatible.
361
+ Type 'Promise<IFinalResults>' is missing the following properties from type 'Tiposkripto<any, any, any>': receiveTestResourceConfig, specs, assertThis, testResourceRequirement, and 16 more.
362
+ src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(114,32): error TS2322: Type '(builder: any, utils: any) => MockTiposkripto<any, any, any>' is not assignable to type '(builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>'.
363
+ Target signature provides too few arguments. Expected 2 or more, but got 1.
364
+ src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(227,30): error TS2322: Type '(builder: any) => Promise<any>' is not assignable to type '(builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>'.
365
+ Type 'Promise<any>' is missing the following properties from type 'Tiposkripto<any, any, any>': receiveTestResourceConfig, specs, assertThis, testResourceRequirement, and 16 more.
366
+ src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(231,32): error TS2322: Type '(builder: any) => Promise<any>' is not assignable to type '(builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>'.
367
+ Type 'Promise<any>' is missing the following properties from type 'Tiposkripto<any, any, any>': receiveTestResourceConfig, specs, assertThis, testResourceRequirement, and 16 more.
368
+ src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(239,41): error TS2322: Type '(builder: any) => Promise<any>' is not assignable to type '(builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>'.
369
+ Type 'Promise<any>' is missing the following properties from type 'Tiposkripto<any, any, any>': receiveTestResourceConfig, specs, assertThis, testResourceRequirement, and 16 more.
370
+ src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(245,5): error TS2322: Type '(expectedCount: number) => (builder: any) => Promise<any>' is not assignable to type '(expectedCount: number) => (builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>'.
371
+ Call signature return types '(builder: any) => Promise<any>' and '(builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>' are incompatible.
372
+ Type 'Promise<any>' is missing the following properties from type 'Tiposkripto<any, any, any>': receiveTestResourceConfig, specs, assertThis, testResourceRequirement, and 16 more.
373
+ src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(252,38): error TS2322: Type '(builder: any) => Promise<any>' is not assignable to type '(builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>'.
374
+ Type 'Promise<any>' is missing the following properties from type 'Tiposkripto<any, any, any>': receiveTestResourceConfig, specs, assertThis, testResourceRequirement, and 16 more.
375
+ src/lib/Tiposkripto.test/Tiposkripto.specification.ts(21,26): error TS2554: Expected 4 arguments, but got 3.
376
+ src/lib/Tiposkripto.test/Tiposkripto.specification.ts(26,35): error TS2554: Expected 4 arguments, but got 3.
377
+ src/lib/Tiposkripto.test/Tiposkripto.specification.ts(77,9): error TS2345: Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'ITestImplementation<any, any>'.
378
+ Type 'ITestImplementation<I, O, M>' is not assignable to type '{ whens: TestWhenImplementation<any, any>; }'.
379
+ Types of property 'whens' are incompatible.
380
+ Type '{ addArtifact: (artifact: Promise<any>) => (builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>; setTestJobs: (jobs: ITestJob[]) => (builder: Tiposkripto<...>) => Tiposkripto<...>; modifySpecs: (modifier: (specs: any[]) => any[]) => (builder: Tiposkripto<...>) => Tiposkripto<...>; modifyJobs: (modifie...' is not assignable to type 'TestWhenImplementation<any, any>'.
381
+ Property 'addArtifact' is incompatible with index signature.
382
+ Type '(artifact: Promise<any>) => (builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>' is not assignable to type '(...Iw: any) => (zel: any, tr: ITTestResourceConfiguration, utils: PM) => Promise<any>'.
383
+ Call signature return types '(builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>' and '(zel: any, tr: ITTestResourceConfiguration, utils: PM) => Promise<any>' are incompatible.
384
+ Type 'Tiposkripto<any, any, any>' is missing the following properties from type 'Promise<any>': then, catch, finally, [Symbol.toStringTag]
385
+ src/lib/Tiposkripto.ts(206,7): error TS2345: Argument of type 'Record<string, any>' is not assignable to parameter of type 'SuiteSpecification<I, O>'.
386
+ src/lib/Tiposkripto.ts(269,15): error TS2554: Expected 1 arguments, but got 3.
359
387
  src/mothership/test.ts(64,7): error TS2554: Expected 2 arguments, but got 3.
360
388
  src/mothership/test.ts(70,13): error TS2322: Type '(x: any) => any' is not assignable to type 'string'.
361
389
  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 & { ...; }'.
@@ -387,22 +415,33 @@ src/PM/__tests__/webSidecar.testeranto.ts(94,38): error TS2322: Type 'boolean' i
387
415
  src/PM/__tests__/webSidecar.testeranto.ts(109,18): error TS2339: Property 'removeListenerCalled' does not exist on type 'PM'.
388
416
  src/PM/__tests__/webSidecar.testeranto.ts(118,20): error TS2304: Cannot find name 'IPartialNodeAdapter'.
389
417
  src/PM/__tests__/webSidecar.testeranto.ts(118,40): error TS2304: Cannot find name 'I'.
390
- src/PM/main.ts(388,21): error TS2322: Type 'number | null' is not assignable to type 'number | undefined'.
418
+ src/PM/main.ts(64,3): error TS2416: Property 'allProcesses' in type 'PM_Main' is not assignable to the same property in base type 'PM_WithEslintAndTsc'.
419
+ Type 'Map<string, { child?: ChildProcess | undefined; status: "error" | "running" | "exited"; exitCode?: number | undefined; error?: string | undefined; command: string; pid?: number | undefined; timestamp: string; }>' is not assignable to type 'Map<string, { child?: ChildProcess | undefined; promise?: Promise<any> | undefined; status: "error" | "running" | "exited" | "completed"; exitCode?: number | undefined; ... 7 more ...; platform?: "node" | ... 4 more ... | undefined; }>'.
420
+ Type '{ child?: ChildProcess | undefined; status: "error" | "running" | "exited"; exitCode?: number | undefined; error?: string | undefined; command: string; pid?: number | undefined; timestamp: string; }' is missing the following properties from type '{ child?: ChildProcess | undefined; promise?: Promise<any> | undefined; status: "error" | "running" | "exited" | "completed"; exitCode?: number | undefined; ... 7 more ...; platform?: "node" | ... 4 more ... | undefined; }': type, category
421
+ src/PM/main.ts(234,13): error TS2367: This comparison appears to be unintentional because the types 'IRunTime' and '"pitono"' have no overlap.
422
+ src/PM/main.ts(246,13): error TS2367: This comparison appears to be unintentional because the types 'IRunTime' and '"pitono"' have no overlap.
423
+ src/PM/main.ts(286,13): error TS2367: This comparison appears to be unintentional because the types 'IRunTime' and '"pitono"' have no overlap.
424
+ src/PM/main.ts(356,9): error TS2367: This comparison appears to be unintentional because the types 'IRunTime' and '"pitono"' have no overlap.
425
+ src/PM/main.ts(364,11): error TS2367: This comparison appears to be unintentional because the types 'IRunTime' and '"pitono"' have no overlap.
426
+ src/PM/main.ts(379,11): error TS2367: This comparison appears to be unintentional because the types 'IRunTime' and '"pitono"' have no overlap.
427
+ src/PM/main.ts(958,37): error TS2345: Argument of type '"pitono"' is not assignable to parameter of type 'IRunTime'.
428
+ src/PM/main.ts(969,38): error TS2345: Argument of type '"pitono"' is not assignable to parameter of type 'IRunTime'.
429
+ src/PM/main.ts(1079,9): error TS2532: Object is possibly 'undefined'.
430
+ src/PM/main.ts(1118,11): error TS2322: Type 'string' is not assignable to type 'null'.
431
+ src/PM/PM_WithEslintAndTsc.ts(180,7): error TS2741: Property 'runTimeTests' is missing in type '{ typeErrors: undefined; staticErrors: undefined; runTimeErrors: undefined; prompt: undefined; failingFeatures: {}; }' but required in type '{ runTimeTests: number | "?" | undefined; runTimeErrors: number | "?" | undefined; typeErrors: number | "?" | undefined; staticErrors: number | "?" | undefined; prompt: string | undefined; failingFeatures: object | undefined; }'.
432
+ src/PM/PM_WithWebSocket.ts(166,21): error TS2322: Type 'number | null' is not assignable to type 'number | undefined'.
391
433
  Type 'null' is not assignable to type 'number | undefined'.
392
- src/PM/main.ts(543,7): error TS2322: Type '[number, Page]' is not assignable to type '[number, ITTestResourceConfiguration]'.
393
- Type at position 1 in source is not compatible with type at position 1 in target.
394
- Type 'Page' is missing the following properties from type 'ITTestResourceConfiguration': name, fs, ports
395
- src/PM/main.ts(798,42): error TS2345: Argument of type '{ nodeEntryPoints: {}; nodeEntryPointSidecars: {}; webEntryPoints: {}; webEntryPointSidecars: {}; pureEntryPoints: {}; pureEntryPointSidecars: {}; }' is not assignable to parameter of type '{ pythonEntryPoints: {}; nodeEntryPoints: {}; nodeEntryPointSidecars: {}; webEntryPoints: {}; webEntryPointSidecars: {}; pureEntryPoints: {}; pureEntryPointSidecars: {}; golangEntryPoints: {}; golangEntryPointSidecars: {}; }'.
396
- Type '{ nodeEntryPoints: {}; nodeEntryPointSidecars: {}; webEntryPoints: {}; webEntryPointSidecars: {}; pureEntryPoints: {}; pureEntryPointSidecars: {}; }' is missing the following properties from type '{ pythonEntryPoints: {}; nodeEntryPoints: {}; nodeEntryPointSidecars: {}; webEntryPoints: {}; webEntryPointSidecars: {}; pureEntryPoints: {}; pureEntryPointSidecars: {}; golangEntryPoints: {}; golangEntryPointSidecars: {}; }': pythonEntryPoints, golangEntryPoints, golangEntryPointSidecars
397
- src/PM/main.ts(1097,32): error TS2304: Cannot find name 'argz'.
398
- 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'.
399
- Property '#private' in type 'Page' refers to a different member that cannot be accessed from within type 'Page'.
400
- src/PM/main.ts(1380,6): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.
401
- src/PM/main.ts(1604,16): error TS2454: Variable 'argz' is used before being assigned.
402
- src/PM/main.ts(1867,9): error TS2532: Object is possibly 'undefined'.
403
- src/PM/main.ts(1912,11): error TS2322: Type 'string' is not assignable to type 'null'.
404
- src/PM/PM_WithEslintAndTsc.ts(249,10): error TS2339: Property 'broadcast' does not exist on type 'PM_WithEslintAndTsc'.
405
- src/PM/web.ts(59,12): error TS2339: Property 'mainFrame' does not exist on type 'string | Page'.
434
+ src/PM/PM_WithWebSocket.ts(234,46): error TS2339: Property 'stdin' does not exist on type 'Promise<any> | ChildProcess'.
435
+ Property 'stdin' does not exist on type 'Promise<any>'.
436
+ src/PM/PM_WithWebSocket.ts(236,28): error TS2339: Property 'stdin' does not exist on type 'Promise<any> | ChildProcess'.
437
+ Property 'stdin' does not exist on type 'Promise<any>'.
438
+ src/PM/PM_WithWebSocket.ts(242,46): error TS2339: Property 'stdin' does not exist on type 'Promise<any> | ChildProcess'.
439
+ Property 'stdin' does not exist on type 'Promise<any>'.
440
+ src/PM/PM_WithWebSocket.ts(255,28): error TS2339: Property 'kill' does not exist on type 'Promise<any> | ChildProcess'.
441
+ Property 'kill' does not exist on type 'Promise<any>'.
442
+ src/PM/PM_WithWebSocket.ts(323,11): error TS2322: Type 'string' is not assignable to type 'null'.
443
+ src/PM/utils.ts(58,16): error TS2367: This comparison appears to be unintentional because the types '"golang" | "python"' and '"pitono"' have no overlap.
444
+ src/PM/web.ts(51,12): error TS2339: Property 'mainFrame' does not exist on type 'string | Page'.
406
445
  Property 'mainFrame' does not exist on type 'string'.
407
446
  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; }'.
408
447
  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; }'.
@@ -460,6 +499,11 @@ src/Pure.test.ts(177,29): error TS2322: Type '(store: any, tr: any, utils: any)
460
499
  src/Pure.test.ts(315,28): error TS2304: Cannot find name 'ITestAdapter'.
461
500
  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 & { ...; }'.
462
501
  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
502
+ src/Pure.ts(42,9): error TS2416: Property 'receiveTestResourceConfig' in type 'PureTesteranto<I, O, M>' is not assignable to the same property in base type 'Tiposkripto<I, O, M>'.
503
+ Type '(partialTestResource: string) => Promise<IFinalResults | { failed: boolean; fails: number; artifacts: never[]; features: never[]; }>' is not assignable to type '(partialTestResource: string) => Promise<IFinalResults>'.
504
+ Type 'Promise<IFinalResults | { failed: boolean; fails: number; artifacts: never[]; features: never[]; }>' is not assignable to type 'Promise<IFinalResults>'.
505
+ Type 'IFinalResults | { failed: boolean; fails: number; artifacts: never[]; features: never[]; }' is not assignable to type 'IFinalResults'.
506
+ Type '{ failed: boolean; fails: number; artifacts: never[]; features: never[]; }' is missing the following properties from type 'IFinalResults': tests, runTimeTests
463
507
  src/Pure.ts(83,21): error TS2304: Cannot find name 'Testeranto'.
464
508
  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.
465
509
  Type 'Promise<Server<typeof IncomingMessage, typeof ServerResponse>>' is not assignable to type 'Promise<number>'.
@@ -472,9 +516,15 @@ src/ReportServer.test.ts/index.ts(190,3): error TS2345: Argument of type '(port:
472
516
  src/ReportServer.ts(8,20): error TS2345: Argument of type 'string | 3000' is not assignable to parameter of type 'number'.
473
517
  Type 'string' is not assignable to type 'number'.
474
518
  src/ReportServerLib.ts(111,33): error TS2339: Property 'status' does not exist on type 'Error'.
475
- src/utils.ts(133,10): error TS2339: Property 'golangEntryPoints' does not exist on type 'IRunnables'.
476
- src/utils.ts(175,12): error TS2551: Property 'golangEntryPointSidecars' does not exist on type 'IRunnables'. Did you mean 'nodeEntryPointSidecars'?
477
- src/utils/api.ts(34,44): error TS2345: Argument of type 'string' is not assignable to parameter of type 'RuntimeName'.
519
+ src/testeranto.ts(112,35): error TS2345: Argument of type '"pitono"' is not assignable to parameter of type 'IRunTime | undefined'.
520
+ src/testeranto.ts(134,53): error TS2367: This comparison appears to be unintentional because the types 'IRunTime' and '"pitono"' have no overlap.
521
+ src/utils.ts(148,10): error TS2339: Property 'golangEntryPoints' does not exist on type 'IRunnables'.
522
+ src/utils.ts(149,16): error TS2367: This comparison appears to be unintentional because the types '"python"' and '"pitono"' have no overlap.
523
+ src/utils.ts(151,10): error TS2551: Property 'pitonoEntryPoints' does not exist on type 'IRunnables'. Did you mean 'nodeEntryPoints'?
524
+ src/utils.ts(193,12): error TS2551: Property 'golangEntryPointSidecars' does not exist on type 'IRunnables'. Did you mean 'nodeEntryPointSidecars'?
525
+ src/utils.ts(196,22): error TS2367: This comparison appears to be unintentional because the types 'IRunTime' and '"pitono"' have no overlap.
526
+ src/utils.ts(199,12): error TS2551: Property 'pitonoEntryPointSidecars' does not exist on type 'IRunnables'. Did you mean 'nodeEntryPointSidecars'?
527
+ src/utils/api.ts(31,44): error TS2345: Argument of type 'string' is not assignable to parameter of type 'RuntimeName'.
478
528
  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.
479
529
  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.
480
530
  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.
package/tsconfig.json CHANGED
@@ -41,17 +41,21 @@
41
41
  "isolatedModules": true,
42
42
  "declaration": true,
43
43
  "outDir": "dist",
44
- "alwaysStrict": true
44
+ "alwaysStrict": true,
45
+ // Add these to support the process management features
46
+ "downlevelIteration": true,
47
+ "exactOptionalPropertyTypes": false
45
48
  },
46
49
  "include": [
47
50
  "./node_modules/testeranto/src/**/*.*ts",
48
51
  "index.d.ts",
49
52
  "./src/**/*.*ts",
50
53
  "./src/**/*.*tsx",
54
+ "./src/types/**/*.d.ts",
51
55
  "testeranto.config.ts",
52
56
  ],
53
57
  "exclude": [
54
58
  "node_modules",
55
59
  "trash"
56
60
  ]
57
- }
61
+ }