testeranto 0.203.0 → 0.205.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 (1145) hide show
  1. package/.vscode/settings.json +1 -0
  2. package/Dockerfile.golang +14 -0
  3. package/Dockerfile.mothership +11 -0
  4. package/Dockerfile.node +9 -0
  5. package/Dockerfile.python +19 -0
  6. package/Dockerfile.web +9 -0
  7. package/README.md +3 -1
  8. package/bundle.js +2 -11
  9. package/dist/cjs-shim.js +14 -0
  10. package/dist/common/design-editor/DesignEditor.js +77 -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/design-editor/types.js +2 -0
  14. package/dist/common/example/Calculator.js +105 -0
  15. package/dist/common/example/Calculator.test.adapter.js +39 -0
  16. package/dist/common/example/Calculator.test.implementation.js +50 -0
  17. package/dist/common/example/Calculator.test.js +11 -0
  18. package/dist/common/example/Calculator.test.specification.js +92 -0
  19. package/dist/common/example/Calculator.test.types.js +3 -0
  20. package/dist/common/package.json +3 -0
  21. package/dist/common/scripts/build-example.js +105 -0
  22. package/dist/common/src/CoreTypes.js +2 -0
  23. package/dist/common/src/Helpo.js +55 -0
  24. package/dist/common/src/Init.js +56 -0
  25. package/dist/common/src/Node.js +39 -0
  26. package/dist/common/src/NodeSidecar.js +15 -0
  27. package/dist/common/src/PM/__tests__/nodeSidecar.testeranto.js +108 -0
  28. package/dist/common/src/PM/__tests__/pureSidecar.testeranto.js +93 -0
  29. package/dist/common/src/PM/__tests__/webSidecar.testeranto.js +93 -0
  30. package/dist/common/src/PM/golingvuBuild.js +46 -0
  31. package/dist/common/src/PM/index.js +6 -0
  32. package/dist/common/src/PM/node.js +179 -0
  33. package/dist/common/src/PM/nodeSidecar.js +65 -0
  34. package/dist/common/src/PM/pitonoBuild.js +46 -0
  35. package/dist/common/src/PM/pitonoRunner.js +54 -0
  36. package/dist/common/src/PM/pure.js +103 -0
  37. package/dist/common/src/PM/pureSidecar.js +48 -0
  38. package/dist/common/src/PM/sidecar.js +11 -0
  39. package/dist/common/src/PM/types.js +2 -0
  40. package/dist/common/src/PM/utils.js +217 -0
  41. package/dist/common/src/PM/web.js +102 -0
  42. package/dist/common/src/PM/webSidecar.js +47 -0
  43. package/dist/common/src/Pure.js +38 -0
  44. package/dist/common/src/Pure.test.js +175 -0
  45. package/dist/common/src/PureSidecar.js +13 -0
  46. package/dist/common/src/Types.js +2 -0
  47. package/dist/common/src/Web.js +27 -0
  48. package/dist/common/src/WebSidecar.js +13 -0
  49. package/dist/common/src/app/FileService.js +25 -0
  50. package/dist/common/src/app/api.js +73 -0
  51. package/dist/common/src/app/backend/PM_0.js +317 -0
  52. package/dist/common/src/app/backend/PM_1_WithProcesses.js +922 -0
  53. package/dist/common/src/app/backend/PM_2_WithTCP.js +244 -0
  54. package/dist/common/src/app/backend/PM_WithBuild.js +120 -0
  55. package/dist/common/src/app/backend/PM_WithEslintAndTsc.js +133 -0
  56. package/dist/common/src/app/backend/PM_WithGit.js +586 -0
  57. package/dist/common/src/app/backend/PM_WithHelpo.js +257 -0
  58. package/dist/common/src/app/backend/PM_WithProcesses.js +1083 -0
  59. package/dist/common/src/app/backend/PM_WithTCP.js +388 -0
  60. package/dist/common/src/app/backend/getAllFilesRecursively.js +22 -0
  61. package/dist/common/src/app/backend/main.js +804 -0
  62. package/dist/common/src/app/backend/makePrompt.js +73 -0
  63. package/dist/common/src/app/backend/utils.js +144 -0
  64. package/dist/common/src/app/frontend/App.js +206 -0
  65. package/dist/common/src/app/frontend/DevelopmentFileService.js +98 -0
  66. package/dist/common/src/app/frontend/GitFileService.js +262 -0
  67. package/dist/common/src/app/frontend/GitHubAuthService.js +184 -0
  68. package/dist/common/src/app/frontend/api.js +93 -0
  69. package/dist/common/src/app/frontend/components/DesignEditorPage.js +208 -0
  70. package/dist/common/src/app/frontend/components/SunriseAnimation.js +291 -0
  71. package/dist/common/src/app/frontend/components/SunriseAnimation.test/implementation.js +1 -0
  72. package/dist/common/src/app/frontend/components/SunriseAnimation.test/index.js +1 -0
  73. package/dist/common/src/app/frontend/components/SunriseAnimation.test/interface.js +68 -0
  74. package/dist/common/src/app/frontend/components/SunriseAnimation.test/specification.js +1 -0
  75. package/dist/common/src/app/frontend/components/SunriseAnimation.test/types.js +2 -0
  76. package/dist/common/src/app/frontend/components/TestStatusBadge.js +35 -0
  77. package/dist/common/src/app/frontend/components/pure/AppFrame.js +177 -0
  78. package/dist/common/src/app/frontend/components/pure/AppFrame.test/implementation.js +63 -0
  79. package/dist/common/src/app/frontend/components/pure/AppFrame.test/index.js +14 -0
  80. package/dist/common/src/app/frontend/components/pure/AppFrame.test/specification.js +25 -0
  81. package/dist/common/src/app/frontend/components/pure/AppFrame.test/types.js +3 -0
  82. package/dist/common/src/app/frontend/components/pure/ArtifactTree.js +80 -0
  83. package/dist/common/src/app/frontend/components/pure/BuildLogViewer.js +106 -0
  84. package/dist/common/src/app/frontend/components/pure/DebugEnv.js +30 -0
  85. package/dist/common/src/app/frontend/components/pure/FeaturesReporterView.js +23 -0
  86. package/dist/common/src/app/frontend/components/pure/FeaturesReporterView.test/implementation.js +84 -0
  87. package/dist/common/src/app/frontend/components/pure/FeaturesReporterView.test/index.js +14 -0
  88. package/dist/common/src/app/frontend/components/pure/FeaturesReporterView.test/specification.js +27 -0
  89. package/dist/common/src/app/frontend/components/pure/FeaturesReporterView.test/types.js +2 -0
  90. package/dist/common/src/app/frontend/components/pure/FileTree.js +34 -0
  91. package/dist/common/src/app/frontend/components/pure/FileTreeItem.js +29 -0
  92. package/dist/common/src/app/frontend/components/pure/GitHubLoginButton.js +18 -0
  93. package/dist/common/src/app/frontend/components/pure/GitIntegrationView.js +383 -0
  94. package/dist/common/src/app/frontend/components/pure/HelpoChatDrawer.js +179 -0
  95. package/dist/common/src/app/frontend/components/pure/MagicRobotModal.js +73 -0
  96. package/dist/common/src/app/frontend/components/pure/ModalContent.js +86 -0
  97. package/dist/common/src/app/frontend/components/pure/ModalContent.test/implementation.js +35 -0
  98. package/dist/common/src/app/frontend/components/pure/ModalContent.test/index.js +61 -0
  99. package/dist/common/src/app/frontend/components/pure/ModalContent.test/specification.js +19 -0
  100. package/dist/common/src/app/frontend/components/pure/ModalContent.test/types.js +4 -0
  101. package/dist/common/src/app/frontend/components/pure/NavBar.js +45 -0
  102. package/dist/common/src/app/frontend/components/pure/ProcessDetails.js +49 -0
  103. package/dist/common/src/app/frontend/components/pure/ProcessInput.js +62 -0
  104. package/dist/common/src/app/frontend/components/pure/ProcessList.js +52 -0
  105. package/dist/common/src/app/frontend/components/pure/ProcessLogs.js +67 -0
  106. package/dist/common/src/app/frontend/components/pure/ProcessManager.js +113 -0
  107. package/dist/common/src/app/frontend/components/pure/ProcessManagerView.js +82 -0
  108. package/dist/common/src/app/frontend/components/pure/ProcessManagerViewTypes.js +2 -0
  109. package/dist/common/src/app/frontend/components/pure/ProcessSidebar.js +56 -0
  110. package/dist/common/src/app/frontend/components/pure/ProcessTerminal.js +62 -0
  111. package/dist/common/src/app/frontend/components/pure/ProjectPageView.js +69 -0
  112. package/dist/common/src/app/frontend/components/pure/ProjectPageView.test/implementation.js +185 -0
  113. package/dist/common/src/app/frontend/components/pure/ProjectPageView.test/index.js +14 -0
  114. package/dist/common/src/app/frontend/components/pure/ProjectPageView.test/specification.js +32 -0
  115. package/dist/common/src/app/frontend/components/pure/ProjectPageView.test/types.js +4 -0
  116. package/dist/common/src/app/frontend/components/pure/ProjectsPageView.js +72 -0
  117. package/dist/common/src/app/frontend/components/pure/Settings.js +122 -0
  118. package/dist/common/src/app/frontend/components/pure/Settings.test.js +30 -0
  119. package/dist/common/src/app/frontend/components/pure/SettingsButton.js +13 -0
  120. package/dist/common/src/app/frontend/components/pure/SignIn.js +22 -0
  121. package/dist/common/src/app/frontend/components/pure/SingleProcessView.js +126 -0
  122. package/dist/common/src/app/frontend/components/pure/TerminalInput.js +76 -0
  123. package/dist/common/src/app/frontend/components/pure/TerminalLogs.js +80 -0
  124. package/dist/common/src/app/frontend/components/pure/TestTable.js +33 -0
  125. package/dist/common/src/app/frontend/components/pure/ThemeCard.js +15 -0
  126. package/dist/common/src/app/frontend/components/pure/ToastNotification.js +14 -0
  127. package/dist/common/src/app/frontend/components/pure/UserProfile.js +27 -0
  128. package/dist/common/src/app/frontend/components/stateful/AuthCallbackPage.js +51 -0
  129. package/dist/common/src/app/frontend/components/stateful/DratoPage.js +319 -0
  130. package/dist/common/src/app/frontend/components/stateful/FeaturesReporter.js +22 -0
  131. package/dist/common/src/app/frontend/components/stateful/FileTree.js +59 -0
  132. package/dist/common/src/app/frontend/components/stateful/GenericXMLEditor/AttributeEditor.js +51 -0
  133. package/dist/common/src/app/frontend/components/stateful/GenericXMLEditor/Drawer.js +152 -0
  134. package/dist/common/src/app/frontend/components/stateful/GenericXMLEditor/GenericPreview.js +156 -0
  135. package/dist/common/src/app/frontend/components/stateful/GenericXMLEditor/GenericTextEditor.js +169 -0
  136. package/dist/common/src/app/frontend/components/stateful/GenericXMLEditor/GenericTree.js +30 -0
  137. package/dist/common/src/app/frontend/components/stateful/GenericXMLEditorPage.js +306 -0
  138. package/dist/common/src/app/frontend/components/stateful/GitIntegrationPage.js +252 -0
  139. package/dist/common/src/app/frontend/components/stateful/GrafeoPage.js +437 -0
  140. package/dist/common/src/app/frontend/components/stateful/ProcessManagerPage.js +113 -0
  141. package/dist/common/src/app/frontend/components/stateful/ProjectPage.js +108 -0
  142. package/dist/common/src/app/frontend/components/stateful/ProjectsPage.js +136 -0
  143. package/dist/common/src/app/frontend/components/stateful/SVGEditor/CircleForm.js +24 -0
  144. package/dist/common/src/app/frontend/components/stateful/SVGEditor/GroupForm.js +22 -0
  145. package/dist/common/src/app/frontend/components/stateful/SVGEditor/RectForm.js +25 -0
  146. package/dist/common/src/app/frontend/components/stateful/SVGEditor/SVGAttributeField.js +15 -0
  147. package/dist/common/src/app/frontend/components/stateful/SVGEditor/SVGAttributesEditor.js +87 -0
  148. package/dist/common/src/app/frontend/components/stateful/SVGEditor/SVGEditorControls.js +23 -0
  149. package/dist/common/src/app/frontend/components/stateful/SVGEditor/SVGElementForm.js +23 -0
  150. package/dist/common/src/app/frontend/components/stateful/SVGEditor/SVGPreview.js +178 -0
  151. package/dist/common/src/app/frontend/components/stateful/SVGEditor/SVGTextEditor.js +155 -0
  152. package/dist/common/src/app/frontend/components/stateful/SVGEditor/SVGTree.js +105 -0
  153. package/dist/common/src/app/frontend/components/stateful/SVGEditor/SVGTypes.js +2 -0
  154. package/dist/common/src/app/frontend/components/stateful/SVGEditorPage.js +437 -0
  155. package/dist/common/src/app/frontend/components/stateful/SettingsPage.js +72 -0
  156. package/dist/common/src/app/frontend/components/stateful/SingleProcessPage.js +134 -0
  157. package/dist/common/src/app/frontend/components/stateful/SkriboPage.js +517 -0
  158. package/dist/common/src/app/frontend/components/stateful/TextEditorPage.js +154 -0
  159. package/dist/common/src/app/frontend/fetchDataUtil.js +187 -0
  160. package/dist/common/src/app/frontend/flua/FluaPage.js +378 -0
  161. package/dist/common/src/app/frontend/testPage/ITestPageViewProps.js +2 -0
  162. package/dist/common/src/app/frontend/testPage/ProjectsTree.js +179 -0
  163. package/dist/common/src/app/frontend/testPage/TestPage.js +85 -0
  164. package/dist/common/src/app/frontend/testPage/TestPageLeftContent.js +48 -0
  165. package/dist/common/src/app/frontend/testPage/TestPageMainContent.js +82 -0
  166. package/dist/common/src/app/frontend/testPage/TestPageNavbar.js +33 -0
  167. package/dist/common/src/app/frontend/testPage/TestPageView.js +352 -0
  168. package/dist/common/src/app/frontend/testPage/TestPageView.test/implementation.js +158 -0
  169. package/dist/common/src/app/frontend/testPage/TestPageView.test/index.js +15 -0
  170. package/dist/common/src/app/frontend/testPage/TestPageView.test/specification.js +27 -0
  171. package/dist/common/src/app/frontend/testPage/TestPageView.test/types.js +4 -0
  172. package/dist/common/src/app/frontend/testPage/TestPageView_utils.js +128 -0
  173. package/dist/common/src/app/frontend/useFileSystemSync.js +108 -0
  174. package/dist/common/src/app/frontend/useFs.js +15 -0
  175. package/dist/common/src/app/frontend/useGitMode.js +20 -0
  176. package/dist/common/src/app/frontend/useTerminalWebSocket.js +44 -0
  177. package/dist/common/src/app/frontend/useWebSocket.js +16 -0
  178. package/dist/common/src/app/types.js +2 -0
  179. package/dist/common/src/builders/golang.js +30 -0
  180. package/dist/common/src/builders/node.js +35 -0
  181. package/dist/common/src/builders/python.js +28 -0
  182. package/dist/common/src/builders/web.js +35 -0
  183. package/dist/common/src/defaultConfig.js +19 -0
  184. package/dist/common/src/esbuildConfigs/consoleDetectorPlugin.js +38 -0
  185. package/dist/common/src/esbuildConfigs/eslint-formatter-testeranto.js +21 -0
  186. package/dist/common/src/esbuildConfigs/featuresPlugin.js +39 -0
  187. package/dist/common/src/esbuildConfigs/index.js +21 -0
  188. package/dist/common/src/esbuildConfigs/inputFilesPlugin.js +30 -0
  189. package/dist/common/src/esbuildConfigs/nativeImportDetectorPlugin.js +24 -0
  190. package/dist/common/src/esbuildConfigs/node.js +26 -0
  191. package/dist/common/src/esbuildConfigs/pure.js +42 -0
  192. package/dist/common/src/esbuildConfigs/rebuildPlugin.js +19 -0
  193. package/dist/common/src/esbuildConfigs/web.js +48 -0
  194. package/dist/common/src/init-docs.js +9 -0
  195. package/dist/common/src/lib/BaseGiven.js +176 -0
  196. package/dist/common/src/lib/BaseSuite.js +138 -0
  197. package/dist/common/src/lib/BaseSuite.test/mock.js +68 -0
  198. package/dist/common/src/lib/BaseSuite.test/node.test.js +10 -0
  199. package/dist/common/src/lib/BaseSuite.test/pure.test.js +10 -0
  200. package/dist/common/src/lib/BaseSuite.test/test.js +184 -0
  201. package/dist/common/src/lib/BaseSuite.test/web.test.js +10 -0
  202. package/dist/common/src/lib/BaseThen.js +63 -0
  203. package/dist/common/src/lib/BaseWhen.js +47 -0
  204. package/dist/common/src/lib/Sidecar.js +7 -0
  205. package/dist/common/src/lib/Tiposkripto.js +188 -0
  206. package/dist/common/src/lib/Tiposkripto.test/MockTiposkripto.js +170 -0
  207. package/dist/common/src/lib/Tiposkripto.test/Tiposkripto.adapter.js +29 -0
  208. package/dist/common/src/lib/Tiposkripto.test/Tiposkripto.implementation.js +215 -0
  209. package/dist/common/src/lib/Tiposkripto.test/Tiposkripto.js +11 -0
  210. package/dist/common/src/lib/Tiposkripto.test/Tiposkripto.specification.js +53 -0
  211. package/dist/common/src/lib/Tiposkripto.test/Tiposkripto.types.js +2 -0
  212. package/dist/common/src/lib/abstractBase.test/MockGiven.js +24 -0
  213. package/dist/common/src/lib/abstractBase.test/MockThen.js +16 -0
  214. package/dist/common/src/lib/abstractBase.test/MockWhen.js +20 -0
  215. package/dist/common/src/lib/abstractBase.test/adapter.js +24 -0
  216. package/dist/common/src/lib/abstractBase.test/implementation.js +38 -0
  217. package/dist/common/src/lib/abstractBase.test/index.js +18 -0
  218. package/dist/common/src/lib/abstractBase.test/specification.js +19 -0
  219. package/dist/common/src/lib/abstractBase.test/types.js +2 -0
  220. package/dist/common/src/lib/index.js +31 -0
  221. package/dist/common/src/lib/pmProxy.js +260 -0
  222. package/dist/common/src/lib/pmProxy.test/adapter.js +54 -0
  223. package/dist/common/src/lib/pmProxy.test/implementation.js +130 -0
  224. package/dist/common/src/lib/pmProxy.test/index.js +13 -0
  225. package/dist/common/src/lib/pmProxy.test/mockPM.js +35 -0
  226. package/dist/common/src/lib/pmProxy.test/mockPMBase.js +131 -0
  227. package/dist/common/src/lib/pmProxy.test/specification.js +178 -0
  228. package/dist/common/src/lib/pmProxy.test/types.js +2 -0
  229. package/dist/common/src/lib/types.js +3 -0
  230. package/dist/common/src/mothership/index.js +183 -0
  231. package/dist/common/src/mothership/test.js +85 -0
  232. package/dist/common/src/run.js +49 -0
  233. package/dist/common/src/testeranto.js +223 -0
  234. package/dist/common/src/utils/buildTemplates.js +37 -0
  235. package/dist/common/src/utils/generateGolingvuMetafile.js +157 -0
  236. package/dist/common/src/utils/golingvuMetafile/fileDiscovery.js +142 -0
  237. package/dist/common/src/utils/golingvuMetafile/goList.js +103 -0
  238. package/dist/common/src/utils/golingvuMetafile/helpers.js +68 -0
  239. package/dist/common/src/utils/golingvuMetafile/importParser.js +89 -0
  240. package/dist/common/src/utils/golingvuMetafile/types.js +3 -0
  241. package/dist/common/src/utils/golingvuMetafile.js +9 -0
  242. package/dist/common/src/utils/golingvuWatcher.js +233 -0
  243. package/dist/common/src/utils/logFiles.js +60 -0
  244. package/dist/common/src/utils/pitonoMetafile.js +247 -0
  245. package/dist/common/src/utils/pitonoWatcher.js +130 -0
  246. package/dist/common/src/utils/queue.js +36 -0
  247. package/dist/common/src/utils/writeGolingvuMetafile.js +324 -0
  248. package/dist/common/src/web.html.js +18 -0
  249. package/dist/common/testeranto.config.js +91 -0
  250. package/dist/common/tsconfig.common.tsbuildinfo +1 -0
  251. package/dist/module/design-editor/DesignEditor.js +40 -0
  252. package/dist/module/design-editor/index.js +2 -0
  253. package/dist/module/design-editor/server.js +92 -0
  254. package/dist/module/design-editor/types.js +1 -0
  255. package/dist/module/example/Calculator.js +101 -0
  256. package/dist/module/example/Calculator.test.adapter.js +36 -0
  257. package/dist/module/example/Calculator.test.implementation.js +47 -0
  258. package/dist/module/example/Calculator.test.js +6 -0
  259. package/dist/module/example/Calculator.test.specification.js +88 -0
  260. package/dist/module/example/Calculator.test.types.js +2 -0
  261. package/dist/module/package.json +3 -0
  262. package/dist/module/scripts/build-example.js +100 -0
  263. package/dist/module/src/CoreTypes.js +1 -0
  264. package/dist/module/src/Helpo.js +48 -0
  265. package/dist/module/src/Init.js +51 -0
  266. package/dist/module/src/Node.js +32 -0
  267. package/dist/module/src/NodeSidecar.js +11 -0
  268. package/dist/module/src/PM/__tests__/nodeSidecar.testeranto.js +103 -0
  269. package/dist/module/src/PM/__tests__/pureSidecar.testeranto.js +88 -0
  270. package/dist/module/src/PM/__tests__/webSidecar.testeranto.js +88 -0
  271. package/dist/module/src/PM/golingvuBuild.js +42 -0
  272. package/dist/module/src/PM/index.js +2 -0
  273. package/dist/module/src/PM/node.js +172 -0
  274. package/dist/module/src/PM/nodeSidecar.js +58 -0
  275. package/dist/module/src/PM/pitonoBuild.js +42 -0
  276. package/dist/module/src/PM/pitonoRunner.js +47 -0
  277. package/dist/module/src/PM/pure.js +99 -0
  278. package/dist/module/src/PM/pureSidecar.js +41 -0
  279. package/dist/module/src/PM/sidecar.js +7 -0
  280. package/dist/module/src/PM/types.js +1 -0
  281. package/dist/module/src/PM/utils.js +203 -0
  282. package/dist/module/src/PM/web.js +98 -0
  283. package/dist/module/src/PM/webSidecar.js +40 -0
  284. package/dist/module/src/Pure.js +31 -0
  285. package/dist/module/src/Pure.test.js +170 -0
  286. package/dist/module/src/PureSidecar.js +9 -0
  287. package/dist/module/src/Types.js +1 -0
  288. package/dist/module/src/Web.js +20 -0
  289. package/dist/module/src/WebSidecar.js +9 -0
  290. package/dist/module/src/app/FileService.js +21 -0
  291. package/dist/module/src/app/api.js +70 -0
  292. package/dist/module/src/app/backend/PM_0.js +310 -0
  293. package/dist/module/src/app/backend/PM_1_WithProcesses.js +882 -0
  294. package/dist/module/src/app/backend/PM_2_WithTCP.js +237 -0
  295. package/dist/module/src/app/backend/PM_WithBuild.js +113 -0
  296. package/dist/module/src/app/backend/PM_WithEslintAndTsc.js +126 -0
  297. package/dist/module/src/app/backend/PM_WithGit.js +546 -0
  298. package/dist/module/src/app/backend/PM_WithHelpo.js +250 -0
  299. package/dist/module/src/app/backend/PM_WithProcesses.js +1083 -0
  300. package/dist/module/src/app/backend/PM_WithTCP.js +381 -0
  301. package/dist/module/src/app/backend/getAllFilesRecursively.js +16 -0
  302. package/dist/module/src/app/backend/main.js +764 -0
  303. package/dist/module/src/app/backend/makePrompt.js +66 -0
  304. package/dist/module/src/app/backend/utils.js +131 -0
  305. package/dist/module/src/app/frontend/App.js +164 -0
  306. package/dist/module/src/app/frontend/DevelopmentFileService.js +91 -0
  307. package/dist/module/src/app/frontend/GitFileService.js +258 -0
  308. package/dist/module/src/app/frontend/GitHubAuthService.js +180 -0
  309. package/dist/module/src/app/frontend/api.js +87 -0
  310. package/dist/module/src/app/frontend/components/DesignEditorPage.js +171 -0
  311. package/dist/module/src/app/frontend/components/SunriseAnimation.js +256 -0
  312. package/dist/module/src/app/frontend/components/SunriseAnimation.test/implementation.js +1 -0
  313. package/dist/module/src/app/frontend/components/SunriseAnimation.test/index.js +1 -0
  314. package/dist/module/src/app/frontend/components/SunriseAnimation.test/interface.js +32 -0
  315. package/dist/module/src/app/frontend/components/SunriseAnimation.test/specification.js +1 -0
  316. package/dist/module/src/app/frontend/components/SunriseAnimation.test/types.js +1 -0
  317. package/dist/module/src/app/frontend/components/TestStatusBadge.js +28 -0
  318. package/dist/module/src/app/frontend/components/pure/AppFrame.js +140 -0
  319. package/dist/module/src/app/frontend/components/pure/AppFrame.test/implementation.js +57 -0
  320. package/dist/module/src/app/frontend/components/pure/AppFrame.test/index.js +9 -0
  321. package/dist/module/src/app/frontend/components/pure/AppFrame.test/specification.js +21 -0
  322. package/dist/module/src/app/frontend/components/pure/AppFrame.test/types.js +2 -0
  323. package/dist/module/src/app/frontend/components/pure/ArtifactTree.js +80 -0
  324. package/dist/module/src/app/frontend/components/pure/BuildLogViewer.js +99 -0
  325. package/dist/module/src/app/frontend/components/pure/DebugEnv.js +23 -0
  326. package/dist/module/src/app/frontend/components/pure/FeaturesReporterView.js +16 -0
  327. package/dist/module/src/app/frontend/components/pure/FeaturesReporterView.test/implementation.js +81 -0
  328. package/dist/module/src/app/frontend/components/pure/FeaturesReporterView.test/index.js +9 -0
  329. package/dist/module/src/app/frontend/components/pure/FeaturesReporterView.test/specification.js +23 -0
  330. package/dist/module/src/app/frontend/components/pure/FeaturesReporterView.test/types.js +1 -0
  331. package/dist/module/src/app/frontend/components/pure/FileTree.js +27 -0
  332. package/dist/module/src/app/frontend/components/pure/FileTreeItem.js +22 -0
  333. package/dist/module/src/app/frontend/components/pure/GitHubLoginButton.js +11 -0
  334. package/dist/module/src/app/frontend/components/pure/GitIntegrationView.js +346 -0
  335. package/dist/module/src/app/frontend/components/pure/HelpoChatDrawer.js +142 -0
  336. package/dist/module/src/app/frontend/components/pure/MagicRobotModal.js +66 -0
  337. package/dist/module/src/app/frontend/components/pure/ModalContent.js +79 -0
  338. package/dist/module/src/app/frontend/components/pure/ModalContent.test/implementation.js +32 -0
  339. package/dist/module/src/app/frontend/components/pure/ModalContent.test/index.js +56 -0
  340. package/dist/module/src/app/frontend/components/pure/ModalContent.test/specification.js +15 -0
  341. package/dist/module/src/app/frontend/components/pure/ModalContent.test/types.js +3 -0
  342. package/dist/module/src/app/frontend/components/pure/NavBar.js +38 -0
  343. package/dist/module/src/app/frontend/components/pure/ProcessDetails.js +42 -0
  344. package/dist/module/src/app/frontend/components/pure/ProcessInput.js +25 -0
  345. package/dist/module/src/app/frontend/components/pure/ProcessList.js +45 -0
  346. package/dist/module/src/app/frontend/components/pure/ProcessLogs.js +30 -0
  347. package/dist/module/src/app/frontend/components/pure/ProcessManager.js +76 -0
  348. package/dist/module/src/app/frontend/components/pure/ProcessManagerView.js +45 -0
  349. package/dist/module/src/app/frontend/components/pure/ProcessManagerViewTypes.js +1 -0
  350. package/dist/module/src/app/frontend/components/pure/ProcessSidebar.js +49 -0
  351. package/dist/module/src/app/frontend/components/pure/ProcessTerminal.js +25 -0
  352. package/dist/module/src/app/frontend/components/pure/ProjectPageView.js +62 -0
  353. package/dist/module/src/app/frontend/components/pure/ProjectPageView.test/implementation.js +182 -0
  354. package/dist/module/src/app/frontend/components/pure/ProjectPageView.test/index.js +9 -0
  355. package/dist/module/src/app/frontend/components/pure/ProjectPageView.test/specification.js +28 -0
  356. package/dist/module/src/app/frontend/components/pure/ProjectPageView.test/types.js +3 -0
  357. package/dist/module/src/app/frontend/components/pure/ProjectsPageView.js +65 -0
  358. package/dist/module/src/app/frontend/components/pure/Settings.js +85 -0
  359. package/dist/module/src/app/frontend/components/pure/Settings.test.js +30 -0
  360. package/dist/module/src/app/frontend/components/pure/SettingsButton.js +6 -0
  361. package/dist/module/src/app/frontend/components/pure/SignIn.js +15 -0
  362. package/dist/module/src/app/frontend/components/pure/SingleProcessView.js +126 -0
  363. package/dist/module/src/app/frontend/components/pure/TerminalInput.js +39 -0
  364. package/dist/module/src/app/frontend/components/pure/TerminalLogs.js +43 -0
  365. package/dist/module/src/app/frontend/components/pure/TestTable.js +26 -0
  366. package/dist/module/src/app/frontend/components/pure/ThemeCard.js +8 -0
  367. package/dist/module/src/app/frontend/components/pure/ToastNotification.js +7 -0
  368. package/dist/module/src/app/frontend/components/pure/UserProfile.js +20 -0
  369. package/dist/module/src/app/frontend/components/stateful/AuthCallbackPage.js +14 -0
  370. package/dist/module/src/app/frontend/components/stateful/DratoPage.js +282 -0
  371. package/dist/module/src/app/frontend/components/stateful/FeaturesReporter.js +22 -0
  372. package/dist/module/src/app/frontend/components/stateful/FileTree.js +59 -0
  373. package/dist/module/src/app/frontend/components/stateful/GenericXMLEditor/AttributeEditor.js +44 -0
  374. package/dist/module/src/app/frontend/components/stateful/GenericXMLEditor/Drawer.js +115 -0
  375. package/dist/module/src/app/frontend/components/stateful/GenericXMLEditor/GenericPreview.js +119 -0
  376. package/dist/module/src/app/frontend/components/stateful/GenericXMLEditor/GenericTextEditor.js +132 -0
  377. package/dist/module/src/app/frontend/components/stateful/GenericXMLEditor/GenericTree.js +23 -0
  378. package/dist/module/src/app/frontend/components/stateful/GenericXMLEditorPage.js +269 -0
  379. package/dist/module/src/app/frontend/components/stateful/GitIntegrationPage.js +215 -0
  380. package/dist/module/src/app/frontend/components/stateful/GrafeoPage.js +400 -0
  381. package/dist/module/src/app/frontend/components/stateful/ProcessManagerPage.js +76 -0
  382. package/dist/module/src/app/frontend/components/stateful/ProjectPage.js +71 -0
  383. package/dist/module/src/app/frontend/components/stateful/ProjectsPage.js +99 -0
  384. package/dist/module/src/app/frontend/components/stateful/SVGEditor/CircleForm.js +17 -0
  385. package/dist/module/src/app/frontend/components/stateful/SVGEditor/GroupForm.js +15 -0
  386. package/dist/module/src/app/frontend/components/stateful/SVGEditor/RectForm.js +18 -0
  387. package/dist/module/src/app/frontend/components/stateful/SVGEditor/SVGAttributeField.js +8 -0
  388. package/dist/module/src/app/frontend/components/stateful/SVGEditor/SVGAttributesEditor.js +50 -0
  389. package/dist/module/src/app/frontend/components/stateful/SVGEditor/SVGEditorControls.js +16 -0
  390. package/dist/module/src/app/frontend/components/stateful/SVGEditor/SVGElementForm.js +16 -0
  391. package/dist/module/src/app/frontend/components/stateful/SVGEditor/SVGPreview.js +141 -0
  392. package/dist/module/src/app/frontend/components/stateful/SVGEditor/SVGTextEditor.js +118 -0
  393. package/dist/module/src/app/frontend/components/stateful/SVGEditor/SVGTree.js +68 -0
  394. package/dist/module/src/app/frontend/components/stateful/SVGEditor/SVGTypes.js +1 -0
  395. package/dist/module/src/app/frontend/components/stateful/SVGEditorPage.js +400 -0
  396. package/dist/module/src/app/frontend/components/stateful/SettingsPage.js +35 -0
  397. package/dist/module/src/app/frontend/components/stateful/SingleProcessPage.js +134 -0
  398. package/dist/module/src/app/frontend/components/stateful/SkriboPage.js +510 -0
  399. package/dist/module/src/app/frontend/components/stateful/TextEditorPage.js +117 -0
  400. package/dist/module/src/app/frontend/fetchDataUtil.js +187 -0
  401. package/dist/module/src/app/frontend/flua/FluaPage.js +341 -0
  402. package/dist/module/src/app/frontend/testPage/ITestPageViewProps.js +1 -0
  403. package/dist/module/src/app/frontend/testPage/ProjectsTree.js +142 -0
  404. package/dist/module/src/app/frontend/testPage/TestPage.js +48 -0
  405. package/dist/module/src/app/frontend/testPage/TestPageLeftContent.js +11 -0
  406. package/dist/module/src/app/frontend/testPage/TestPageMainContent.js +75 -0
  407. package/dist/module/src/app/frontend/testPage/TestPageNavbar.js +26 -0
  408. package/dist/module/src/app/frontend/testPage/TestPageView.js +315 -0
  409. package/dist/module/src/app/frontend/testPage/TestPageView.test/implementation.js +122 -0
  410. package/dist/module/src/app/frontend/testPage/TestPageView.test/index.js +10 -0
  411. package/dist/module/src/app/frontend/testPage/TestPageView.test/specification.js +23 -0
  412. package/dist/module/src/app/frontend/testPage/TestPageView.test/types.js +3 -0
  413. package/dist/module/src/app/frontend/testPage/TestPageView_utils.js +120 -0
  414. package/dist/module/src/app/frontend/useFileSystemSync.js +108 -0
  415. package/dist/module/src/app/frontend/useFs.js +11 -0
  416. package/dist/module/src/app/frontend/useGitMode.js +16 -0
  417. package/dist/module/src/app/frontend/useTerminalWebSocket.js +40 -0
  418. package/dist/module/src/app/frontend/useWebSocket.js +12 -0
  419. package/dist/module/src/app/types.js +1 -0
  420. package/dist/module/src/builders/golang.js +28 -0
  421. package/dist/module/src/builders/node.js +33 -0
  422. package/dist/module/src/builders/python.js +26 -0
  423. package/dist/module/src/builders/web.js +33 -0
  424. package/dist/module/src/defaultConfig.js +17 -0
  425. package/dist/module/src/esbuildConfigs/consoleDetectorPlugin.js +32 -0
  426. package/dist/module/src/esbuildConfigs/eslint-formatter-testeranto.js +18 -0
  427. package/dist/module/src/esbuildConfigs/featuresPlugin.js +34 -0
  428. package/dist/module/src/esbuildConfigs/index.js +19 -0
  429. package/dist/module/src/esbuildConfigs/inputFilesPlugin.js +25 -0
  430. package/dist/module/src/esbuildConfigs/nativeImportDetectorPlugin.js +21 -0
  431. package/dist/module/src/esbuildConfigs/node.js +21 -0
  432. package/dist/module/src/esbuildConfigs/pure.js +37 -0
  433. package/dist/module/src/esbuildConfigs/rebuildPlugin.js +14 -0
  434. package/dist/module/src/esbuildConfigs/web.js +43 -0
  435. package/dist/module/src/init-docs.js +4 -0
  436. package/dist/module/src/lib/BaseGiven.js +172 -0
  437. package/dist/module/src/lib/BaseSuite.js +134 -0
  438. package/dist/module/src/lib/BaseSuite.test/mock.js +61 -0
  439. package/dist/module/src/lib/BaseSuite.test/node.test.js +5 -0
  440. package/dist/module/src/lib/BaseSuite.test/pure.test.js +5 -0
  441. package/dist/module/src/lib/BaseSuite.test/test.js +180 -0
  442. package/dist/module/src/lib/BaseSuite.test/web.test.js +5 -0
  443. package/dist/module/src/lib/BaseThen.js +59 -0
  444. package/dist/module/src/lib/BaseWhen.js +43 -0
  445. package/dist/module/src/lib/Sidecar.js +3 -0
  446. package/dist/module/src/lib/Tiposkripto.js +185 -0
  447. package/dist/module/src/lib/Tiposkripto.test/MockTiposkripto.js +163 -0
  448. package/dist/module/src/lib/Tiposkripto.test/Tiposkripto.adapter.js +26 -0
  449. package/dist/module/src/lib/Tiposkripto.test/Tiposkripto.implementation.js +212 -0
  450. package/dist/module/src/lib/Tiposkripto.test/Tiposkripto.js +6 -0
  451. package/dist/module/src/lib/Tiposkripto.test/Tiposkripto.specification.js +49 -0
  452. package/dist/module/src/lib/Tiposkripto.test/Tiposkripto.types.js +1 -0
  453. package/dist/module/src/lib/abstractBase.test/MockGiven.js +20 -0
  454. package/dist/module/src/lib/abstractBase.test/MockThen.js +12 -0
  455. package/dist/module/src/lib/abstractBase.test/MockWhen.js +16 -0
  456. package/dist/module/src/lib/abstractBase.test/adapter.js +21 -0
  457. package/dist/module/src/lib/abstractBase.test/implementation.js +35 -0
  458. package/dist/module/src/lib/abstractBase.test/index.js +13 -0
  459. package/dist/module/src/lib/abstractBase.test/specification.js +15 -0
  460. package/dist/module/src/lib/abstractBase.test/types.js +1 -0
  461. package/dist/module/src/lib/index.js +26 -0
  462. package/dist/module/src/lib/pmProxy.js +251 -0
  463. package/dist/module/src/lib/pmProxy.test/adapter.js +51 -0
  464. package/dist/module/src/lib/pmProxy.test/implementation.js +127 -0
  465. package/dist/module/src/lib/pmProxy.test/index.js +8 -0
  466. package/dist/module/src/lib/pmProxy.test/mockPM.js +31 -0
  467. package/dist/module/src/lib/pmProxy.test/mockPMBase.js +127 -0
  468. package/dist/module/src/lib/pmProxy.test/specification.js +174 -0
  469. package/dist/module/src/lib/pmProxy.test/types.js +1 -0
  470. package/dist/module/src/lib/types.js +2 -0
  471. package/dist/module/src/mothership/index.js +178 -0
  472. package/dist/module/src/mothership/test.js +80 -0
  473. package/dist/module/src/run.js +49 -0
  474. package/dist/module/src/testeranto.js +185 -0
  475. package/dist/module/src/utils/buildTemplates.js +33 -0
  476. package/dist/module/src/utils/generateGolingvuMetafile.js +151 -0
  477. package/dist/module/src/utils/golingvuMetafile/fileDiscovery.js +136 -0
  478. package/dist/module/src/utils/golingvuMetafile/goList.js +97 -0
  479. package/dist/module/src/utils/golingvuMetafile/helpers.js +59 -0
  480. package/dist/module/src/utils/golingvuMetafile/importParser.js +83 -0
  481. package/dist/module/src/utils/golingvuMetafile/types.js +2 -0
  482. package/dist/module/src/utils/golingvuMetafile.js +6 -0
  483. package/dist/module/src/utils/golingvuWatcher.js +226 -0
  484. package/dist/module/src/utils/logFiles.js +55 -0
  485. package/dist/module/src/utils/pitonoMetafile.js +240 -0
  486. package/dist/module/src/utils/pitonoWatcher.js +123 -0
  487. package/dist/module/src/utils/queue.js +32 -0
  488. package/dist/module/src/utils/writeGolingvuMetafile.js +318 -0
  489. package/dist/module/src/web.html.js +16 -0
  490. package/dist/module/testeranto.config.js +89 -0
  491. package/dist/module/tsconfig.module.tsbuildinfo +1 -0
  492. package/dist/prebuild/App.css +173 -173
  493. package/dist/prebuild/App.js +20450 -46037
  494. package/dist/prebuild/init-docs.mjs +9 -1
  495. package/dist/prebuild/testeranto.mjs +3051 -3418
  496. package/dist/types/design-editor/DesignEditor.d.ts +1 -0
  497. package/dist/types/src/CoreTypes.d.ts +52 -0
  498. package/dist/types/src/Helpo.d.ts +1 -0
  499. package/dist/types/src/Init.d.ts +2 -0
  500. package/dist/types/src/Node.d.ts +9 -0
  501. package/dist/types/src/NodeSidecar.d.ts +6 -0
  502. package/dist/types/src/PM/__tests__/nodeSidecar.testeranto.d.ts +2 -0
  503. package/dist/types/src/PM/__tests__/pureSidecar.testeranto.d.ts +2 -0
  504. package/dist/types/src/PM/__tests__/webSidecar.testeranto.d.ts +2 -0
  505. package/dist/types/src/PM/golingvuBuild.d.ts +11 -0
  506. package/dist/types/src/PM/index.d.ts +35 -0
  507. package/dist/types/src/PM/node.d.ts +38 -0
  508. package/dist/types/src/PM/nodeSidecar.d.ts +13 -0
  509. package/dist/types/src/PM/pitonoBuild.d.ts +11 -0
  510. package/dist/types/src/PM/pitonoRunner.d.ts +7 -0
  511. package/dist/types/src/PM/pure.d.ts +41 -0
  512. package/dist/types/src/PM/pureSidecar.d.ts +11 -0
  513. package/dist/types/src/PM/sidecar.d.ts +8 -0
  514. package/dist/types/src/PM/types.d.ts +118 -0
  515. package/dist/types/src/PM/utils.d.ts +35 -0
  516. package/dist/types/src/PM/web.d.ts +41 -0
  517. package/dist/types/src/PM/webSidecar.d.ts +11 -0
  518. package/dist/types/src/Pure.d.ts +14 -0
  519. package/dist/types/src/Pure.test.d.ts +61 -0
  520. package/dist/types/src/PureSidecar.d.ts +8 -0
  521. package/dist/types/src/Types.d.ts +120 -0
  522. package/dist/types/src/Web.d.ts +9 -0
  523. package/dist/types/src/WebSidecar.d.ts +8 -0
  524. package/dist/types/src/app/FileService.d.ts +37 -0
  525. package/dist/types/src/app/api.d.ts +37 -0
  526. package/dist/types/src/app/backend/PM_0.d.ts +38 -0
  527. package/dist/types/src/app/backend/PM_1_WithProcesses.d.ts +149 -0
  528. package/dist/types/src/app/backend/PM_2_WithTCP.d.ts +29 -0
  529. package/dist/types/src/app/backend/PM_WithBuild.d.ts +8 -0
  530. package/dist/types/src/app/backend/PM_WithEslintAndTsc.d.ts +22 -0
  531. package/dist/types/src/app/backend/PM_WithGit.d.ts +24 -0
  532. package/dist/types/src/app/backend/PM_WithHelpo.d.ts +43 -0
  533. package/dist/types/src/app/backend/PM_WithTCP.d.ts +41 -0
  534. package/dist/types/src/app/backend/getAllFilesRecursively.d.ts +1 -0
  535. package/dist/types/src/app/backend/main.d.ts +15 -0
  536. package/dist/types/src/app/backend/makePrompt.d.ts +2 -0
  537. package/dist/types/src/app/backend/utils.d.ts +20 -0
  538. package/dist/types/src/app/frontend/App.d.ts +14 -0
  539. package/dist/types/src/app/frontend/DevelopmentFileService.d.ts +25 -0
  540. package/dist/types/src/app/frontend/GitFileService.d.ts +27 -0
  541. package/dist/types/src/app/frontend/GitHubAuthService.d.ts +32 -0
  542. package/dist/types/src/app/frontend/api.d.ts +10 -0
  543. package/dist/types/src/app/frontend/components/DesignEditorPage.d.ts +1 -0
  544. package/dist/types/src/app/frontend/components/SunriseAnimation.d.ts +5 -0
  545. package/dist/types/src/app/frontend/components/SunriseAnimation.test/interface.d.ts +11 -0
  546. package/dist/types/src/app/frontend/components/SunriseAnimation.test/types.d.ts +39 -0
  547. package/dist/types/src/app/frontend/components/TestStatusBadge.d.ts +15 -0
  548. package/dist/types/src/app/frontend/components/pure/AppFrame.d.ts +11 -0
  549. package/dist/types/src/app/frontend/components/pure/AppFrame.test/implementation.d.ts +3 -0
  550. package/dist/types/src/app/frontend/components/pure/AppFrame.test/index.d.ts +3 -0
  551. package/dist/types/src/app/frontend/components/pure/AppFrame.test/specification.d.ts +3 -0
  552. package/dist/types/src/app/frontend/components/pure/AppFrame.test/types.d.ts +33 -0
  553. package/dist/types/src/app/frontend/components/pure/BuildLogViewer.d.ts +7 -0
  554. package/dist/types/src/app/frontend/components/pure/DebugEnv.d.ts +2 -0
  555. package/dist/types/src/app/frontend/components/pure/FeaturesReporterView.d.ts +7 -0
  556. package/dist/types/src/app/frontend/components/pure/FeaturesReporterView.test/implementation.d.ts +3 -0
  557. package/dist/types/src/app/frontend/components/pure/FeaturesReporterView.test/index.d.ts +2 -0
  558. package/dist/types/src/app/frontend/components/pure/FeaturesReporterView.test/specification.d.ts +3 -0
  559. package/dist/types/src/app/frontend/components/pure/FeaturesReporterView.test/types.d.ts +54 -0
  560. package/dist/types/src/app/frontend/components/pure/FileTree.d.ts +6 -0
  561. package/dist/types/src/app/frontend/components/pure/FileTreeItem.d.ts +8 -0
  562. package/dist/types/src/app/frontend/components/pure/GitHubLoginButton.d.ts +8 -0
  563. package/dist/types/src/app/frontend/components/pure/GitIntegrationView.d.ts +27 -0
  564. package/dist/types/src/app/frontend/components/pure/HelpoChatDrawer.d.ts +7 -0
  565. package/dist/types/src/app/frontend/components/pure/MagicRobotModal.d.ts +16 -0
  566. package/dist/types/src/app/frontend/components/pure/ModalContent.d.ts +7 -0
  567. package/dist/types/src/app/frontend/components/pure/ModalContent.test/implementation.d.ts +3 -0
  568. package/dist/types/src/app/frontend/components/pure/ModalContent.test/index.d.ts +14 -0
  569. package/dist/types/src/app/frontend/components/pure/ModalContent.test/specification.d.ts +3 -0
  570. package/dist/types/src/app/frontend/components/pure/ModalContent.test/types.d.ts +45 -0
  571. package/dist/types/src/app/frontend/components/pure/NavBar.d.ts +23 -0
  572. package/dist/types/src/app/frontend/components/pure/ProcessDetails.d.ts +8 -0
  573. package/dist/types/src/app/frontend/components/pure/ProcessInput.d.ts +10 -0
  574. package/dist/types/src/app/frontend/components/pure/ProcessList.d.ts +10 -0
  575. package/dist/types/src/app/frontend/components/pure/ProcessLogs.d.ts +6 -0
  576. package/dist/types/src/app/frontend/components/pure/ProcessManager.d.ts +8 -0
  577. package/dist/types/src/app/frontend/components/pure/ProcessManagerView.d.ts +10 -0
  578. package/dist/types/src/app/frontend/components/pure/ProcessManagerViewTypes.d.ts +10 -0
  579. package/dist/types/src/app/frontend/components/pure/ProcessSidebar.d.ts +8 -0
  580. package/dist/types/src/app/frontend/components/pure/ProcessTerminal.d.ts +8 -0
  581. package/dist/types/src/app/frontend/components/pure/ProjectPageView.d.ts +14 -0
  582. package/dist/types/src/app/frontend/components/pure/ProjectPageView.test/implementation.d.ts +3 -0
  583. package/dist/types/src/app/frontend/components/pure/ProjectPageView.test/index.d.ts +17 -0
  584. package/dist/types/src/app/frontend/components/pure/ProjectPageView.test/specification.d.ts +3 -0
  585. package/dist/types/src/app/frontend/components/pure/ProjectPageView.test/types.d.ts +57 -0
  586. package/dist/types/src/app/frontend/components/pure/ProjectsPageView.d.ts +29 -0
  587. package/dist/types/src/app/frontend/components/pure/Settings.d.ts +1 -0
  588. package/dist/types/src/app/frontend/components/pure/SettingsButton.d.ts +2 -0
  589. package/dist/types/src/app/frontend/components/pure/SignIn.d.ts +1 -0
  590. package/dist/types/src/app/frontend/components/pure/TerminalInput.d.ts +6 -0
  591. package/dist/types/src/app/frontend/components/pure/TerminalLogs.d.ts +6 -0
  592. package/dist/types/src/app/frontend/components/pure/TestTable.d.ts +16 -0
  593. package/dist/types/src/app/frontend/components/pure/ThemeCard.d.ts +9 -0
  594. package/dist/types/src/app/frontend/components/pure/ToastNotification.d.ts +6 -0
  595. package/dist/types/src/app/frontend/components/pure/UserProfile.d.ts +2 -0
  596. package/dist/types/src/app/frontend/components/stateful/AuthCallbackPage.d.ts +2 -0
  597. package/dist/types/src/app/frontend/components/stateful/DratoPage.d.ts +8 -0
  598. package/dist/types/src/app/frontend/components/stateful/GenericXMLEditor/AttributeEditor.d.ts +9 -0
  599. package/dist/types/src/app/frontend/components/stateful/GenericXMLEditor/Drawer.d.ts +12 -0
  600. package/dist/types/src/app/frontend/components/stateful/GenericXMLEditor/GenericPreview.d.ts +11 -0
  601. package/dist/types/src/app/frontend/components/stateful/GenericXMLEditor/GenericTextEditor.d.ts +8 -0
  602. package/dist/types/src/app/frontend/components/stateful/GenericXMLEditor/GenericTree.d.ts +17 -0
  603. package/dist/types/src/app/frontend/components/stateful/GenericXMLEditorPage.d.ts +21 -0
  604. package/dist/types/src/app/frontend/components/stateful/GitIntegrationPage.d.ts +1 -0
  605. package/dist/types/src/app/frontend/components/stateful/GrafeoPage.d.ts +8 -0
  606. package/dist/types/src/app/frontend/components/stateful/ProcessManagerPage.d.ts +2 -0
  607. package/dist/types/src/app/frontend/components/stateful/ProjectPage.d.ts +1 -0
  608. package/dist/types/src/app/frontend/components/stateful/ProjectsPage.d.ts +1 -0
  609. package/dist/types/src/app/frontend/components/stateful/SVGEditor/CircleForm.d.ts +8 -0
  610. package/dist/types/src/app/frontend/components/stateful/SVGEditor/GroupForm.d.ts +8 -0
  611. package/dist/types/src/app/frontend/components/stateful/SVGEditor/RectForm.d.ts +8 -0
  612. package/dist/types/src/app/frontend/components/stateful/SVGEditor/SVGAttributeField.d.ts +9 -0
  613. package/dist/types/src/app/frontend/components/stateful/SVGEditor/SVGAttributesEditor.d.ts +9 -0
  614. package/dist/types/src/app/frontend/components/stateful/SVGEditor/SVGEditorControls.d.ts +9 -0
  615. package/dist/types/src/app/frontend/components/stateful/SVGEditor/SVGElementForm.d.ts +9 -0
  616. package/dist/types/src/app/frontend/components/stateful/SVGEditor/SVGPreview.d.ts +12 -0
  617. package/dist/types/src/app/frontend/components/stateful/SVGEditor/SVGTextEditor.d.ts +8 -0
  618. package/dist/types/src/app/frontend/components/stateful/SVGEditor/SVGTree.d.ts +20 -0
  619. package/dist/types/src/app/frontend/components/stateful/SVGEditor/SVGTypes.d.ts +30 -0
  620. package/dist/types/src/app/frontend/components/stateful/SVGEditorPage.d.ts +7 -0
  621. package/dist/types/src/app/frontend/components/stateful/SettingsPage.d.ts +2 -0
  622. package/dist/types/src/app/frontend/components/stateful/SkriboPage.d.ts +1 -0
  623. package/dist/types/src/app/frontend/components/stateful/TextEditorPage.d.ts +1 -0
  624. package/dist/types/src/app/frontend/flua/FluaPage.d.ts +2 -0
  625. package/dist/types/src/app/frontend/testPage/ITestPageViewProps.d.ts +14 -0
  626. package/dist/types/src/app/frontend/testPage/ProjectsTree.d.ts +17 -0
  627. package/dist/types/src/app/frontend/testPage/TestPage.d.ts +1 -0
  628. package/dist/types/src/app/frontend/testPage/TestPageLeftContent.d.ts +14 -0
  629. package/dist/types/src/app/frontend/testPage/TestPageMainContent.d.ts +7 -0
  630. package/dist/types/src/app/frontend/testPage/TestPageNavbar.d.ts +7 -0
  631. package/dist/types/src/app/frontend/testPage/TestPageView.d.ts +2 -0
  632. package/dist/types/src/app/frontend/testPage/TestPageView.test/implementation.d.ts +13 -0
  633. package/dist/types/src/app/frontend/testPage/TestPageView.test/index.d.ts +13 -0
  634. package/dist/types/src/app/frontend/testPage/TestPageView.test/specification.d.ts +11 -0
  635. package/dist/types/src/app/frontend/testPage/TestPageView.test/types.d.ts +65 -0
  636. package/dist/types/src/app/frontend/testPage/TestPageView_utils.d.ts +23 -0
  637. package/dist/types/src/app/frontend/useFs.d.ts +2 -0
  638. package/dist/types/src/app/frontend/useGitMode.d.ts +7 -0
  639. package/dist/types/src/app/frontend/useTerminalWebSocket.d.ts +4 -0
  640. package/dist/types/src/app/frontend/useWebSocket.d.ts +8 -0
  641. package/dist/types/src/app/types.d.ts +1 -0
  642. package/dist/types/src/builders/golang.d.ts +1 -0
  643. package/dist/types/src/builders/node.d.ts +1 -0
  644. package/dist/types/src/builders/python.d.ts +1 -0
  645. package/dist/types/src/builders/web.d.ts +1 -0
  646. package/dist/types/src/defaultConfig.d.ts +3 -0
  647. package/dist/types/src/esbuildConfigs/consoleDetectorPlugin.d.ts +2 -0
  648. package/dist/types/src/esbuildConfigs/eslint-formatter-testeranto.d.ts +2 -0
  649. package/dist/types/src/esbuildConfigs/featuresPlugin.d.ts +5 -0
  650. package/dist/types/src/esbuildConfigs/index.d.ts +4 -0
  651. package/dist/types/src/esbuildConfigs/inputFilesPlugin.d.ts +7 -0
  652. package/dist/types/src/esbuildConfigs/nativeImportDetectorPlugin.d.ts +2 -0
  653. package/dist/types/src/esbuildConfigs/node.d.ts +4 -0
  654. package/dist/types/src/esbuildConfigs/pure.d.ts +4 -0
  655. package/dist/types/src/esbuildConfigs/rebuildPlugin.d.ts +6 -0
  656. package/dist/types/src/esbuildConfigs/web.d.ts +4 -0
  657. package/dist/types/src/init-docs.d.ts +1 -0
  658. package/dist/types/src/lib/BaseGiven.d.ts +44 -0
  659. package/dist/types/src/lib/BaseSuite.d.ts +47 -0
  660. package/dist/types/src/lib/BaseSuite.test/mock.d.ts +21 -0
  661. package/dist/types/src/lib/BaseSuite.test/node.test.d.ts +2 -0
  662. package/dist/types/src/lib/BaseSuite.test/pure.test.d.ts +3 -0
  663. package/dist/types/src/lib/BaseSuite.test/test.d.ts +37 -0
  664. package/dist/types/src/lib/BaseSuite.test/web.test.d.ts +3 -0
  665. package/dist/types/src/lib/BaseThen.d.ts +29 -0
  666. package/dist/types/src/lib/BaseWhen.d.ts +29 -0
  667. package/dist/types/src/lib/Sidecar.d.ts +5 -0
  668. package/dist/types/src/lib/Tiposkripto.d.ts +37 -0
  669. package/dist/types/src/lib/Tiposkripto.test/MockTiposkripto.d.ts +18 -0
  670. package/dist/types/src/lib/Tiposkripto.test/Tiposkripto.adapter.d.ts +3 -0
  671. package/dist/types/src/lib/Tiposkripto.test/Tiposkripto.d.ts +2 -0
  672. package/dist/types/src/lib/Tiposkripto.test/Tiposkripto.implementation.d.ts +3 -0
  673. package/dist/types/src/lib/Tiposkripto.test/Tiposkripto.specification.d.ts +3 -0
  674. package/dist/types/src/lib/Tiposkripto.test/Tiposkripto.types.d.ts +58 -0
  675. package/dist/types/src/lib/abstractBase.test/MockGiven.d.ts +9 -0
  676. package/dist/types/src/lib/abstractBase.test/MockThen.d.ts +6 -0
  677. package/dist/types/src/lib/abstractBase.test/MockWhen.d.ts +6 -0
  678. package/dist/types/src/lib/abstractBase.test/adapter.d.ts +3 -0
  679. package/dist/types/src/lib/abstractBase.test/implementation.d.ts +3 -0
  680. package/dist/types/src/lib/abstractBase.test/index.d.ts +2 -0
  681. package/dist/types/src/lib/abstractBase.test/specification.d.ts +3 -0
  682. package/dist/types/src/lib/abstractBase.test/types.d.ts +39 -0
  683. package/dist/types/src/lib/index.d.ts +73 -0
  684. package/dist/types/src/lib/pmProxy.d.ts +12 -0
  685. package/dist/types/src/lib/pmProxy.test/adapter.d.ts +3 -0
  686. package/dist/types/src/lib/pmProxy.test/implementation.d.ts +3 -0
  687. package/dist/types/src/lib/pmProxy.test/index.d.ts +6 -0
  688. package/dist/types/src/lib/pmProxy.test/mockPM.d.ts +10 -0
  689. package/dist/types/src/lib/pmProxy.test/mockPMBase.d.ts +40 -0
  690. package/dist/types/src/lib/pmProxy.test/specification.d.ts +3 -0
  691. package/dist/types/src/lib/pmProxy.test/types.d.ts +42 -0
  692. package/dist/types/src/lib/types.d.ts +24 -0
  693. package/dist/types/src/mothership/index.d.ts +2 -0
  694. package/dist/types/src/mothership/test.d.ts +2 -0
  695. package/dist/types/src/testeranto.d.ts +1 -0
  696. package/dist/types/src/utils/buildTemplates.d.ts +1 -0
  697. package/dist/types/src/utils/generateGolingvuMetafile.d.ts +2 -0
  698. package/dist/types/src/utils/golingvuMetafile/fileDiscovery.d.ts +1 -0
  699. package/dist/types/src/utils/golingvuMetafile/goList.d.ts +2 -0
  700. package/dist/types/src/utils/golingvuMetafile/helpers.d.ts +7 -0
  701. package/dist/types/src/utils/golingvuMetafile/importParser.d.ts +5 -0
  702. package/dist/types/src/utils/golingvuMetafile/types.d.ts +66 -0
  703. package/dist/types/src/utils/golingvuMetafile.d.ts +4 -0
  704. package/dist/types/src/utils/golingvuWatcher.d.ts +14 -0
  705. package/dist/types/src/utils/logFiles.d.ts +103 -0
  706. package/dist/types/src/utils/pitonoMetafile.d.ts +22 -0
  707. package/dist/types/src/utils/pitonoWatcher.d.ts +13 -0
  708. package/dist/types/src/utils/queue.d.ts +11 -0
  709. package/dist/types/src/utils/writeGolingvuMetafile.d.ts +2 -0
  710. package/dist/types/src/web.html.d.ts +2 -0
  711. package/dist/types/tsconfig.types.tsbuildinfo +1 -0
  712. package/docker-compose.yml +74 -0
  713. package/docs/testing.prompt.txt +5 -1
  714. package/example/Calculator.go +64 -28
  715. package/example/Calculator.golingvu.implementation.go +51 -2
  716. package/example/Calculator.golingvu.test.go +216 -0
  717. package/example/Calculator.pitono.test.py +112 -27
  718. package/example/Calculator.test.adapter.ts +9 -49
  719. package/example/Calculator.test.implementation.ts +1 -28
  720. package/example/Calculator.ts +2 -18
  721. package/example/__pycache__/Calculator.cpython-313.pyc +0 -0
  722. package/example/go.mod +1 -3
  723. package/example/go.sum +2 -0
  724. package/example/requirements.txt +9 -0
  725. package/example/single-kanban-process.xml +9 -0
  726. package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/LICENSE +21 -0
  727. package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/README.md +187 -0
  728. package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/base_given.go +163 -0
  729. package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/base_suite.go +85 -0
  730. package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/base_then.go +21 -0
  731. package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/base_when.go +21 -0
  732. package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/golingvu.go +889 -0
  733. package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/test_adapter.go +33 -0
  734. package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/types.go +72 -0
  735. package/example/vendor/modules.txt +4 -0
  736. package/go.mod +4 -1
  737. package/go.sum +2 -0
  738. package/log.txt +36 -82
  739. package/package.json +16 -8
  740. package/scripts/build-example.ts +65 -204
  741. package/src/Init.ts +9 -1
  742. package/src/Node.ts +0 -1
  743. package/src/NodeSidecar.ts +0 -8
  744. package/src/PM/__tests__/nodeSidecar.testeranto.ts +4 -1
  745. package/src/PM/types.ts +1 -0
  746. package/src/PM/web.ts +8 -24
  747. package/src/Pure.test.ts +18 -9
  748. package/src/Pure.ts +1 -16
  749. package/src/Types.ts +1 -0
  750. package/src/Web.ts +2 -38
  751. package/src/WebSidecar.ts +1 -1
  752. package/src/app/FileService.ts +91 -0
  753. package/src/app/api.ts +75 -0
  754. package/src/app/backend/PM_0.ts +392 -0
  755. package/src/app/backend/PM_1_WithProcesses.ts +1186 -0
  756. package/src/app/backend/PM_2_WithTCP.ts +283 -0
  757. package/src/app/backend/PM_WithBuild.ts +148 -0
  758. package/src/app/backend/PM_WithEslintAndTsc.ts +194 -0
  759. package/src/app/backend/PM_WithGit.ts +662 -0
  760. package/src/app/backend/PM_WithHelpo.ts +340 -0
  761. package/src/app/backend/PM_WithProcesses.ts +1247 -0
  762. package/src/app/backend/PM_WithTCP.ts +777 -0
  763. package/src/app/backend/getAllFilesRecursively.ts +17 -0
  764. package/src/app/backend/main.ts +1011 -0
  765. package/src/app/backend/makePrompt.ts +92 -0
  766. package/src/app/backend/utils.ts +202 -0
  767. package/src/app/frontend/App.tsx +242 -0
  768. package/src/app/frontend/DevelopmentFileService.ts +117 -0
  769. package/src/app/frontend/GitFileService.ts +285 -0
  770. package/src/app/frontend/GitHubAuthService.ts +241 -0
  771. package/src/app/frontend/api.ts +108 -0
  772. package/src/app/frontend/app.scss +119 -0
  773. package/src/app/frontend/components/DesignEditorPage.tsx +210 -0
  774. package/src/app/frontend/components/SunriseAnimation.test/interface.ts +50 -0
  775. package/src/app/frontend/components/SunriseAnimation.test/types.ts +53 -0
  776. package/src/app/frontend/components/SunriseAnimation.tsx +350 -0
  777. package/src/app/frontend/components/pure/AppFrame.tsx +445 -0
  778. package/src/app/frontend/components/pure/FeaturesReporterView.tsx +38 -0
  779. package/src/app/frontend/components/pure/GitHubLoginButton.tsx +32 -0
  780. package/src/app/frontend/components/pure/GitIntegrationView.tsx +727 -0
  781. package/src/app/frontend/components/pure/HelpoChatDrawer.tsx +223 -0
  782. package/src/app/frontend/components/pure/MagicRobotModal.tsx +135 -0
  783. package/src/app/frontend/components/pure/ModalContent.test/index.tsx +68 -0
  784. package/src/app/frontend/components/pure/NavBar.tsx +119 -0
  785. package/src/app/frontend/components/pure/ProcessManagerView.tsx +89 -0
  786. package/src/app/frontend/components/pure/ProcessTerminal.tsx +55 -0
  787. package/src/app/frontend/components/pure/ProjectPageView.test/implementation.tsx +216 -0
  788. package/src/app/frontend/components/pure/ProjectPageView.tsx +165 -0
  789. package/src/app/frontend/components/pure/Settings.test.tsx +34 -0
  790. package/src/app/frontend/components/pure/Settings.tsx +171 -0
  791. package/src/app/frontend/components/pure/SignIn.tsx +33 -0
  792. package/src/app/frontend/components/stateful/FeaturesReporter.tsx +27 -0
  793. package/src/app/frontend/components/stateful/GenericXMLEditor/AttributeEditor.tsx +105 -0
  794. package/src/app/frontend/components/stateful/GenericXMLEditor/GenericPreview.tsx +234 -0
  795. package/src/app/frontend/components/stateful/GenericXMLEditor/GenericTextEditor.tsx +173 -0
  796. package/src/app/frontend/components/stateful/GenericXMLEditor/GenericTree.tsx +105 -0
  797. package/src/app/frontend/components/stateful/GenericXMLEditorPage.tsx +455 -0
  798. package/src/app/frontend/components/stateful/GitIntegrationPage.tsx +256 -0
  799. package/src/app/frontend/components/stateful/ProcessManagerPage.tsx +110 -0
  800. package/src/app/frontend/components/stateful/ProjectPage.tsx +94 -0
  801. package/src/app/frontend/components/stateful/ProjectsPage.tsx +129 -0
  802. package/src/app/frontend/components/stateful/SkriboPage.tsx +577 -0
  803. package/src/app/frontend/fetchDataUtil.ts +206 -0
  804. package/src/app/frontend/flua/FluaPage.tsx +458 -0
  805. package/src/app/frontend/flua/agile.xsd +32 -0
  806. package/src/app/frontend/flua/core.xsd +42 -0
  807. package/src/app/frontend/flua/kanban.xsd +21 -0
  808. package/src/app/frontend/flua/scrum.xsd +35 -0
  809. package/src/app/frontend/testPage/ITestPageViewProps.ts +14 -0
  810. package/src/app/frontend/testPage/ProjectsTree.tsx +329 -0
  811. package/src/app/frontend/testPage/TestPage.tsx +75 -0
  812. package/src/app/frontend/testPage/TestPageLeftContent.tsx +54 -0
  813. package/src/app/frontend/testPage/TestPageMainContent.tsx +181 -0
  814. package/src/app/frontend/testPage/TestPageNavbar.tsx +52 -0
  815. package/src/app/frontend/testPage/TestPageView.test/implementation.ts +209 -0
  816. package/src/app/frontend/testPage/TestPageView.test/index.tsx +22 -0
  817. package/src/app/frontend/testPage/TestPageView.test/specification.ts +60 -0
  818. package/src/app/frontend/testPage/TestPageView.test/types.ts +92 -0
  819. package/src/app/frontend/testPage/TestPageView.tsx +481 -0
  820. package/src/app/frontend/testPage/TestPageView_utils.tsx +301 -0
  821. package/src/app/frontend/testPage/index.md +14 -0
  822. package/src/app/frontend/useFileSystemSync.ts +117 -0
  823. package/src/app/frontend/useFs.ts +16 -0
  824. package/src/app/frontend/useGitMode.ts +21 -0
  825. package/src/app/frontend/useTerminalWebSocket.ts +56 -0
  826. package/src/app/frontend/useWebSocket.ts +20 -0
  827. package/src/app/trash +1697 -0
  828. package/src/app/types.ts +1 -0
  829. package/src/builders/golang.ts +29 -0
  830. package/src/builders/node.ts +34 -0
  831. package/src/builders/python.ts +28 -0
  832. package/src/builders/web.ts +34 -0
  833. package/src/cjs-shim.js +2 -0
  834. package/src/golingvu/PM/golang_test.go +88 -88
  835. package/src/golingvu/base_given.go +27 -28
  836. package/src/golingvu/base_suite.go +20 -20
  837. package/src/golingvu/base_then.go +2 -2
  838. package/src/golingvu/base_when.go +2 -2
  839. package/src/golingvu/golingvu.go +124 -147
  840. package/src/graphml.xsd +345 -0
  841. package/src/lib/BaseGiven.ts +71 -95
  842. package/src/lib/BaseSuite.test/test.ts +7 -12
  843. package/src/lib/BaseSuite.ts +24 -16
  844. package/src/lib/BaseThen.ts +7 -4
  845. package/src/lib/BaseWhen.ts +4 -12
  846. package/src/lib/Tiposkripto.test/MockTiposkripto.ts +59 -63
  847. package/src/lib/Tiposkripto.test/Tiposkripto.implementation.ts +33 -20
  848. package/src/lib/Tiposkripto.ts +1 -19
  849. package/src/lib/pmProxy.test/implementation.ts +112 -117
  850. package/src/lib/pmProxy.test/index.ts +2 -2
  851. package/src/lib/pmProxy.test/mockPM.ts +1 -0
  852. package/src/lib/pmProxy.test/mockPMBase.ts +1 -1
  853. package/src/lib/pmProxy.test/specification.ts +0 -2
  854. package/src/lib/pmProxy.test/types.ts +1 -0
  855. package/src/lib/pmProxy.ts +0 -74
  856. package/src/mothership/index.ts +197 -2
  857. package/src/mothership/test.ts +5 -5
  858. package/src/pitono/PM/__pycache__/python.cpython-313.pyc +0 -0
  859. package/src/pitono/PM/python.py +3 -0
  860. package/src/pitono/Pitono.py +166 -20
  861. package/src/pitono/__pycache__/Pitono.cpython-313.pyc +0 -0
  862. package/src/pitono/__pycache__/__init__.cpython-313.pyc +0 -0
  863. package/src/pitono/__pycache__/base_given.cpython-313.pyc +0 -0
  864. package/src/pitono/__pycache__/base_suite.cpython-313.pyc +0 -0
  865. package/src/pitono/__pycache__/base_then.cpython-313.pyc +0 -0
  866. package/src/pitono/__pycache__/base_when.cpython-313.pyc +0 -0
  867. package/src/pitono/__pycache__/core_generator.cpython-313.pyc +0 -0
  868. package/src/pitono/__pycache__/simple_adapter.cpython-313.pyc +0 -0
  869. package/src/pitono/__pycache__/types.cpython-313.pyc +0 -0
  870. package/src/pitono/base_given.py +35 -10
  871. package/src/pitono/base_suite.py +2 -1
  872. package/src/pitono/base_then.py +5 -4
  873. package/src/pitono/base_when.py +4 -3
  874. package/src/style.scss +261 -2
  875. package/src/testeranto.ts +6 -5
  876. package/src/utils/generateGolingvuMetafile.ts +196 -0
  877. package/src/utils/golingvuMetafile/fileDiscovery.ts +157 -0
  878. package/src/utils/golingvuMetafile/goList.ts +106 -0
  879. package/src/utils/golingvuMetafile/helpers.ts +65 -0
  880. package/src/utils/golingvuMetafile/importParser.ts +97 -0
  881. package/src/utils/golingvuMetafile/types.ts +78 -0
  882. package/src/utils/golingvuMetafile.ts +4 -865
  883. package/src/utils/golingvuWatcher.ts +35 -40
  884. package/src/utils/pitonoMetafile.ts +205 -207
  885. package/src/utils/pitonoWatcher.ts +2 -9
  886. package/src/utils/writeGolingvuMetafile.ts +386 -0
  887. package/testeranto/App.css +173 -173
  888. package/testeranto/App.js +20428 -46026
  889. package/testeranto/bundles/golang/core/example/Calculator.golingvu.test +58 -0
  890. package/testeranto/bundles/node/core/example/Calculator.test.mjs +5862 -0
  891. package/testeranto/bundles/python/core/Calculator.pitono.test.py +24 -0
  892. package/testeranto/metafiles/golang/core.json +126 -26
  893. package/testeranto/metafiles/node/core.json +43 -550
  894. package/testeranto/metafiles/python/core.json +4 -39
  895. package/testeranto/reports/core/config.json +1 -81
  896. package/testeranto/reports/core/example/Calculator.golingvu.test/golang/stderr.log +7 -0
  897. package/testeranto/reports/core/example/Calculator.pitono.test/python/exit.log +1 -1
  898. package/testeranto/reports/core/example/Calculator.pitono.test/python/prompt.txt +13 -0
  899. package/testeranto/reports/core/example/Calculator.pitono.test/python/stderr.log +0 -11
  900. package/testeranto/reports/core/example/Calculator.pitono.test/python/stdout.log +26 -1
  901. package/testeranto/reports/core/example/Calculator.pitono.test/python/tests.json +255 -0
  902. package/testeranto/reports/core/example/Calculator.test/node/lint_errors.txt +2 -2
  903. package/testeranto/reports/core/example/Calculator.test/node/stderr.log +562 -29
  904. package/testeranto/reports/core/example/Calculator.test/node/stdout.log +0 -1076
  905. package/testeranto/reports/core/example/Calculator.test/node/tests.json +133 -79
  906. package/testeranto/reports/core/example/Calculator.test/node/type_errors.txt +16 -24
  907. package/testeranto/reports/core/summary.json +2 -69
  908. package/testeranto.config.ts +28 -26
  909. package/tsc.log +305 -370
  910. package/example/Calculator.golingvu.go +0 -67
  911. package/example/base_suite_test.go +0 -51
  912. package/example/cmd/main.go +0 -16
  913. package/example/main +0 -0
  914. package/example/testeranto/bundles/golang/core/Calculator.golingvu.go +0 -53
  915. package/example/testeranto/metafiles/golang/core.json +0 -198
  916. package/src/App.tsx +0 -278
  917. package/src/PM/PM_WithBuild.ts +0 -183
  918. package/src/PM/PM_WithEslintAndTsc.ts +0 -279
  919. package/src/PM/PM_WithGit.ts +0 -632
  920. package/src/PM/PM_WithHelpo.ts +0 -341
  921. package/src/PM/PM_WithProcesses.ts +0 -900
  922. package/src/PM/PM_WithWebSocket.ts +0 -839
  923. package/src/PM/base.ts +0 -390
  924. package/src/PM/main.ts +0 -981
  925. package/src/ReportServer.test.ts/index.ts +0 -194
  926. package/src/app.scss +0 -121
  927. package/src/components/DesignEditorPage.tsx +0 -202
  928. package/src/components/SunriseAnimation.test/interface.ts +0 -49
  929. package/src/components/SunriseAnimation.test/types.ts +0 -53
  930. package/src/components/SunriseAnimation.tsx +0 -350
  931. package/src/components/pure/AppFrame.tsx +0 -410
  932. package/src/components/pure/FeaturesReporterView.tsx +0 -37
  933. package/src/components/pure/GitHubLoginButton.tsx +0 -31
  934. package/src/components/pure/GitIntegrationView.tsx +0 -732
  935. package/src/components/pure/HelpoChatDrawer.tsx +0 -222
  936. package/src/components/pure/MagicRobotModal.tsx +0 -136
  937. package/src/components/pure/ModalContent.test/index.tsx +0 -67
  938. package/src/components/pure/NavBar.tsx +0 -118
  939. package/src/components/pure/ProcessManagerView.tsx +0 -85
  940. package/src/components/pure/ProcessTerminal.tsx +0 -51
  941. package/src/components/pure/ProjectPageView.test/implementation.tsx +0 -213
  942. package/src/components/pure/ProjectPageView.tsx +0 -148
  943. package/src/components/pure/Settings.test.tsx +0 -34
  944. package/src/components/pure/Settings.tsx +0 -163
  945. package/src/components/pure/SignIn.tsx +0 -33
  946. package/src/components/pure/TestPageView.test/implementation.ts +0 -162
  947. package/src/components/pure/TestPageView.test/index.tsx +0 -20
  948. package/src/components/pure/TestPageView.test/specification.ts +0 -59
  949. package/src/components/pure/TestPageView.test/types.ts +0 -92
  950. package/src/components/pure/TestPageView.tsx +0 -611
  951. package/src/components/pure/TestPageView_utils.tsx +0 -287
  952. package/src/components/stateful/FeaturesReporter.tsx +0 -26
  953. package/src/components/stateful/GenericXMLEditor/AttributeEditor.tsx +0 -87
  954. package/src/components/stateful/GenericXMLEditor/GenericPreview.tsx +0 -160
  955. package/src/components/stateful/GenericXMLEditor/GenericTextEditor.tsx +0 -104
  956. package/src/components/stateful/GenericXMLEditor/GenericTree.tsx +0 -104
  957. package/src/components/stateful/GenericXMLEditorPage.tsx +0 -346
  958. package/src/components/stateful/GitIntegrationPage.tsx +0 -263
  959. package/src/components/stateful/ProcessManagerPage.tsx +0 -104
  960. package/src/components/stateful/ProjectPage.tsx +0 -86
  961. package/src/components/stateful/ProjectsPage.tsx +0 -100
  962. package/src/components/stateful/SkriboPage.tsx +0 -765
  963. package/src/components/stateful/TestPage.tsx +0 -269
  964. package/src/example/go.mod +0 -9
  965. package/src/example/main.go +0 -61
  966. package/src/hooks/useGitMode.ts +0 -20
  967. package/src/hooks/useTerminalWebSocket.ts +0 -49
  968. package/src/services/FileService.ts +0 -677
  969. package/src/services/GitHubAuthService.ts +0 -240
  970. package/src/types/features.ts +0 -38
  971. package/src/utils/api.ts +0 -108
  972. package/src/utils/featureUtils.tsx +0 -42
  973. package/src/utils/gitTest.ts +0 -29
  974. package/src/utils/makePrompt.ts +0 -160
  975. package/src/utils.ts +0 -202
  976. package/stargazers.txt +0 -15
  977. package/testeranto/bundles/node/core/chunk-MJTSYIAQ.mjs +0 -1099
  978. package/testeranto/bundles/node/core/src/lib/BaseSuite.test/node.test.mjs +0 -318
  979. package/testeranto/bundles/node/core/src/lib/TipoSkripto.test/TipoSkripto.mjs +0 -572
  980. package/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs +0 -4795
  981. package/testeranto/bundles/pure/core/chunk-6HR24P27.mjs +0 -1003
  982. package/testeranto/bundles/pure/core/src/Pure.test.mjs +0 -410
  983. package/testeranto/bundles/pure/core/src/lib/BaseSuite.test/pure.test.mjs +0 -318
  984. package/testeranto/bundles/web/core/MPLUSRounded1c-Black-O75GP5JI.ttf +0 -0
  985. package/testeranto/bundles/web/core/MPLUSRounded1c-Bold-R524Q5BH.ttf +0 -0
  986. package/testeranto/bundles/web/core/MPLUSRounded1c-ExtraBold-C6GRMYVT.ttf +0 -0
  987. package/testeranto/bundles/web/core/MPLUSRounded1c-Light-WKN65Y2C.ttf +0 -0
  988. package/testeranto/bundles/web/core/MPLUSRounded1c-Medium-ZC4DWL7C.ttf +0 -0
  989. package/testeranto/bundles/web/core/MPLUSRounded1c-Regular-DT6EKZ3S.ttf +0 -0
  990. package/testeranto/bundles/web/core/MPLUSRounded1c-Thin-YWDNVG6M.ttf +0 -0
  991. package/testeranto/bundles/web/core/chunk-AZZHJNSU.mjs +0 -30278
  992. package/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs +0 -3005
  993. package/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.html +0 -15
  994. package/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs +0 -162
  995. package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.css +0 -11619
  996. package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.html +0 -15
  997. package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs +0 -6924
  998. package/testeranto/bundles/web/core/src/lib/BaseSuite.test/web.test.html +0 -15
  999. package/testeranto/bundles/web/core/src/lib/BaseSuite.test/web.test.mjs +0 -333
  1000. package/testeranto/metafiles/pure/core.json +0 -719
  1001. package/testeranto/metafiles/web/core.json +0 -17007
  1002. package/testeranto/reports/core/example/Calculator.golingvu/golang/stderr.log +0 -2
  1003. package/testeranto/reports/core/example/Calculator.golingvu/golang/stdout.log +0 -1
  1004. package/testeranto/reports/core/example/test_example/python/exit.log +0 -1
  1005. package/testeranto/reports/core/example/test_example/python/stderr.log +0 -24
  1006. package/testeranto/reports/core/src/Pure.test/pure/prompt.txt +0 -13
  1007. package/testeranto/reports/core/src/Pure.test/pure/type_errors.txt +0 -86
  1008. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/message.txt +0 -17
  1009. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/prompt.txt +0 -26
  1010. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/type_errors.txt +0 -69
  1011. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/lint_errors.txt +0 -16
  1012. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/message.txt +0 -17
  1013. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/prompt.txt +0 -27
  1014. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/type_errors.txt +0 -42
  1015. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/debug.log +0 -0
  1016. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/error.log +0 -0
  1017. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/exit.log +0 -0
  1018. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/info.log +0 -0
  1019. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +0 -30
  1020. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/message.txt +0 -17
  1021. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/prompt.txt +0 -30
  1022. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +0 -58
  1023. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/warn.log +0 -0
  1024. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/exit.log +0 -1
  1025. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/lint_errors.txt +0 -0
  1026. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/message.txt +0 -17
  1027. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/prompt.txt +0 -23
  1028. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/stderr.log +0 -1
  1029. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/stdout.log +0 -4
  1030. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/tests.json +0 -120
  1031. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/type_errors.txt +0 -69
  1032. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/exit.log +0 -0
  1033. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/lint_errors.txt +0 -0
  1034. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/message.txt +0 -16
  1035. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/prompt.txt +0 -13
  1036. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +0 -74
  1037. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/debug.log +0 -0
  1038. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/error.log +0 -0
  1039. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/exit.log +0 -0
  1040. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/info.log +0 -0
  1041. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/lint_errors.txt +0 -0
  1042. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/message.txt +0 -17
  1043. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/prompt.txt +0 -25
  1044. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/type_errors.txt +0 -69
  1045. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/warn.log +0 -0
  1046. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/exit.log +0 -1
  1047. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/lint_errors.txt +0 -0
  1048. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/message.txt +0 -16
  1049. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/prompt.txt +0 -13
  1050. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/stderr.log +0 -88
  1051. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/stdout.log +0 -521
  1052. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/tests.json +0 -166
  1053. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/type_errors.txt +0 -78
  1054. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/exit.log +0 -1
  1055. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/lint_errors.txt +0 -15
  1056. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/message.txt +0 -17
  1057. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/prompt.txt +0 -25
  1058. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stderr.log +0 -0
  1059. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stdout.log +0 -2
  1060. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/tests.json +0 -31
  1061. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/type_errors.txt +0 -62
  1062. package/testeranto.ts-0.0.1.tgz +0 -0
  1063. package/type-fix.txt +0 -2
  1064. /package/{src/ReportServer.ts → build-go.sh} +0 -0
  1065. /package/{src/ReportServerLib.ts → dist/types/src/app/backend/PM_WithProcesses.d.ts} +0 -0
  1066. /package/{src/components/SunriseAnimation.test/implementation.ts → dist/types/src/app/frontend/components/SunriseAnimation.test/implementation.d.ts} +0 -0
  1067. /package/{src/components/SunriseAnimation.test/index.ts → dist/types/src/app/frontend/components/SunriseAnimation.test/index.d.ts} +0 -0
  1068. /package/{src/components/SunriseAnimation.test/specification.ts → dist/types/src/app/frontend/components/SunriseAnimation.test/specification.d.ts} +0 -0
  1069. /package/{testeranto/reports/core/example/test_example/python/stdout.log → dist/types/src/app/frontend/components/pure/ArtifactTree.d.ts} +0 -0
  1070. /package/{testeranto/reports/core/src/Pure.test/pure/exit.log → dist/types/src/app/frontend/components/pure/Settings.test.d.ts} +0 -0
  1071. /package/{testeranto/reports/core/src/Pure.test/pure/lint_errors.txt → dist/types/src/app/frontend/components/pure/SingleProcessView.d.ts} +0 -0
  1072. /package/{testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/debug.log → dist/types/src/app/frontend/components/stateful/FeaturesReporter.d.ts} +0 -0
  1073. /package/{testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/error.log → dist/types/src/app/frontend/components/stateful/FileTree.d.ts} +0 -0
  1074. /package/{testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/exit.log → dist/types/src/app/frontend/components/stateful/SingleProcessPage.d.ts} +0 -0
  1075. /package/{testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/info.log → dist/types/src/app/frontend/fetchDataUtil.d.ts} +0 -0
  1076. /package/{testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/lint_errors.txt → dist/types/src/app/frontend/useFileSystemSync.d.ts} +0 -0
  1077. /package/{testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/warn.log → dist/types/src/run.d.ts} +0 -0
  1078. /package/{testeranto/reports/core/src/components/pure/ModalContent.test/index/web/debug.log → docker.md} +0 -0
  1079. /package/{testeranto/reports/core/src/components/pure/ModalContent.test/index/web/error.log → src/app/frontend/components/SunriseAnimation.test/implementation.ts} +0 -0
  1080. /package/{testeranto/reports/core/src/components/pure/ModalContent.test/index/web/exit.log → src/app/frontend/components/SunriseAnimation.test/index.ts} +0 -0
  1081. /package/src/{components → app/frontend/components}/SunriseAnimation.test/index.tsx +0 -0
  1082. /package/{testeranto/reports/core/src/components/pure/ModalContent.test/index/web/info.log → src/app/frontend/components/SunriseAnimation.test/specification.ts} +0 -0
  1083. /package/src/{components → app/frontend/components}/TestStatusBadge.tsx +0 -0
  1084. /package/src/{components → app/frontend/components}/pure/AppFrame.test/implementation.tsx +0 -0
  1085. /package/src/{components → app/frontend/components}/pure/AppFrame.test/index.tsx +0 -0
  1086. /package/src/{components → app/frontend/components}/pure/AppFrame.test/specification.ts +0 -0
  1087. /package/src/{components → app/frontend/components}/pure/AppFrame.test/types.ts +0 -0
  1088. /package/src/{components → app/frontend/components}/pure/ArtifactTree.tsx +0 -0
  1089. /package/src/{components → app/frontend/components}/pure/BuildLogViewer.tsx +0 -0
  1090. /package/src/{components → app/frontend/components}/pure/DebugEnv.tsx +0 -0
  1091. /package/src/{components → app/frontend/components}/pure/FeaturesReporterView.test/implementation.tsx +0 -0
  1092. /package/src/{components → app/frontend/components}/pure/FeaturesReporterView.test/index.tsx +0 -0
  1093. /package/src/{components → app/frontend/components}/pure/FeaturesReporterView.test/specification.ts +0 -0
  1094. /package/src/{components → app/frontend/components}/pure/FeaturesReporterView.test/types.ts +0 -0
  1095. /package/src/{components → app/frontend/components}/pure/FileTree.tsx +0 -0
  1096. /package/src/{components → app/frontend/components}/pure/FileTreeItem.tsx +0 -0
  1097. /package/src/{components → app/frontend/components}/pure/ModalContent.test/implementation.tsx +0 -0
  1098. /package/src/{components → app/frontend/components}/pure/ModalContent.test/specification.ts +0 -0
  1099. /package/src/{components → app/frontend/components}/pure/ModalContent.test/types.ts +0 -0
  1100. /package/src/{components → app/frontend/components}/pure/ModalContent.tsx +0 -0
  1101. /package/src/{components → app/frontend/components}/pure/ProcessDetails.tsx +0 -0
  1102. /package/src/{components → app/frontend/components}/pure/ProcessInput.tsx +0 -0
  1103. /package/src/{components → app/frontend/components}/pure/ProcessList.tsx +0 -0
  1104. /package/src/{components → app/frontend/components}/pure/ProcessLogs.tsx +0 -0
  1105. /package/src/{components → app/frontend/components}/pure/ProcessManager.tsx +0 -0
  1106. /package/src/{components → app/frontend/components}/pure/ProcessManagerViewTypes.ts +0 -0
  1107. /package/src/{components → app/frontend/components}/pure/ProcessSidebar.tsx +0 -0
  1108. /package/src/{components → app/frontend/components}/pure/ProjectPageView.test/index.tsx +0 -0
  1109. /package/src/{components → app/frontend/components}/pure/ProjectPageView.test/specification.ts +0 -0
  1110. /package/src/{components → app/frontend/components}/pure/ProjectPageView.test/types.ts +0 -0
  1111. /package/src/{components → app/frontend/components}/pure/ProjectsPageView.tsx +0 -0
  1112. /package/src/{components → app/frontend/components}/pure/SettingsButton.md +0 -0
  1113. /package/src/{components → app/frontend/components}/pure/SettingsButton.tsx +0 -0
  1114. /package/src/{components → app/frontend/components}/pure/SingleProcessView.tsx +0 -0
  1115. /package/src/{components → app/frontend/components}/pure/TerminalInput.tsx +0 -0
  1116. /package/src/{components → app/frontend/components}/pure/TerminalLogs.tsx +0 -0
  1117. /package/src/{components → app/frontend/components}/pure/TestTable.tsx +0 -0
  1118. /package/src/{components → app/frontend/components}/pure/ThemeCard.tsx +0 -0
  1119. /package/src/{components → app/frontend/components}/pure/ToastNotification.tsx +0 -0
  1120. /package/src/{components → app/frontend/components}/pure/UserProfile.tsx +0 -0
  1121. /package/src/{components → app/frontend/components}/stateful/AuthCallbackPage.tsx +0 -0
  1122. /package/src/{components → app/frontend/components}/stateful/DratoPage.tsx +0 -0
  1123. /package/src/{components → app/frontend/components}/stateful/FileTree.tsx +0 -0
  1124. /package/src/{components → app/frontend/components}/stateful/GenericXMLEditor/Drawer.tsx +0 -0
  1125. /package/src/{components → app/frontend/components}/stateful/GrafeoPage.tsx +0 -0
  1126. /package/src/{components → app/frontend/components}/stateful/SVGEditor/CircleForm.tsx +0 -0
  1127. /package/src/{components → app/frontend/components}/stateful/SVGEditor/GroupForm.tsx +0 -0
  1128. /package/src/{components → app/frontend/components}/stateful/SVGEditor/RectForm.tsx +0 -0
  1129. /package/src/{components → app/frontend/components}/stateful/SVGEditor/SVGAttributeField.tsx +0 -0
  1130. /package/src/{components → app/frontend/components}/stateful/SVGEditor/SVGAttributesEditor.tsx +0 -0
  1131. /package/src/{components → app/frontend/components}/stateful/SVGEditor/SVGEditorControls.tsx +0 -0
  1132. /package/src/{components → app/frontend/components}/stateful/SVGEditor/SVGElementForm.tsx +0 -0
  1133. /package/src/{components → app/frontend/components}/stateful/SVGEditor/SVGPreview.tsx +0 -0
  1134. /package/src/{components → app/frontend/components}/stateful/SVGEditor/SVGTextEditor.tsx +0 -0
  1135. /package/src/{components → app/frontend/components}/stateful/SVGEditor/SVGTree.tsx +0 -0
  1136. /package/src/{components → app/frontend/components}/stateful/SVGEditor/SVGTypes.ts +0 -0
  1137. /package/src/{components → app/frontend/components}/stateful/SVGEditor/svg.xsd.xml +0 -0
  1138. /package/src/{components → app/frontend/components}/stateful/SVGEditorPage.tsx +0 -0
  1139. /package/src/{components → app/frontend/components}/stateful/SettingsPage.tsx +0 -0
  1140. /package/src/{components → app/frontend/components}/stateful/SingleProcessPage.tsx +0 -0
  1141. /package/src/{components → app/frontend/components}/stateful/TextEditorPage.tsx +0 -0
  1142. /package/testeranto/{projects.html → index.html} +0 -0
  1143. /package/testeranto/reports/core/example/{Calculator.golingvu → Calculator.golingvu.test}/golang/exit.log +0 -0
  1144. /package/testeranto/reports/core/{src/components/pure/ModalContent.test/index/web/warn.log → example/Calculator.golingvu.test/golang/stdout.log} +0 -0
  1145. /package/testeranto/reports/core/{src/Pure.test/pure → example/Calculator.pitono.test/python}/message.txt +0 -0
package/tsc.log CHANGED
@@ -14,196 +14,209 @@ node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts(42,17): error TS2551:
14
14
  node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts(43,15): error TS2339: Property 'domRoot' does not exist on type 'HTMLElement'.
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
- 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'.
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'.
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.
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'.
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>; }>'.
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">'.
24
- The types returned by 'givens.Default(...)' are incompatible between these types.
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'.
26
- Types of parameters 's' and 's' are incompatible.
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'.
28
- Types of property 'domRoot' are incompatible.
29
- Type 'Root' is missing the following properties from type 'HTMLElement': accessKey, accessKeyLabel, autocapitalize, autocorrect, and 314 more.
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"'.
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; }'.
34
- Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput & { container?: HTMLElement | undefined; }'.
35
- Property 'treeData' is missing in type 'Promise<{ htmlElement: any; }>' but required in type 'IInput'.
36
- src/components/pure/FeaturesReporterView.test/implementation.tsx(60,18): error TS2339: Property 'htmlElement' does not exist on type 'IInput & { container?: HTMLElement | undefined; }'.
37
- src/components/pure/FeaturesReporterView.test/implementation.tsx(68,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; }'.
38
- Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput & { container?: HTMLElement | undefined; }'.
39
- Property 'treeData' is missing in type 'Promise<{ htmlElement: any; }>' but required in type 'IInput'.
40
- src/components/pure/FeaturesReporterView.test/implementation.tsx(68,18): error TS2339: Property 'htmlElement' does not exist on type 'IInput & { container?: HTMLElement | undefined; }'.
41
- src/components/pure/FeaturesReporterView.test/implementation.tsx(76,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; }'.
42
- Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput & { container?: HTMLElement | undefined; }'.
43
- Property 'treeData' is missing in type 'Promise<{ htmlElement: any; }>' but required in type 'IInput'.
44
- src/components/pure/FeaturesReporterView.test/implementation.tsx(76,18): error TS2339: Property 'htmlElement' does not exist on type 'IInput & { container?: HTMLElement | undefined; }'.
45
- src/components/pure/FeaturesReporterView.test/implementation.tsx(84,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; }'.
46
- Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput & { container?: HTMLElement | undefined; }'.
47
- Property 'treeData' is missing in type 'Promise<{ htmlElement: any; }>' but required in type 'IInput'.
48
- src/components/pure/FeaturesReporterView.test/implementation.tsx(84,18): error TS2339: Property 'htmlElement' does not exist on type 'IInput & { container?: HTMLElement | undefined; }'.
49
- src/components/pure/FeaturesReporterView.test/implementation.tsx(92,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; }'.
50
- Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput & { container?: HTMLElement | undefined; }'.
51
- Property 'treeData' is missing in type 'Promise<{ htmlElement: any; }>' but required in type 'IInput'.
52
- src/components/pure/FeaturesReporterView.test/implementation.tsx(92,18): error TS2339: Property 'htmlElement' does not exist on type 'IInput & { container?: HTMLElement | undefined; }'.
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; }'.
54
- Type '({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.
55
- Target signature provides too few arguments. Expected 2 or more, but got 1.
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>'.
57
- Types of parameters 'Suite' and 'Suite' are incompatible.
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>'.
59
- Types of property 'Default' are incompatible.
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<...>'.
61
- Types of parameters 'givens' and 'givens' are incompatible.
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'.
64
- Types of property 'iinput' are incompatible.
65
- Property 'prototype' is missing in type 'IInput' but required in type 'typeof Component'.
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; }'.
70
- Target signature provides too few arguments. Expected 2 or more, but got 1.
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 & { ...; }'.
17
+ src/app/backend/PM_WithGit.ts(434,26): error TS2769: No overload matches this call.
18
+ Overload 1 of 2, '(timeout: string | number | Timeout | undefined): void', gave the following error.
19
+ Argument of type 'Timeout | null' is not assignable to parameter of type 'string | number | Timeout | undefined'.
20
+ Type 'null' is not assignable to type 'string | number | Timeout | undefined'.
21
+ Overload 2 of 2, '(id: number | undefined): void', gave the following error.
22
+ Argument of type 'Timeout | null' is not assignable to parameter of type 'number | undefined'.
23
+ Type 'null' is not assignable to type 'number | undefined'.
24
+ src/app/backend/PM_WithGit.ts(447,54): error TS2339: Property 'ignore' does not exist on type 'IBuiltConfig'.
25
+ src/app/backend/PM_WithProcesses.ts(753,14): error TS2339: Property 'gitWatcher' does not exist on type 'PM_WithProcesses'.
26
+ src/app/backend/PM_WithProcesses.ts(754,12): error TS2339: Property 'gitWatcher' does not exist on type 'PM_WithProcesses'.
27
+ src/app/backend/PM_WithProcesses.ts(757,14): error TS2339: Property 'gitWatchTimeout' does not exist on type 'PM_WithProcesses'.
28
+ src/app/backend/PM_WithProcesses.ts(758,25): error TS2339: Property 'gitWatchTimeout' does not exist on type 'PM_WithProcesses'.
29
+ src/app/frontend/components/pure/AppFrame.test/implementation.tsx(4,37): error TS2307: Cannot find module '../../../CoreTypes' or its corresponding type declarations.
30
+ src/app/frontend/components/pure/AppFrame.test/index.tsx(21,3): error TS2345: Argument of type 'FC<{ children?: ReactNode; }>' is not assignable to parameter of type 'typeof Component'.
31
+ Type 'FunctionComponent<{ children?: ReactNode; }>' provides no match for the signature 'new <P = {}, S = {}, SS = any>(props: P | Readonly<P>): Component<P, S, SS>'.
32
+ src/app/frontend/components/pure/AppFrame.test/specification.ts(1,36): error TS2307: Cannot find module '../../../CoreTypes' or its corresponding type declarations.
33
+ src/app/frontend/components/pure/AppFrame.test/types.ts(6,35): error TS2307: Cannot find module '../../../CoreTypes' or its corresponding type declarations.
34
+ src/app/frontend/components/pure/FeaturesReporterView.test/implementation.tsx(2,37): error TS2307: Cannot find module '../../../CoreTypes' or its corresponding type declarations.
35
+ src/app/frontend/components/pure/FeaturesReporterView.test/implementation.tsx(4,26): error TS2307: Cannot find module '../../../types/features' or its corresponding type declarations.
36
+ src/app/frontend/components/pure/FeaturesReporterView.test/index.tsx(17,3): error TS2345: Argument of type '(props: any) => Element' is not assignable to parameter of type 'typeof Component'.
37
+ Type '(props: any) => Element' provides no match for the signature 'new <P = {}, S = {}, SS = any>(props: P | Readonly<P>): Component<P, S, SS>'.
38
+ src/app/frontend/components/pure/FeaturesReporterView.test/specification.ts(1,36): error TS2307: Cannot find module '../../../CoreTypes' or its corresponding type declarations.
39
+ src/app/frontend/components/pure/FeaturesReporterView.test/types.ts(2,35): error TS2307: Cannot find module '../../../CoreTypes' or its corresponding type declarations.
40
+ src/app/frontend/components/pure/FeaturesReporterView.test/types.ts(3,26): error TS2307: Cannot find module '../../../types/features' or its corresponding type declarations.
41
+ src/app/frontend/components/pure/FeaturesReporterView.tsx(2,26): error TS2307: Cannot find module '../../../types/features' or its corresponding type declarations.
42
+ src/app/frontend/components/pure/FileTree.tsx(18,13): error TS18046: 'node' is of type 'unknown'.
43
+ src/app/frontend/components/pure/FileTree.tsx(26,45): error TS18046: 'node' is of type 'unknown'.
44
+ src/app/frontend/components/pure/GitIntegrationView.tsx(586,25): error TS2353: Object literal may only specify known properties, and 'renderSideBySide' does not exist in type 'IStandaloneEditorConstructionOptions'.
45
+ src/app/frontend/components/pure/ModalContent.test/implementation.tsx(2,37): error TS2307: Cannot find module '../../../CoreTypes' or its corresponding type declarations.
46
+ src/app/frontend/components/pure/ModalContent.test/implementation.tsx(5,21): error TS2307: Cannot find module '../../../lib/types' or its corresponding type declarations.
47
+ src/app/frontend/components/pure/ModalContent.test/index.tsx(12,20): error TS2304: Cannot find name 'ITestInterface'.
48
+ src/app/frontend/components/pure/ModalContent.test/index.tsx(63,27): error TS2558: Expected 2 type arguments, but got 3.
49
+ src/app/frontend/components/pure/ModalContent.test/specification.ts(1,36): error TS2307: Cannot find module '../../../CoreTypes' or its corresponding type declarations.
50
+ src/app/frontend/components/pure/ModalContent.test/types.ts(6,35): error TS2307: Cannot find module '../../../CoreTypes' or its corresponding type declarations.
51
+ src/app/frontend/components/pure/NavBar.tsx(88,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
52
  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 & { ...; }'.
53
+ src/app/frontend/components/pure/ProcessManagerView.tsx(87,10): error TS1205: Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.
54
+ src/app/frontend/components/pure/ProjectPageView.test/implementation.tsx(141,37): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
55
+ src/app/frontend/components/pure/ProjectPageView.test/implementation.tsx(150,37): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
56
+ src/app/frontend/components/pure/ProjectPageView.test/implementation.tsx(159,37): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
57
+ src/app/frontend/components/pure/ProjectPageView.test/implementation.tsx(168,37): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
58
+ src/app/frontend/components/pure/ProjectPageView.test/implementation.tsx(177,37): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
59
+ src/app/frontend/components/pure/ProjectPageView.test/implementation.tsx(188,37): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
60
+ src/app/frontend/components/pure/ProjectPageView.test/implementation.tsx(198,37): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
61
+ src/app/frontend/components/pure/ProjectPageView.test/implementation.tsx(208,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
62
  Type '(state: any, pm: any) => Promise<any>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
89
63
  Target signature provides too few arguments. Expected 2 or more, but got 1.
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>'.
91
- Types of parameters 'Suite' and 'Suite' are incompatible.
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>'.
93
- Types of property 'Default' are incompatible.
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<...>'.
95
- Types of parameters 'givens' and 'givens' are incompatible.
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'.
98
- Types of property 'iinput' are incompatible.
99
- Property 'prototype' is missing in type 'IProjectPageViewProps' but required in type 'typeof Component'.
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'.
64
+ src/app/frontend/components/pure/ProjectPageView.test/index.tsx(17,3): error TS2345: Argument of type '(props: any) => Element' is not assignable to parameter of type 'typeof Component'.
65
+ Type '(props: any) => Element' provides no match for the signature 'new <P = {}, S = {}, SS = any>(props: P | Readonly<P>): Component<P, S, SS>'.
66
+ src/app/frontend/components/pure/ProjectPageView.test/specification.ts(1,36): error TS2307: Cannot find module '../../../CoreTypes' or its corresponding type declarations.
67
+ src/app/frontend/components/pure/ProjectPageView.test/types.ts(6,35): error TS2307: Cannot find module '../../../CoreTypes' or its corresponding type declarations.
68
+ src/app/frontend/components/pure/UserProfile.tsx(3,35): error TS2307: Cannot find module '../../services/GitHubAuthService' or its corresponding type declarations.
69
+ src/app/frontend/components/stateful/GenericXMLEditorPage.tsx(361,18): error TS2741: Property 'onTreeUpdate' is missing in type '{ xmlTree: XMLNode; selectedNodeId: string | null; hiddenNodes: Set<string>; renderPreview: (node: XMLNode, isSelected: boolean, eventHandlers: any) => ReactElement<any, string | JSXElementConstructor<...>>; }' but required in type 'GenericPreviewProps'.
70
+ src/app/frontend/components/stateful/GenericXMLEditorPage.tsx(373,14): error TS2741: Property 'onToggle' is missing in type '{ children: Element; position: "left"; isOpen: true; zIndex: number; onBringToFront: () => void; title: string; }' but required in type 'DrawerProps'.
71
+ src/app/frontend/components/stateful/GenericXMLEditorPage.tsx(394,14): error TS2741: Property 'onToggle' is missing in type '{ children: Element; position: "right"; isOpen: true; zIndex: number; onBringToFront: () => void; title: string; }' but required in type 'DrawerProps'.
72
+ src/app/frontend/components/stateful/GenericXMLEditorPage.tsx(425,14): error TS2741: Property 'onToggle' is missing in type '{ children: Element; position: "bottom"; isOpen: true; zIndex: number; onBringToFront: () => void; title: string; }' but required in type 'DrawerProps'.
73
+ src/app/frontend/components/stateful/GitIntegrationPage.tsx(41,25): error TS2339: Property 'commitChanges' does not exist on type 'FileService'.
74
+ src/app/frontend/components/stateful/GitIntegrationPage.tsx(66,25): error TS2339: Property 'commitChanges' does not exist on type 'FileService'.
75
+ src/app/frontend/components/stateful/GitIntegrationPage.tsx(67,25): error TS2339: Property 'pushChanges' does not exist on type 'FileService'.
76
+ src/app/frontend/components/stateful/GitIntegrationPage.tsx(87,25): error TS2339: Property 'pullChanges' does not exist on type 'FileService'.
77
+ src/app/frontend/components/stateful/GitIntegrationPage.tsx(141,40): error TS2339: Property 'getCurrentBranch' does not exist on type 'FileService'.
78
+ src/app/frontend/components/stateful/GitIntegrationPage.tsx(142,40): error TS2339: Property 'getRemoteStatus' does not exist on type 'FileService'.
79
+ src/app/frontend/components/stateful/GitIntegrationPage.tsx(162,41): error TS2339: Property 'getChanges' does not exist on type 'FileService'.
80
+ src/app/frontend/components/stateful/GitIntegrationPage.tsx(178,43): error TS2339: Property 'getChanges' does not exist on type 'FileService'.
81
+ src/app/frontend/components/stateful/GitIntegrationPage.tsx(181,42): error TS2339: Property 'getCurrentBranch' does not exist on type 'FileService'.
82
+ src/app/frontend/components/stateful/GitIntegrationPage.tsx(182,42): error TS2339: Property 'getRemoteStatus' does not exist on type 'FileService'.
83
+ src/app/frontend/components/stateful/GitIntegrationPage.tsx(229,7): error TS2322: Type '{ mode: "dev" | "static" | "git"; setMode: Dispatch<SetStateAction<"dev" | "static" | "git">>; fileService: FileService; setChanges: Dispatch<SetStateAction<...>>; ... 24 more ...; getSyncStatusText: () => string; }' is not assignable to type 'IntrinsicAttributes & { mode: any; setMode: any; fileService: any; remoteStatus: any; changes: any; currentBranch: any; isLoading: any; setError: any; loadChanges: any; ... 15 more ...; getSyncStatusText: any; }'.
84
+ Property 'setChanges' does not exist on type 'IntrinsicAttributes & { mode: any; setMode: any; fileService: any; remoteStatus: any; changes: any; currentBranch: any; isLoading: any; setError: any; loadChanges: any; ... 15 more ...; getSyncStatusText: any; }'. Did you mean 'changes'?
85
+ src/app/frontend/components/stateful/ProjectsPage.tsx(116,7): error TS2322: Type 'Record<string, ISummary>' is not assignable to type 'TestSummary'.
86
+ 'string' index signatures are incompatible.
87
+ Type 'ISummary' has no properties in common with type '{ testsExist?: boolean | undefined; runTimeErrors?: number | undefined; typeErrors?: number | undefined; staticErrors?: number | undefined; }'.
88
+ src/app/frontend/components/stateful/ProjectsPage.tsx(117,7): error TS2322: Type 'Record<string, object>' is not assignable to type 'ProjectConfig'.
89
+ 'string' index signatures are incompatible.
90
+ Property 'tests' is missing in type '{}' but required in type '{ tests: [string, string][]; }'.
91
+ src/app/frontend/components/stateful/SVGEditor/SVGPreview.tsx(20,7): error TS2345: Argument of type 'Element' is not assignable to parameter of type 'never'.
92
+ src/app/frontend/components/stateful/SVGEditor/SVGPreview.tsx(35,7): error TS2345: Argument of type 'Element' is not assignable to parameter of type 'never'.
93
+ src/app/frontend/components/stateful/SVGEditorPage.tsx(176,19): error TS2339: Property 'children' does not exist on type 'never'.
94
+ src/app/frontend/components/stateful/SVGEditorPage.tsx(176,40): error TS2339: Property 'children' does not exist on type 'never'.
95
+ src/app/frontend/components/stateful/SVGEditorPage.tsx(477,11): error TS2304: Cannot find name 'xmlTree'.
96
+ src/app/frontend/components/stateful/SVGEditorPage.tsx(478,13): error TS2304: Cannot find name 'xmlTree'.
97
+ src/app/frontend/components/stateful/SVGEditorPage.tsx(479,19): error TS2304: Cannot find name 'xmlTree'.
98
+ src/app/frontend/components/stateful/SVGEditorPage.tsx(480,17): error TS2304: Cannot find name 'xmlTree'.
99
+ src/app/frontend/components/stateful/TextEditorPage.tsx(3,26): error TS2306: File '/Users/adam/Code/testeranto/src/app/frontend/components/stateful/FileTree.tsx' is not a module.
100
+ src/app/frontend/components/SunriseAnimation.test/interface.ts(5,34): error TS2307: Cannot find module './SunriseAnimation' or its corresponding type declarations.
101
+ src/app/frontend/components/SunriseAnimation.test/interface.ts(8,14): error TS1214: Identifier expected. 'interface' is a reserved word in strict mode. Modules are automatically in strict mode.
102
+ src/app/frontend/components/SunriseAnimation.test/interface.ts(22,46): error TS2769: No overload matches this call.
103
+ The last overload gave the following error.
104
+ Argument of type 'ISubject' is not assignable to parameter of type 'string | FunctionComponent<(props: IInput) => ISelection> | ComponentClass<(props: IInput) => ISelection, any>'.
105
+ src/app/frontend/components/SunriseAnimation.test/interface.ts(48,20): error TS2739: Type '{}' is missing the following properties from type 'Promise<ISubject>': then, catch, finally, [Symbol.toStringTag]
106
+ src/app/frontend/fetchDataUtil.ts(37,13): error TS18046: 'output' is of type 'unknown'.
107
+ src/app/frontend/fetchDataUtil.ts(47,21): error TS18046: 'output' is of type 'unknown'.
108
+ src/app/frontend/GitFileService.ts(22,3): error TS2416: Property 'projects' in type 'GitFileService' is not assignable to the same property in base type 'FileService'.
109
+ Type '(project: string) => Promise<object>' is not assignable to type '(project: string) => Promise<string[]>'.
110
+ Type 'Promise<object>' is not assignable to type 'Promise<string[]>'.
111
+ Type '{}' is missing the following properties from type 'string[]': length, pop, push, concat, and 35 more.
112
+ src/app/frontend/GitFileService.ts(25,3): error TS2416: Property 'tests' in type 'GitFileService' is not assignable to the same property in base type 'FileService'.
113
+ Type '(project: string) => Promise<object>' is not assignable to type '(project: string) => Promise<string[]>'.
114
+ Type 'Promise<object>' is not assignable to type 'Promise<string[]>'.
115
+ Type '{}' is missing the following properties from type 'string[]': length, pop, push, concat, and 35 more.
116
+ src/app/frontend/GitFileService.ts(50,25): error TS2552: Cannot find name 'buffer'. Did you mean 'Buffer'?
117
+ src/app/frontend/GitFileService.ts(69,20): error TS2339: Property 'fs' does not exist on type 'Window & typeof globalThis'.
118
+ src/app/frontend/GitFileService.ts(72,22): error TS2339: Property 'fs' does not exist on type 'Window & typeof globalThis'.
119
+ src/app/frontend/GitFileService.ts(94,20): error TS2339: Property 'fs' does not exist on type 'Window & typeof globalThis'.
120
+ src/app/frontend/GitFileService.ts(142,20): error TS2339: Property 'fs' does not exist on type 'Window & typeof globalThis'.
121
+ src/app/frontend/GitFileService.ts(157,20): error TS2339: Property 'fs' does not exist on type 'Window & typeof globalThis'.
122
+ src/app/frontend/GitFileService.ts(187,24): error TS2339: Property 'fs' does not exist on type 'Window & typeof globalThis'.
123
+ src/app/frontend/GitFileService.ts(193,24): error TS2339: Property 'fs' does not exist on type 'Window & typeof globalThis'.
124
+ src/app/frontend/GitFileService.ts(202,20): error TS2339: Property 'fs' does not exist on type 'Window & typeof globalThis'.
125
+ src/app/frontend/GitFileService.ts(221,20): error TS2339: Property 'fs' does not exist on type 'Window & typeof globalThis'.
126
+ src/app/frontend/GitFileService.ts(242,20): error TS2339: Property 'fs' does not exist on type 'Window & typeof globalThis'.
127
+ src/app/frontend/GitFileService.ts(265,22): error TS2339: Property 'fs' does not exist on type 'Window & typeof globalThis'.
128
+ src/app/frontend/GitHubAuthService.ts(166,51): error TS2345: Argument of type 'string | null' is not assignable to parameter of type 'string'.
129
+ Type 'null' is not assignable to type 'string'.
130
+ src/app/frontend/testPage/ProjectsTree.tsx(116,17): error TS2322: Type '{ name: string; isFile: false; level: number; isSelected: false; exists: true; isExpanded: boolean; onClick: () => Promise<void>; }' is not assignable to type 'IntrinsicAttributes & { name: string; isFile: boolean; level: number; isSelected: boolean; exists?: boolean | undefined; onClick: () => void; }'.
131
+ Property 'isExpanded' does not exist on type 'IntrinsicAttributes & { name: string; isFile: boolean; level: number; isSelected: boolean; exists?: boolean | undefined; onClick: () => void; }'.
132
+ src/app/frontend/testPage/ProjectsTree.tsx(136,31): error TS2322: Type '{ name: string; isFile: false; level: number; isSelected: false; exists: true; isExpanded: any; onClick: () => any; }' is not assignable to type 'IntrinsicAttributes & { name: string; isFile: boolean; level: number; isSelected: boolean; exists?: boolean | undefined; onClick: () => void; }'.
133
+ Property 'isExpanded' does not exist on type 'IntrinsicAttributes & { name: string; isFile: boolean; level: number; isSelected: boolean; exists?: boolean | undefined; onClick: () => void; }'.
134
+ src/app/frontend/testPage/ProjectsTree.tsx(205,35): error TS2322: Type '{ name: string; isFile: false; level: number; isSelected: false; exists: true; isExpanded: any; onClick: () => any; }' is not assignable to type 'IntrinsicAttributes & { name: string; isFile: boolean; level: number; isSelected: boolean; exists?: boolean | undefined; onClick: () => void; }'.
135
+ Property 'isExpanded' does not exist on type 'IntrinsicAttributes & { name: string; isFile: boolean; level: number; isSelected: boolean; exists?: boolean | undefined; onClick: () => void; }'.
136
+ src/app/frontend/testPage/ProjectsTree.tsx(274,33): error TS2322: Type '{ name: string; isFile: false; level: number; isSelected: false; exists: true; isExpanded: any; onClick: () => any; }' is not assignable to type 'IntrinsicAttributes & { name: string; isFile: boolean; level: number; isSelected: boolean; exists?: boolean | undefined; onClick: () => void; }'.
137
+ Property 'isExpanded' does not exist on type 'IntrinsicAttributes & { name: string; isFile: boolean; level: number; isSelected: boolean; exists?: boolean | undefined; onClick: () => void; }'.
138
+ src/app/frontend/testPage/TestPage.tsx(57,48): error TS2345: Argument of type 'string' is not assignable to parameter of type 'IRunTime'.
139
+ src/app/frontend/testPage/TestPage.tsx(73,18): error TS2345: Argument of type 'string' is not assignable to parameter of type 'SetStateAction<null>'.
140
+ src/app/frontend/testPage/TestPage.tsx(89,9): error TS2322: Type '{ route: "logs" | "results" | "types" | "lint" | "coverage"; setRoute: Dispatch<SetStateAction<string>>; navigate: NavigateFunction; ... 7 more ...; isWebSocketConnected: boolean; }' is not assignable to type 'IntrinsicAttributes & TestPageViewProps'.
141
+ Property 'route' does not exist on type 'IntrinsicAttributes & TestPageViewProps'.
142
+ src/app/frontend/testPage/TestPageView.test/implementation.ts(39,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
143
  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.
144
+ src/app/frontend/testPage/TestPageView.test/implementation.ts(44,48): error TS2769: No overload matches this call.
104
145
  The last overload gave the following error.
105
146
  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'.
147
+ src/app/frontend/testPage/TestPageView.test/implementation.ts(55,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
148
  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.
149
+ src/app/frontend/testPage/TestPageView.test/implementation.ts(59,48): error TS2769: No overload matches this call.
109
150
  The last overload gave the following error.
110
151
  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.
152
+ src/app/frontend/testPage/TestPageView.test/implementation.ts(75,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'.
153
+ 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'.
154
+ src/app/frontend/testPage/TestPageView.test/implementation.ts(79,48): error TS2769: No overload matches this call.
114
155
  The last overload gave the following error.
115
156
  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<...>>'.
157
+ src/app/frontend/testPage/TestPageView.test/implementation.ts(97,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
158
  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
159
  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
160
  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
161
  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<...>>'.
162
+ src/app/frontend/testPage/TestPageView.test/implementation.ts(119,7): 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
163
  Type 'Promise<(sel: ISelection) => ISelection>' is not assignable to type 'Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>>'.
123
164
  Type '(sel: ISelection) => ISelection' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
124
165
  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<...>'.
166
+ src/app/frontend/testPage/TestPageView.test/implementation.ts(125,34): error TS2339: Property 'container' does not exist on type 'ISelection'.
167
+ src/app/frontend/testPage/TestPageView.test/implementation.ts(134,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
168
  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
169
  Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
129
170
  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>'.
171
+ src/app/frontend/testPage/TestPageView.test/implementation.ts(142,13): 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
172
  Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
132
173
  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<...>'.
174
+ src/app/frontend/testPage/TestPageView.test/implementation.ts(143,28): error TS2339: Property 'container' does not exist on type 'ISelection'.
175
+ src/app/frontend/testPage/TestPageView.test/implementation.ts(147,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
176
  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
177
  Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
137
178
  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>'.
179
+ src/app/frontend/testPage/TestPageView.test/implementation.ts(152,26): error TS2339: Property 'activeTab' does not exist on type 'ISelection'.
180
+ src/app/frontend/testPage/TestPageView.test/implementation.ts(156,13): 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
181
  Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
141
182
  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>'.
183
+ src/app/frontend/testPage/TestPageView.test/implementation.ts(158,28): error TS2339: Property 'container' does not exist on type 'ISelection'.
184
+ src/app/frontend/testPage/TestPageView.test/implementation.ts(163,13): 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
185
  Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
145
186
  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>'.
187
+ src/app/frontend/testPage/TestPageView.test/implementation.ts(165,17): error TS2339: Property 'testsExist' does not exist on type 'ISelection'.
188
+ src/app/frontend/testPage/TestPageView.test/implementation.ts(166,35): error TS2339: Property 'container' does not exist on type 'ISelection'.
189
+ src/app/frontend/testPage/TestPageView.test/implementation.ts(175,13): 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
190
  Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
150
191
  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>'.
192
+ src/app/frontend/testPage/TestPageView.test/implementation.ts(177,26): error TS2339: Property 'container' does not exist on type 'ISelection'.
193
+ src/app/frontend/testPage/TestPageView.test/implementation.ts(182,13): 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
194
  Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
154
195
  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>'.
196
+ src/app/frontend/testPage/TestPageView.test/implementation.ts(184,32): error TS2339: Property 'container' does not exist on type 'ISelection'.
197
+ src/app/frontend/testPage/TestPageView.test/implementation.ts(191,13): 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
198
  Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
158
199
  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>'.
200
+ src/app/frontend/testPage/TestPageView.test/implementation.ts(193,32): error TS2339: Property 'container' does not exist on type 'ISelection'.
201
+ src/app/frontend/testPage/TestPageView.test/implementation.ts(200,13): 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
202
  Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
162
203
  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'.
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>'.
165
- Types of parameters 'Suite' and 'Suite' are incompatible.
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>'.
167
- Types of property 'Default' are incompatible.
168
- Type '(name: string, givens: IGivens<I>) => BaseSuite<I, O>' is not assignable to type '(name: string, givens: IGivens<{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }>) => BaseSuite<{ iinput: any; ... 5 more ...; then: any; }, O>'.
169
- Types of parameters 'givens' and 'givens' are incompatible.
170
- Type 'IGivens<{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }>' is not assignable to type 'IGivens<I>'.
171
- Type '{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }' is not assignable to type 'I'.
172
- Types of property 'istore' are incompatible.
173
- Type 'ISelection' is missing the following properties from type 'HTMLElement': accessKey, accessKeyLabel, autocapitalize, autocorrect, and 314 more.
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(137,39): error TS2339: Property 'metafile' does not exist on type 'string'.
177
- src/components/pure/TestPageView.tsx(147,36): error TS18046: 'output' is of type 'unknown'.
178
- src/components/pure/TestPageView.tsx(147,56): error TS18046: 'output' is of type 'unknown'.
179
- src/components/pure/TestPageView.tsx(149,21): error TS18046: 'output' is of type 'unknown'.
180
- src/components/pure/TestPageView.tsx(156,46): error TS2339: Property 'errors' does not exist on type 'string'.
181
- src/components/pure/TestPageView.tsx(160,48): error TS2339: Property 'warnings' does not exist on type 'string'.
182
- src/components/pure/TestPageView.tsx(1178,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'.
183
- Property 'className' does not exist on type 'IntrinsicAttributes & TestStatusBadgeProps'.
184
- src/components/stateful/FileTree.tsx(2,10): error TS2459: Module '"./TextEditorPage"' declares 'FileType' locally, but it is not exported.
185
- src/components/stateful/FileTree.tsx(53,12): error TS18046: 'dirFiles' is of type 'unknown'.
186
- src/components/stateful/ProjectsPage.tsx(98,7): error TS2322: Type 'Record<string, ISummary>' is not assignable to type 'TestSummary'.
187
- 'string' index signatures are incompatible.
188
- Type 'ISummary' has no properties in common with type '{ testsExist?: boolean | undefined; runTimeErrors?: number | undefined; typeErrors?: number | undefined; staticErrors?: number | undefined; }'.
189
- src/components/stateful/ProjectsPage.tsx(99,7): error TS2322: Type 'Record<string, object>' is not assignable to type 'ProjectConfig'.
190
- 'string' index signatures are incompatible.
191
- Property 'tests' is missing in type '{}' but required in type '{ tests: [string, string][]; }'.
192
- src/components/stateful/SingleProcessPage.tsx(4,35): error TS2306: File '/Users/adam/Code/testeranto/src/components/pure/SingleProcessView.tsx' is not a module.
193
- src/components/stateful/TestPage.tsx(80,24): error TS18046: 'output' is of type 'unknown'.
194
- src/components/stateful/TestPage.tsx(88,27): error TS18046: 'output' is of type 'unknown'.
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'.
201
- Property 'route' does not exist on type 'IntrinsicAttributes & TestPageViewProps'.
202
- src/components/stateful/TextEditorPage.tsx(110,11): error TS2322: Type 'string | undefined' is not assignable to type 'string | null'.
203
- Type 'undefined' is not assignable to type 'string | null'.
204
- src/components/SunriseAnimation.test/interface.ts(2,10): error TS2305: Module '"../../CoreTypes"' has no exported member 'ITestInterface'.
205
- src/components/SunriseAnimation.test/interface.ts(5,34): error TS2307: Cannot find module './SunriseAnimation' or its corresponding type declarations.
206
- 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.
204
+ src/app/frontend/testPage/TestPageView.test/implementation.ts(202,33): error TS2339: Property 'container' does not exist on type 'ISelection'.
205
+ src/app/frontend/testPage/TestPageView.test/index.tsx(19,3): error TS2345: Argument of type 'ITestImplementation<{ iinput: IProjectPageViewProps; isubject: ISubject; istore: ISelection; iselection: ISelection; given: (props: IProjectPageViewProps) => ISelection; when: (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>; then: (sel: ISelection, tr: ITTestResourceConfiguration, util...' is not assignable to parameter of type 'ITestImplementation<I, O, { whens: TestWhenImplementation<{ iinput: IProjectPageViewProps; isubject: ISubject; istore: ISelection; iselection: ISelection; given: (props: IProjectPageViewProps) => ISelection; when: (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>; then: (sel: ISelection,...'.
206
+ Type 'ITestImplementation<{ iinput: IProjectPageViewProps; isubject: ISubject; istore: ISelection; iselection: ISelection; given: (props: IProjectPageViewProps) => ISelection; when: (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>; then: (sel: ISelection, tr: ITTestResourceConfiguration, util...' is not assignable to type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, "whens">'.
207
+ The types returned by 'thens.RendersNavBar(...)' are incompatible between these types.
208
+ Type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>' is not assignable to type '(ssel: HTMLElement, utils: PM) => any'.
209
+ Types of parameters 'ssel' and 'ssel' are incompatible.
210
+ Type 'HTMLElement' is missing the following properties from type 'ISelection': htmlElement, reactElement, domRoot
211
+ src/app/frontend/testPage/TestPageView.tsx(72,39): error TS2339: Property 'metafile' does not exist on type 'string'.
212
+ src/app/frontend/testPage/TestPageView.tsx(82,36): error TS18046: 'output' is of type 'unknown'.
213
+ src/app/frontend/testPage/TestPageView.tsx(83,11): error TS18046: 'output' is of type 'unknown'.
214
+ src/app/frontend/testPage/TestPageView.tsx(86,21): error TS18046: 'output' is of type 'unknown'.
215
+ src/app/frontend/testPage/TestPageView.tsx(93,46): error TS2339: Property 'errors' does not exist on type 'string'.
216
+ src/app/frontend/testPage/TestPageView.tsx(99,48): error TS2339: Property 'warnings' does not exist on type 'string'.
217
+ src/app/frontend/testPage/TestPageView_utils.tsx(66,21): error TS2339: Property 'status' does not exist on type '{ name: string; whens: { name: string; error?: string | undefined; features?: string[] | undefined; artifacts?: string[] | undefined; }[]; thens: { name: string; error?: string | undefined; features?: string[] | undefined; artifacts?: string[] | undefined; }[]; features?: string[] | undefined; artifacts?: string[] |...'.
218
+ src/app/frontend/testPage/TestPageView_utils.tsx(131,24): error TS2339: Property 'status' does not exist on type '{ name: string; error?: string | undefined; features?: string[] | undefined; artifacts?: string[] | undefined; }'.
219
+ src/app/frontend/testPage/TestPageView_utils.tsx(192,24): error TS2339: Property 'status' does not exist on type '{ name: string; error?: string | undefined; features?: string[] | undefined; artifacts?: string[] | undefined; }'.
207
220
  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.
208
221
  Type 'Promise<() => { testStore: { value: string; }; }>' is not assignable to type 'Promise<{ testStore: { value: string; }; error?: Error | undefined; }>'.
209
222
  Type '() => { testStore: { value: string; }; }' is not assignable to type '{ testStore: { value: string; }; error?: Error | undefined; }'.
@@ -217,69 +230,63 @@ src/lib/abstractBase.test/implementation.ts(11,26): error TS2322: Type '{ testSt
217
230
  Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' provides no match for the signature '(): { testStore: { value: string; }; }'.
218
231
  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; }; }'.
219
232
  Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' provides no match for the signature '(): { testStore: { value: string; }; }'.
233
+ src/lib/abstractBase.test/MockGiven.ts(18,50): error TS2554: Expected 5 arguments, but got 6.
220
234
  src/lib/abstractBase.test/MockGiven.ts(30,20): error TS2349: This expression is not callable.
221
235
  Type 'unknown' has no call signatures.
222
236
  src/lib/abstractBase.test/types.ts(13,17): error TS2707: Generic type 'Ibdd_out' requires between 0 and 4 type arguments.
237
+ src/lib/BaseGiven.ts(63,10): error TS2551: Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
238
+ src/lib/BaseGiven.ts(118,10): error TS2551: Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
239
+ src/lib/BaseGiven.ts(149,12): error TS2551: Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
240
+ src/lib/BaseGiven.ts(236,16): error TS2551: Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
241
+ src/lib/BaseGiven.ts(259,14): error TS2551: Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
242
+ src/lib/BaseSuite.test/mock.ts(25,7): error TS2554: Expected 5 arguments, but got 6.
223
243
  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
244
  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>'.
245
+ Type '(s: TestSelection) => Promise<BaseSuite<any, any>>' is not assignable to type 'Promise<BaseSuite<any, any>>'.
246
+ src/lib/BaseSuite.test/mock.ts(90,11): error TS2322: Type 'MockWhen' is not assignable to type 'BaseWhen<I>'.
233
247
  Types of property 'andWhen' are incompatible.
234
248
  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>>'.
249
+ Type '(s: TestSelection) => Promise<BaseSuite<any, any>>' is not assignable to type 'Promise<BaseSuite<any, any>>'.
250
+ src/lib/BaseSuite.test/mock.ts(91,13): error TS2322: Type 'Promise<{ testSelection: boolean; }>' is not assignable to type '(s: TestSelection) => Promise<BaseSuite<any, any>>'.
242
251
  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.
244
- src/lib/BaseSuite.test/test.ts(143,30): error TS2345: Argument of type 'Promise<unknown>' is not assignable to parameter of type 'string'.
245
- src/lib/BaseSuite.test/test.ts(150,15): error TS2339: Property 'specs' does not exist on type 'MockSuite'.
246
- src/lib/BaseSuite.test/test.ts(150,38): error TS2339: Property 'specs' does not exist on type 'MockSuite'.
247
- src/lib/BaseSuite.test/test.ts(157,15): error TS2339: Property 'testJobs' does not exist on type 'MockSuite'.
248
- src/lib/BaseSuite.test/test.ts(157,41): error TS2339: Property 'testJobs' does not exist on type 'MockSuite'.
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<...>>'.
252
+ src/lib/BaseSuite.test/mock.ts(96,29): error TS2511: Cannot create an instance of an abstract class.
253
+ src/lib/BaseSuite.test/test.ts(86,13): error TS2339: Property 'AddFeature' does not exist on type 'WhenSpecification<I, O>'.
254
+ src/lib/BaseSuite.test/test.ts(90,14): error TS2339: Property 'FeatureCountMatches' does not exist on type 'ThenSpecification<I, O>'.
255
+ src/lib/BaseSuite.test/test.ts(97,13): error TS2339: Property 'RunSuiteWithError' does not exist on type 'WhenSpecification<I, O>'.
256
+ src/lib/BaseSuite.test/test.ts(98,13): error TS2339: Property 'ErrorCountMatches' does not exist on type 'ThenSpecification<I, O>'.
257
+ src/lib/BaseSuite.test/test.ts(98,40): error TS2339: Property 'FailedFlagSet' does not exist on type 'ThenSpecification<I, O>'.
258
+ src/lib/BaseSuite.test/test.ts(142,56): error TS2322: Type '(suite: MockSuite) => MockSuite' is not assignable to type '(zel: TestSelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(x: TestSelection) => (store: TestStore) => Promise<...>>'.
259
+ Types of parameters 'suite' and 'zel' are incompatible.
260
+ Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 11 more.
261
+ src/lib/BaseSuite.test/test.ts(147,56): error TS2322: Type '(suite: MockSuite) => MockSuite' is not assignable to type '(zel: TestSelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(x: TestSelection) => (store: TestStore) => Promise<...>>'.
250
262
  Types of parameters 'suite' and 'zel' are incompatible.
251
263
  Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 11 more.
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 ...'.
253
- Type '() => void' is not assignable to type '(tLog: ITLog, callback: (p: Promise<void>) => void) => (fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void'.
254
- Type 'void' is not assignable to type '(fPath: string, value: string | Buffer | PassThrough) => void'.
255
- 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>)'.
256
- Type '() => void' is not assignable to type '(selector: string) => boolean'.
257
- Type 'void' is not assignable to type 'boolean'.
258
- 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>)'.
259
- Type '() => void' is not assignable to type '(p: any) => string'.
260
- Type 'void' is not assignable to type 'string'.
261
- src/lib/BaseSuite.test/test.ts(190,11): error TS2345: Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'.
262
- src/lib/BaseSuite.test/test.ts(204,13): error TS2345: Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'.
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.
275
- Type '(store: TestStore) => Promise<TestSelection>' is not assignable to type '(s: TestSelection) => Promise<BaseSuite<any, any>>'.
276
- Types of parameters 'store' and 's' are incompatible.
277
- Property 'testStore' is missing in type 'TestSelection' but required in type 'TestStore'.
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>'.
264
+ src/lib/BaseSuite.test/test.ts(174,30): error TS2345: Argument of type 'Promise<unknown>' is not assignable to parameter of type 'string'.
265
+ src/lib/BaseSuite.test/test.ts(181,15): error TS2339: Property 'specs' does not exist on type 'MockSuite'.
266
+ src/lib/BaseSuite.test/test.ts(181,38): error TS2339: Property 'specs' does not exist on type 'MockSuite'.
267
+ src/lib/BaseSuite.test/test.ts(188,15): error TS2339: Property 'testJobs' does not exist on type 'MockSuite'.
268
+ src/lib/BaseSuite.test/test.ts(188,41): error TS2339: Property 'testJobs' does not exist on type 'MockSuite'.
269
+ src/lib/BaseSuite.test/test.ts(206,32): error TS2511: Cannot create an instance of an abstract class.
270
+ src/lib/BaseSuite.test/test.ts(220,32): error TS2511: Cannot create an instance of an abstract class.
271
+ src/lib/BaseSuite.test/test.ts(234,32): error TS2511: Cannot create an instance of an abstract class.
272
+ src/lib/BaseSuite.test/test.ts(247,32): error TS2511: Cannot create an instance of an abstract class.
273
+ src/lib/BaseSuite.test/test.ts(251,5): error TS2353: Object literal may only specify known properties, and 'FeatureCountMatches' does not exist in type 'TestThenImplementation<I, O>'.
274
+ src/lib/BaseSuite.test/test.ts(261,32): error TS2511: Cannot create an instance of an abstract class.
275
+ src/lib/BaseSuite.test/test.ts(275,32): error TS2511: Cannot create an instance of an abstract class.
276
+ src/lib/BaseSuite.test/test.ts(287,32): error TS2511: Cannot create an instance of an abstract class.
277
+ src/lib/BaseSuite.test/test.ts(298,32): error TS2511: Cannot create an instance of an abstract class.
278
+ src/lib/BaseSuite.test/test.ts(320,22): error TS2339: Property 'index' does not exist on type '() => Promise<TestStore>'.
279
+ src/lib/BaseSuite.test/test.ts(323,19): error TS2339: Property 'store' does not exist on type '() => Promise<TestStore>'.
280
+ src/lib/BaseSuite.test/test.ts(331,3): error TS2322: Type '(store: I["istore"], whenCB: (s: TestSelection) => Promise<BaseSuite<any, any>>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<I["istore"]>' is not assignable to type '(store: TestStore, whenCB: (x: TestSelection) => (store: TestStore) => Promise<TestSelection>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<...>'.
281
+ Types of parameters 'whenCB' and 'whenCB' are incompatible.
282
+ Type '(x: TestSelection) => (store: TestStore) => Promise<TestSelection>' is not assignable to type '(s: TestSelection) => Promise<BaseSuite<any, any>>'.
283
+ Type '(store: TestStore) => Promise<TestSelection>' is not assignable to type 'Promise<BaseSuite<any, any>>'.
284
+ src/lib/BaseSuite.test/test.ts(368,3): error TS2322: Type '(store: I["istore"]) => I["istore"]' is not assignable to type '(store: TestStore, key: string, pm: IPM) => Promise<unknown>'.
281
285
  Type 'TestStore' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
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.
286
+ src/lib/BaseSuite.ts(72,26): error TS2339: Property 'name' does not exist on type 'never'.
287
+ src/lib/BaseSuite.ts(173,29): error TS2551: Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
288
+ src/lib/BaseSuite.ts(179,19): error TS2551: Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
289
+ src/lib/BaseSuite.ts(180,31): error TS2551: Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
283
290
  src/lib/index.ts(42,12): error TS2349: This expression is not callable.
284
291
  Type 'unknown' has no call signatures.
285
292
  src/lib/index.ts(50,12): error TS2349: This expression is not callable.
@@ -303,49 +310,42 @@ src/lib/pmProxy.test/implementation.ts(56,5): error TS2322: Type '(method: strin
303
310
  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)'.
304
311
  Type '(path: string, content: string, testName?: string) => Promise<any>' is not assignable to type '(x: any) => Promise<boolean>'.
305
312
  Target signature provides too few arguments. Expected 2 or more, but got 1.
306
- src/lib/pmProxy.test/implementation.ts(103,17): error TS2554: Expected 1 arguments, but got 3.
307
- src/lib/pmProxy.test/implementation.ts(115,19): error TS2322: Type '"screen.png"' is not assignable to type '`${string}.webm`'.
308
- 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"]'.
309
- Type '(result: any[]) => any[]' is not assignable to type '(ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, "string"]'.
310
- Types of parameters 'result' and 'ssel' are incompatible.
311
- Type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' is missing the following properties from type 'any[]': length, pop, push, concat, and 35 more.
312
- 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"]'.
313
- Types of parameters 'store' and 'ssel' are incompatible.
314
- Property 'pathRewriter' is missing in type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' but required in type '{ pathRewriter: PathRewriter; }'.
315
- 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>'.
316
- Types of property 'givens' are incompatible.
317
- Type '{ [x: string]: (...Iw: any) => string; }' is not assignable to type 'TestGivenImplementation<I, any>'.
318
- 'string' index signatures are incompatible.
319
- Type '(...Iw: any) => string' is not assignable to type '(...Ig: any) => [string, string]'.
320
- Type 'string' is not assignable to type '[string, string]'.
321
- src/lib/pmProxy.test/mockPM.ts(23,3): error TS2416: Property 'launchSideCar' in type 'MockPM' is not assignable to the same property in base type 'MockPMBase'.
313
+ src/lib/pmProxy.test/implementation.ts(102,15): error TS2554: Expected 1 arguments, but got 3.
314
+ src/lib/pmProxy.test/implementation.ts(114,17): error TS2322: Type '"screen.png"' is not assignable to type '`${string}.webm`'.
315
+ src/lib/pmProxy.test/index.ts(17,3): error TS2345: Argument of type 'ITestImplementation<I, any, M>' is not assignable to parameter of type 'ITestImplementation<I, any, object>'.
316
+ Type 'ITestImplementation<I, any, M>' is not assignable to type 'Omit<{ suites: TestSuiteImplementation<any>; givens: TestGivenImplementation<I, any>; whens: TestWhenImplementation<I, any>; thens: TestThenImplementation<...>; }, never>'.
317
+ Types of property 'givens' are incompatible.
318
+ Type '{ [x: string]: (...Iw: any) => string; }' is not assignable to type 'TestGivenImplementation<I, any>'.
319
+ 'string' index signatures are incompatible.
320
+ Type '(...Iw: any) => string' is not assignable to type '(...Ig: any) => [string, string]'.
321
+ Type 'string' is not assignable to type '[string, string]'.
322
+ src/lib/pmProxy.test/mockPM.ts(24,3): error TS2416: Property 'launchSideCar' in type 'MockPM' is not assignable to the same property in base type 'MockPMBase'.
322
323
  Type '(n: number) => Promise<[number, any]>' is not assignable to type '(n: number, testName: string, projectName: string) => Promise<void>'.
323
324
  Type 'Promise<[number, any]>' is not assignable to type 'Promise<void>'.
324
325
  Type '[number, any]' is not assignable to type 'void'.
325
- src/lib/pmProxy.test/types.ts(19,17): error TS2707: Generic type 'Ibdd_out' requires between 0 and 4 type arguments.
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 & { ...; }'.
326
+ src/lib/pmProxy.test/mockPMBase.ts(8,14): error TS2720: Class 'MockPMBase' incorrectly implements class 'PM_Base'. Did you mean to extend 'PM_Base' and inherit its members as a subclass?
327
+ Type 'MockPMBase' is missing the following properties from type 'PM_Base': mode, projectName, mapping
328
+ src/lib/pmProxy.test/types.ts(20,17): error TS2707: Generic type 'Ibdd_out' requires between 0 and 4 type arguments.
329
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(41,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 & { ...; }'.
328
330
  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
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>'.
331
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(52,47): error TS2339: Property 'suites' does not exist on type 'ITestImplementation<I, O, M>'.
332
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(53,45): error TS2339: Property 'givens' does not exist on type 'ITestImplementation<I, O, M>'.
333
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(54,44): error TS2339: Property 'whens' does not exist on type 'ITestImplementation<I, O, M>'.
334
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(55,44): error TS2339: Property 'thens' does not exist on type 'ITestImplementation<I, O, M>'.
335
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(60,53): error TS2339: Property 'givens' does not exist on type 'ITestImplementation<I, O, M>'.
336
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(132,35): error TS2339: Property 'whens' does not exist on type 'ITestImplementation<I, O, M>'.
337
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(133,45): error TS2339: Property 'whens' does not exist on type 'ITestImplementation<I, O, M>'.
338
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(139,35): error TS2339: Property 'thens' does not exist on type 'ITestImplementation<I, O, M>'.
339
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(140,45): error TS2339: Property 'thens' does not exist on type 'ITestImplementation<I, O, M>'.
340
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(147,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>'.
341
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(156,28): error TS2339: Property 'tests' does not exist on type 'BaseSuite<I, O>'.
342
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(156,50): error TS2339: Property 'tests' does not exist on type 'BaseSuite<I, O>'.
343
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(157,51): error TS2339: Property 'tests' does not exist on type 'BaseSuite<I, O>'.
344
+ src/lib/Tiposkripto.test/MockTiposkripto.ts(158,32): error TS2339: Property 'tests' does not exist on type 'BaseSuite<I, O>'.
343
345
  src/lib/Tiposkripto.test/Tiposkripto.adapter.ts(24,26): error TS2554: Expected 1 arguments, but got 2.
344
346
  src/lib/Tiposkripto.test/Tiposkripto.adapter.ts(27,26): error TS2554: Expected 1 arguments, but got 2.
345
347
  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'.
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>'.
348
+ src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(63,7): error TS2322: Type 'ITestImplementation<I, O, M>' is not assignable to type 'ITestImplementation<any, any>'.
349
349
  Type 'ITestImplementation<I, O, M>' is not assignable to type '{ whens: TestWhenImplementation<any, any>; }'.
350
350
  Types of property 'whens' are incompatible.
351
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>'.
@@ -353,48 +353,37 @@ src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(57,32): error TS2322: Typ
353
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
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
355
  Type 'Tiposkripto<any, any, any>' is missing the following properties from type 'Promise<any>': then, catch, finally, [Symbol.toStringTag]
356
- src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(62,11): error TS2322: Type 'never[]' is not assignable to type 'number'.
357
- src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(72,11): error TS2322: Type 'never[]' is not assignable to type 'number'.
358
- src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(82,11): error TS2322: Type 'never[]' is not assignable to type 'number'.
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>'.
356
+ src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(118,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
357
  Call signature return types '(builder: Tiposkripto<any, any, any>) => Promise<IFinalResults>' and '(builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>' are incompatible.
361
358
  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>'.
359
+ src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(123,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
360
  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>'.
361
+ src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(236,30): error TS2322: Type '(builder: any) => Promise<any>' is not assignable to type '(builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>'.
365
362
  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>'.
363
+ src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(240,32): error TS2322: Type '(builder: any) => Promise<any>' is not assignable to type '(builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>'.
367
364
  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>'.
365
+ src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(250,41): error TS2322: Type '(builder: any) => Promise<any>' is not assignable to type '(builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>'.
369
366
  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>'.
367
+ src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(256,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
368
  Call signature return types '(builder: any) => Promise<any>' and '(builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>' are incompatible.
372
369
  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>'.
370
+ src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(265,38): error TS2322: Type '(builder: any) => Promise<any>' is not assignable to type '(builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>'.
374
371
  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.
387
- src/mothership/test.ts(64,7): error TS2554: Expected 2 arguments, but got 3.
388
- src/mothership/test.ts(70,13): error TS2322: Type '(x: any) => any' is not assignable to type 'string'.
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 & { ...; }'.
372
+ src/lib/Tiposkripto.test/Tiposkripto.specification.ts(20,26): error TS2554: Expected 4 arguments, but got 3.
373
+ src/lib/Tiposkripto.test/Tiposkripto.specification.ts(25,35): error TS2554: Expected 4 arguments, but got 3.
374
+ src/lib/Tiposkripto.test/Tiposkripto.specification.ts(72,35): error TS2554: Expected 4 arguments, but got 3.
375
+ src/lib/Tiposkripto.test/Tiposkripto.specification.ts(77,34): error TS2554: Expected 4 arguments, but got 3.
376
+ src/lib/Tiposkripto.ts(221,7): error TS2345: Argument of type 'Record<string, any>' is not assignable to parameter of type 'SuiteSpecification<I, O>'.
377
+ src/lib/Tiposkripto.ts(281,15): error TS2554: Expected 1 arguments, but got 3.
378
+ 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 & { ...; }'.
390
379
  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
391
- src/Node.ts(56,12): error TS2304: Cannot find name 'Testeranto'.
392
- src/PM/__tests__/nodeSidecar.testeranto.ts(53,43): error TS2304: Cannot find name 'I'.
393
- src/PM/__tests__/nodeSidecar.testeranto.ts(54,13): error TS2322: Type '(x: any) => any' is not assignable to type 'string'.
394
- src/PM/__tests__/nodeSidecar.testeranto.ts(95,29): error TS2454: Variable 'callbackFn' is used before being assigned.
395
- src/PM/__tests__/nodeSidecar.testeranto.ts(126,18): error TS2339: Property 'removeListenerCalled' does not exist on type 'PM'.
396
- src/PM/__tests__/nodeSidecar.testeranto.ts(135,20): error TS2304: Cannot find name 'IPartialNodeAdapter'.
397
- src/PM/__tests__/nodeSidecar.testeranto.ts(135,40): error TS2304: Cannot find name 'I'.
380
+ src/Node.ts(55,12): error TS2304: Cannot find name 'Testeranto'.
381
+ src/PM/__tests__/nodeSidecar.testeranto.ts(57,13): error TS2322: Type '(x: any) => any' is not assignable to type 'string'.
382
+ src/PM/__tests__/nodeSidecar.testeranto.ts(98,29): error TS2454: Variable 'callbackFn' is used before being assigned.
383
+ src/PM/__tests__/nodeSidecar.testeranto.ts(129,18): error TS2339: Property 'removeListenerCalled' does not exist on type 'PM'.
384
+ src/PM/__tests__/nodeSidecar.testeranto.ts(138,7): error TS2739: Type '{ beforeEach: (subject: unknown, initializer: (c?: any) => unknown, testResource: ITTestResourceConfiguration, initialValues: any, pm: IPM) => Promise<unknown>; andWhen: (store: unknown, whenCB: unknown, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<...>; }' is missing the following properties from type 'ITestAdapter<Ibdd_in_any>': assertThis, butThen, afterAll, afterEach, beforeAll
385
+ src/PM/__tests__/nodeSidecar.testeranto.ts(141,5): error TS18046: 'sidecar' is of type 'unknown'.
386
+ src/PM/__tests__/nodeSidecar.testeranto.ts(150,13): error TS18046: 'whenCB' is of type 'unknown'.
398
387
  src/PM/__tests__/pureSidecar.testeranto.ts(53,43): error TS2304: Cannot find name 'I'.
399
388
  src/PM/__tests__/pureSidecar.testeranto.ts(54,13): error TS2322: Type '(x: any) => any' is not assignable to type 'string'.
400
389
  src/PM/__tests__/pureSidecar.testeranto.ts(69,7): error TS2322: Type '(event: string, callback: Function) => void' is not assignable to type '{ (event: "beforeExit", listener: BeforeExitListener): Process; (event: "disconnect", listener: DisconnectListener): Process; (event: "exit", listener: ExitListener): Process; (event: "rejectionHandled", listener: RejectionHandledListener): Process; (event: "uncaughtException", listener: UncaughtExceptionListener): ...'.
@@ -415,88 +404,63 @@ src/PM/__tests__/webSidecar.testeranto.ts(94,38): error TS2322: Type 'boolean' i
415
404
  src/PM/__tests__/webSidecar.testeranto.ts(109,18): error TS2339: Property 'removeListenerCalled' does not exist on type 'PM'.
416
405
  src/PM/__tests__/webSidecar.testeranto.ts(118,20): error TS2304: Cannot find name 'IPartialNodeAdapter'.
417
406
  src/PM/__tests__/webSidecar.testeranto.ts(118,40): error TS2304: Cannot find name 'I'.
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'.
433
- Type 'null' is not assignable to type 'number | undefined'.
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'.
445
- Property 'mainFrame' does not exist on type 'string'.
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; }'.
407
+ src/Pure.test.ts(67,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; }'.
447
408
  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; }'.
448
409
  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; }'.
449
- 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; }>'.
450
- 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.
451
- 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; }>'.
452
- Type '{ pm: IPM; } | { largePayload: boolean; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
453
- Type '{ pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
454
- Type '{ pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.
455
- 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; }) => { ...; }>'.
456
- 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.
457
- Type 'Promise<{ artifacts: any[]; pm: IPM; }>' is not assignable to type 'Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.
458
- Type '{ artifacts: any[]; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
459
- Type '{ artifacts: any[]; pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.
460
- src/Pure.test.ts(123,31): error TS2339: Property 'artifacts' does not exist on type '{ pm: IPM; }'.
461
- 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; }>'.
462
- 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.
463
- Type 'Promise<{ testJobs: any[]; pm: IPM; }>' is not assignable to type 'Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.
464
- Type '{ testJobs: any[]; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
465
- Type '{ testJobs: any[]; pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.
466
- 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; }) => { ...; }>'.
467
- 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.
468
- Type 'Promise<{ specs: any[]; pm: IPM; }>' is not assignable to type 'Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.
469
- Type '{ specs: any[]; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
470
- Type '{ specs: any[]; pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.
471
- src/Pure.test.ts(135,31): error TS2339: Property 'specs' does not exist on type '{ pm: IPM; }'.
472
- 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; }'.
410
+ src/Pure.test.ts(100,5): error TS2322: Type '(proxyType: string) => (store: { artifacts: never[]; specs: never[]; pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<{ artifacts: never[]; specs: never[]; pm: IPM; } | { ...; }>' is not assignable to type '(Iw_0: string) => (zel: { artifacts: never[]; specs: never[]; pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { ...; }>'.
411
+ Call signature return types '(store: { artifacts: never[]; specs: never[]; pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<{ artifacts: never[]; specs: never[]; pm: IPM; } | { ...; }>' and '(zel: { artifacts: never[]; specs: never[]; pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { ...; }>' are incompatible.
412
+ Type 'Promise<{ artifacts: never[]; specs: never[]; pm: IPM; } | { largePayload: boolean; pm: IPM; artifacts: never[]; specs: never[]; }>' is not assignable to type 'Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.
413
+ Type '{ artifacts: never[]; specs: never[]; pm: IPM; } | { largePayload: boolean; pm: IPM; artifacts: never[]; specs: never[]; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
414
+ Type '{ artifacts: never[]; specs: never[]; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
415
+ Type '{ artifacts: never[]; specs: never[]; pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.
416
+ src/Pure.test.ts(132,5): error TS2322: Type '(artifact: Promise<string>) => (store: { artifacts: never[]; specs: never[]; pm: IPM; }) => Promise<{ artifacts: Promise<string>[]; specs: never[]; pm: IPM; }>' is not assignable to type '(Iw_0: Promise<string>) => (zel: { artifacts: never[]; specs: never[]; pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { ...; }) => { ...; }>'.
417
+ Call signature return types '(store: { artifacts: never[]; specs: never[]; pm: IPM; }) => Promise<{ artifacts: Promise<string>[]; specs: never[]; pm: IPM; }>' and '(zel: { artifacts: never[]; specs: never[]; pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { ...; }>' are incompatible.
418
+ Type 'Promise<{ artifacts: Promise<string>[]; specs: never[]; pm: IPM; }>' is not assignable to type 'Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.
419
+ Type '{ artifacts: Promise<string>[]; specs: never[]; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
420
+ Type '{ artifacts: Promise<string>[]; specs: never[]; pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.
421
+ src/Pure.test.ts(138,5): error TS2322: Type '(jobs: any[]) => (store: { artifacts: never[]; specs: never[]; pm: IPM; }) => Promise<{ testJobs: any[]; artifacts: never[]; specs: never[]; pm: IPM; }>' is not assignable to type '(Iw_0: any[]) => (zel: { artifacts: never[]; specs: never[]; pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { ...; }>'.
422
+ Call signature return types '(store: { artifacts: never[]; specs: never[]; pm: IPM; }) => Promise<{ testJobs: any[]; artifacts: never[]; specs: never[]; pm: IPM; }>' and '(zel: { artifacts: never[]; specs: never[]; pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { ...; }>' are incompatible.
423
+ Type 'Promise<{ testJobs: any[]; artifacts: never[]; specs: never[]; pm: IPM; }>' is not assignable to type 'Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.
424
+ Type '{ testJobs: any[]; artifacts: never[]; specs: never[]; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
425
+ Type '{ testJobs: any[]; artifacts: never[]; specs: never[]; pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.
426
+ src/Pure.test.ts(144,5): error TS2322: Type '(modifier: (specs: any) => any[]) => (store: { artifacts: never[]; specs: never[]; pm: IPM; }) => Promise<{ specs: any[]; artifacts: never[]; pm: IPM; }>' is not assignable to type '(Iw_0: (specs: any) => any[]) => (zel: { artifacts: never[]; specs: never[]; pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { ...; }>'.
427
+ Call signature return types '(store: { artifacts: never[]; specs: never[]; pm: IPM; }) => Promise<{ specs: any[]; artifacts: never[]; pm: IPM; }>' and '(zel: { artifacts: never[]; specs: never[]; pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { ...; }>' are incompatible.
428
+ Type 'Promise<{ specs: any[]; artifacts: never[]; pm: IPM; }>' is not assignable to type 'Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.
429
+ Type '{ specs: any[]; artifacts: never[]; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
430
+ Type '{ specs: any[]; artifacts: never[]; pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.
431
+ src/Pure.test.ts(153,32): error TS2322: Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
473
432
  Target signature provides too few arguments. Expected 3 or more, but got 2.
474
- 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; }'.
433
+ src/Pure.test.ts(159,27): error TS2322: Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
475
434
  Target signature provides too few arguments. Expected 3 or more, but got 2.
476
- 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; }'.
435
+ src/Pure.test.ts(162,24): error TS2322: Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
477
436
  Target signature provides too few arguments. Expected 3 or more, but got 2.
478
- 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; }'.
437
+ src/Pure.test.ts(165,29): error TS2322: Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
479
438
  Target signature provides too few arguments. Expected 3 or more, but got 2.
480
- 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; }'.
439
+ src/Pure.test.ts(168,30): error TS2322: Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
481
440
  Target signature provides too few arguments. Expected 3 or more, but got 2.
482
- 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; }'.
483
- 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; }'.
441
+ src/Pure.test.ts(171,5): error TS2322: Type '(expectedCount: number) => (store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(It_0: number) => (ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
442
+ Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
484
443
  Target signature provides too few arguments. Expected 3 or more, but got 2.
485
- 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; }'.
486
- 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; }'.
444
+ src/Pure.test.ts(174,5): error TS2322: Type '(expectedPath: string) => (store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(It_0: string) => (ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
445
+ Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
487
446
  Target signature provides too few arguments. Expected 3 or more, but got 2.
488
- 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; }'.
447
+ src/Pure.test.ts(177,26): error TS2322: Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
489
448
  Target signature provides too few arguments. Expected 3 or more, but got 2.
490
- 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; }'.
491
- 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; }'.
449
+ src/Pure.test.ts(180,5): error TS2322: Type '(expectedError: string) => (store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(It_0: string) => (ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
450
+ Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
492
451
  Target signature provides too few arguments. Expected 3 or more, but got 2.
493
- 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; }'.
452
+ src/Pure.test.ts(183,33): error TS2322: Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
494
453
  Target signature provides too few arguments. Expected 3 or more, but got 2.
495
- 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; }'.
454
+ src/Pure.test.ts(186,31): error TS2322: Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
496
455
  Target signature provides too few arguments. Expected 3 or more, but got 2.
497
- 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; }'.
456
+ src/Pure.test.ts(189,29): error TS2322: Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
498
457
  Target signature provides too few arguments. Expected 3 or more, but got 2.
499
- src/Pure.test.ts(315,28): error TS2304: Cannot find name 'ITestAdapter'.
458
+ src/Pure.test.ts(328,30): error TS2339: Property 'pm' does not exist on type '() => { pm: IPM; config: {}; proxies: any; }'.
459
+ src/Pure.test.ts(331,40): error TS2554: Expected 1 arguments, but got 3.
460
+ src/Pure.test.ts(334,3): error TS2719: Type '(store: { pm: import("/Users/adam/Code/testeranto/src/lib/types").IPM; artifacts?: any[] | undefined; testJobs?: any[] | undefined; specs?: any[] | undefined; largePayload?: boolean | undefined; }, thenCB: (store: { ...; }) => { ...; }, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResource...' is not assignable to type '(store: { pm: import("/Users/adam/Code/testeranto/src/lib/types").IPM; artifacts?: any[] | undefined; testJobs?: any[] | undefined; specs?: any[] | undefined; largePayload?: boolean | undefined; }, thenCB: (store: { ...; }) => { ...; }, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResource...'. Two different types with this name exist, but they are unrelated.
461
+ Type 'Promise<{ [key: string]: any; pm: IPM; }>' is not assignable to type 'Promise<{ artifacts: never[]; specs: never[]; pm: IPM; }>'.
462
+ Type '{ [key: string]: any; pm: IPM; }' is missing the following properties from type '{ artifacts: never[]; specs: never[]; pm: IPM; }': artifacts, specs
463
+ src/Pure.test.ts(335,40): error TS2554: Expected 1 arguments, but got 3.
500
464
  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 & { ...; }'.
501
465
  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
466
  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>'.
@@ -504,35 +468,6 @@ src/Pure.ts(42,9): error TS2416: Property 'receiveTestResourceConfig' in type 'P
504
468
  Type 'Promise<IFinalResults | { failed: boolean; fails: number; artifacts: never[]; features: never[]; }>' is not assignable to type 'Promise<IFinalResults>'.
505
469
  Type 'IFinalResults | { failed: boolean; fails: number; artifacts: never[]; features: never[]; }' is not assignable to type 'IFinalResults'.
506
470
  Type '{ failed: boolean; fails: number; artifacts: never[]; features: never[]; }' is missing the following properties from type 'IFinalResults': tests, runTimeTests
507
- src/Pure.ts(83,21): error TS2304: Cannot find name 'Testeranto'.
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.
509
- Type 'Promise<Server<typeof IncomingMessage, typeof ServerResponse>>' is not assignable to type 'Promise<number>'.
510
- Type 'Server<typeof IncomingMessage, typeof ServerResponse>' is not assignable to type 'number'.
511
- src/ReportServer.test.ts/index.ts(174,51): error TS2304: Cannot find name 'IProjectPageViewProps'.
512
- src/ReportServer.test.ts/index.ts(180,14): error TS2304: Cannot find name 'IProjectPageViewProps'.
513
- src/ReportServer.test.ts/index.ts(182,10): error TS2304: Cannot find name 'IProjectPageViewProps'.
514
- 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>'.
515
- Type 'void' is not assignable to type 'Server<typeof IncomingMessage, typeof ServerResponse>'.
516
- src/ReportServer.ts(8,20): error TS2345: Argument of type 'string | 3000' is not assignable to parameter of type 'number'.
517
- Type 'string' is not assignable to type 'number'.
518
- src/ReportServerLib.ts(111,33): error TS2339: Property 'status' does not exist on type 'Error'.
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'.
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.
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.
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.
531
- 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.
532
- 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.
533
- src/utils/makePrompt.ts(60,31): error TS2345: Argument of type 'IRunTime' is not assignable to parameter of type 'RuntimeName'.
534
- Type '"golang"' is not assignable to type 'RuntimeName'.
535
- 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 & { ...; }'.
471
+ src/Web.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 & { ...; }'.
536
472
  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
537
- src/Web.ts(92,12): error TS2552: Cannot find name 'Testeranto'. Did you mean 'WebTesteranto'?
538
473
  info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.