testeranto 0.189.0 → 0.197.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 (632) hide show
  1. package/ALL_LICENSES.txt +11246 -0
  2. package/LICENSE +21 -0
  3. package/default-project.json +44 -0
  4. package/design-editor/DesignEditor.tsx +247 -0
  5. package/design-editor/index.ts +2 -0
  6. package/design-editor/server.ts +121 -0
  7. package/design-editor/types.ts +16 -0
  8. package/designs/default-project.json +210 -0
  9. package/dist/common/design-editor/DesignEditor.js +239 -0
  10. package/dist/common/design-editor/index.js +18 -0
  11. package/dist/common/design-editor/server.js +98 -0
  12. package/dist/common/design-editor/types.js +2 -0
  13. package/dist/common/src/App.js +11 -1
  14. package/dist/common/src/PM/PM_WithEslintAndTsc.js +8 -1
  15. package/dist/common/src/PM/base.js +1 -0
  16. package/dist/common/src/PM/main.js +370 -4
  17. package/dist/common/src/PM/node.js +4 -2
  18. package/dist/common/src/PM/pure.js +15 -57
  19. package/dist/common/src/PM/web.js +5 -3
  20. package/dist/common/src/Pure.test.js +46 -78
  21. package/dist/common/src/ReportServer.js +8 -2
  22. package/dist/common/src/build.js +1 -1
  23. package/dist/common/src/components/DesignEditorPage.js +169 -0
  24. package/dist/common/src/components/pure/AppFrame.js +62 -13
  25. package/dist/common/src/components/pure/ModalContent.test/implementation.js +13 -11
  26. package/dist/common/src/components/pure/ModalContent.test/index.js +48 -2
  27. package/dist/common/src/components/pure/ModalContent.test/specification.js +2 -2
  28. package/dist/common/src/components/pure/NavBar.js +9 -10
  29. package/dist/common/src/components/pure/ProcessManager.js +112 -0
  30. package/dist/common/src/components/pure/ProcessManagerView.js +237 -0
  31. package/dist/common/src/components/pure/ProjectPageView.test/implementation.js +134 -106
  32. package/dist/common/src/components/pure/ProjectsPageView.js +18 -12
  33. package/dist/common/src/components/pure/SettingsButton.js +4 -74
  34. package/dist/common/src/components/pure/SingleProcessView.js +214 -0
  35. package/dist/common/src/components/pure/TestPageView.js +457 -78
  36. package/dist/common/src/components/pure/TestPageView.test/implementation.js +90 -135
  37. package/dist/common/src/components/stateful/FeaturesReporter.js +1 -1
  38. package/dist/common/src/components/stateful/FileTree.js +40 -0
  39. package/dist/common/src/components/stateful/ProcessManagerPage.js +112 -0
  40. package/dist/common/src/components/stateful/ProjectPage.js +6 -5
  41. package/dist/common/src/components/stateful/ProjectsPage.js +32 -6
  42. package/dist/common/src/components/stateful/SettingsPage.js +72 -0
  43. package/dist/common/src/components/stateful/SingleProcessPage.js +147 -0
  44. package/dist/common/src/components/stateful/TestPage.js +104 -8
  45. package/dist/common/src/components/stateful/TextEditorPage.js +154 -0
  46. package/dist/common/src/esbuildConfigs/inputFilesPlugin.js +3 -4
  47. package/dist/common/src/lib/BaseSuite.js +6 -3
  48. package/dist/common/src/lib/BaseSuite.test/mock.js +17 -30
  49. package/dist/common/src/lib/BaseSuite.test/test.js +33 -31
  50. package/dist/common/src/lib/abstractBase.js +28 -8
  51. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +12 -6
  52. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +12 -12
  53. package/dist/common/src/lib/basebuilder.js +1 -9
  54. package/dist/common/src/lib/classBuilder.js +3 -3
  55. package/dist/common/src/lib/core.js +3 -5
  56. package/dist/common/src/lib/index.js +11 -14
  57. package/dist/common/src/lib/pmProxy.js +37 -14
  58. package/dist/common/src/lib/pmProxy.test/adapter.js +12 -2
  59. package/dist/common/src/lib/pmProxy.test/implementation.js +73 -43
  60. package/dist/common/src/lib/pmProxy.test/specification.js +3 -0
  61. package/dist/common/src/utils/api.js +44 -33
  62. package/dist/common/src/utils/logFiles.js +48 -22
  63. package/dist/common/src/utils/makePrompt.js +5 -4
  64. package/dist/common/testeranto.config.js +15 -13
  65. package/dist/common/tsconfig.common.tsbuildinfo +1 -1
  66. package/dist/module/design-editor/DesignEditor.js +203 -0
  67. package/dist/module/design-editor/index.js +2 -0
  68. package/dist/module/design-editor/server.js +92 -0
  69. package/dist/module/src/App.js +11 -1
  70. package/dist/module/src/PM/PM_WithEslintAndTsc.js +8 -1
  71. package/dist/module/src/PM/base.js +1 -0
  72. package/dist/module/src/PM/main.js +370 -4
  73. package/dist/module/src/PM/node.js +4 -2
  74. package/dist/module/src/PM/pure.js +15 -57
  75. package/dist/module/src/PM/web.js +5 -3
  76. package/dist/module/src/Pure.test.js +46 -78
  77. package/dist/module/src/ReportServer.js +8 -2
  78. package/dist/module/src/build.js +1 -1
  79. package/dist/module/src/components/DesignEditorPage.js +132 -0
  80. package/dist/module/src/components/pure/AppFrame.js +30 -11
  81. package/dist/module/src/components/pure/ModalContent.test/implementation.js +13 -11
  82. package/dist/module/src/components/pure/ModalContent.test/index.js +48 -2
  83. package/dist/module/src/components/pure/ModalContent.test/specification.js +2 -2
  84. package/dist/module/src/components/pure/NavBar.js +10 -11
  85. package/dist/module/src/components/pure/ProcessManager.js +75 -0
  86. package/dist/module/src/components/pure/ProcessManagerView.js +200 -0
  87. package/dist/module/src/components/pure/ProjectPageView.test/implementation.js +134 -106
  88. package/dist/module/src/components/pure/ProjectsPageView.js +20 -14
  89. package/dist/module/src/components/pure/SettingsButton.js +5 -42
  90. package/dist/module/src/components/pure/SingleProcessView.js +214 -0
  91. package/dist/module/src/components/pure/TestPageView.js +425 -76
  92. package/dist/module/src/components/pure/TestPageView.test/implementation.js +90 -135
  93. package/dist/module/src/components/stateful/FeaturesReporter.js +1 -1
  94. package/dist/module/src/components/stateful/FileTree.js +33 -0
  95. package/dist/module/src/components/stateful/ProcessManagerPage.js +75 -0
  96. package/dist/module/src/components/stateful/ProjectPage.js +6 -5
  97. package/dist/module/src/components/stateful/ProjectsPage.js +32 -6
  98. package/dist/module/src/components/stateful/SettingsPage.js +35 -0
  99. package/dist/module/src/components/stateful/SingleProcessPage.js +110 -0
  100. package/dist/module/src/components/stateful/TestPage.js +104 -8
  101. package/dist/module/src/components/stateful/TextEditorPage.js +117 -0
  102. package/dist/module/src/esbuildConfigs/inputFilesPlugin.js +3 -4
  103. package/dist/module/src/lib/BaseSuite.js +6 -3
  104. package/dist/module/src/lib/BaseSuite.test/mock.js +17 -30
  105. package/dist/module/src/lib/BaseSuite.test/test.js +33 -31
  106. package/dist/module/src/lib/abstractBase.js +28 -8
  107. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +12 -6
  108. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +12 -12
  109. package/dist/module/src/lib/basebuilder.js +1 -9
  110. package/dist/module/src/lib/classBuilder.js +3 -3
  111. package/dist/module/src/lib/core.js +3 -5
  112. package/dist/module/src/lib/index.js +11 -14
  113. package/dist/module/src/lib/pmProxy.js +37 -14
  114. package/dist/module/src/lib/pmProxy.test/adapter.js +12 -2
  115. package/dist/module/src/lib/pmProxy.test/implementation.js +73 -43
  116. package/dist/module/src/lib/pmProxy.test/specification.js +3 -0
  117. package/dist/module/src/utils/api.js +45 -34
  118. package/dist/module/src/utils/logFiles.js +45 -20
  119. package/dist/module/src/utils/makePrompt.js +5 -4
  120. package/dist/module/testeranto.config.js +15 -13
  121. package/dist/module/tsconfig.module.tsbuildinfo +1 -1
  122. package/dist/prebuild/App.css +54 -513
  123. package/dist/prebuild/App.js +13296 -2438
  124. package/dist/prebuild/ReportServer.mjs +104 -6
  125. package/dist/prebuild/build.mjs +8 -5
  126. package/dist/prebuild/run.mjs +389 -37
  127. package/dist/types/design-editor/DesignEditor.d.ts +18 -0
  128. package/dist/types/design-editor/server.d.ts +1 -0
  129. package/dist/types/{PM → src/PM}/index.d.ts +1 -1
  130. package/dist/types/{PM → src/PM}/main.d.ts +19 -0
  131. package/dist/types/{PM → src/PM}/pure.d.ts +7 -7
  132. package/dist/types/{Pure.test.d.ts → src/Pure.test.d.ts} +13 -1
  133. package/dist/types/src/components/DesignEditorPage.d.ts +1 -0
  134. package/dist/types/{components → src/components}/pure/AppFrame.d.ts +3 -1
  135. package/dist/types/{components/pure/ProjectPageView.test → src/components/pure/ModalContent.test}/index.d.ts +2 -1
  136. package/dist/types/{components → src/components}/pure/NavBar.d.ts +4 -0
  137. package/dist/types/src/components/pure/ProcessManager.d.ts +8 -0
  138. package/dist/types/src/components/pure/ProcessManagerView.d.ts +20 -0
  139. package/dist/types/{components → src/components}/pure/ProjectsPageView.d.ts +1 -1
  140. package/dist/types/src/components/pure/SettingsButton.d.ts +2 -0
  141. package/dist/types/{components → src/components}/pure/TestPageView.test/implementation.d.ts +3 -2
  142. package/dist/types/src/components/pure/TestPageView.test/index.d.ts +3 -0
  143. package/dist/types/src/components/stateful/FileTree.d.ts +8 -0
  144. package/dist/types/src/components/stateful/ProcessManagerPage.d.ts +2 -0
  145. package/dist/types/src/components/stateful/SettingsPage.d.ts +2 -0
  146. package/dist/types/src/components/stateful/SingleProcessPage.d.ts +2 -0
  147. package/dist/types/src/components/stateful/TextEditorPage.d.ts +1 -0
  148. package/dist/types/{lib → src/lib}/BaseSuite.test/mock.d.ts +3 -3
  149. package/dist/types/{lib → src/lib}/basebuilder.d.ts +1 -1
  150. package/dist/types/{lib → src/lib}/index.d.ts +1 -1
  151. package/dist/types/{lib → src/lib}/pmProxy.test/mockPMBase.d.ts +1 -1
  152. package/dist/types/src/run.d.ts +1 -0
  153. package/dist/types/src/utils/logFiles.d.ts +71 -0
  154. package/dist/types/tsconfig.types.tsbuildinfo +1 -1
  155. package/docs/test-page-components.md +91 -0
  156. package/package.json +27 -8
  157. package/src/App.tsx +11 -0
  158. package/src/PM/PM_WithEslintAndTsc.ts +9 -4
  159. package/src/PM/base.ts +1 -0
  160. package/src/PM/index.ts +1 -1
  161. package/src/PM/main.ts +424 -8
  162. package/src/PM/node.ts +5 -2
  163. package/src/PM/pure.ts +23 -61
  164. package/src/PM/web.ts +7 -3
  165. package/src/Pure.test.ts +63 -99
  166. package/src/README.md +20 -1
  167. package/src/ReportServer.ts +10 -3
  168. package/src/app.scss +169 -0
  169. package/src/build.ts +5 -1
  170. package/src/components/DesignEditorPage.tsx +169 -0
  171. package/src/components/pure/AppFrame.tsx +121 -16
  172. package/src/components/pure/ModalContent.test/implementation.tsx +14 -12
  173. package/src/components/pure/ModalContent.test/index.tsx +58 -6
  174. package/src/components/pure/ModalContent.test/specification.ts +2 -2
  175. package/src/components/pure/NavBar.tsx +31 -15
  176. package/src/components/pure/ProcessManager.tsx +117 -0
  177. package/src/components/pure/ProcessManagerView.tsx +414 -0
  178. package/src/components/pure/ProjectPageView.test/implementation.tsx +136 -106
  179. package/src/components/pure/ProjectPageView.test/index.tsx +0 -2
  180. package/src/components/pure/ProjectsPageView.tsx +41 -31
  181. package/src/components/pure/SettingsButton.tsx +7 -62
  182. package/src/components/pure/SingleProcessView.tsx +235 -0
  183. package/src/components/pure/TestPageView.test/implementation.ts +115 -147
  184. package/src/components/pure/TestPageView.test/specification.ts +0 -1
  185. package/src/components/pure/TestPageView.tsx +821 -100
  186. package/src/components/stateful/FeaturesReporter.tsx +1 -1
  187. package/src/components/stateful/FileTree.tsx +66 -0
  188. package/src/components/stateful/ProcessManagerPage.tsx +108 -0
  189. package/src/components/stateful/ProjectPage.tsx +6 -5
  190. package/src/components/stateful/ProjectsPage.tsx +36 -7
  191. package/src/components/stateful/SettingsPage.tsx +82 -0
  192. package/src/components/stateful/SingleProcessPage.tsx +155 -0
  193. package/src/components/stateful/TestPage.tsx +128 -20
  194. package/src/components/stateful/TextEditorPage.tsx +170 -0
  195. package/src/esbuildConfigs/inputFilesPlugin.ts +3 -4
  196. package/src/lib/BaseSuite.test/mock.ts +20 -41
  197. package/src/lib/BaseSuite.test/test.ts +38 -42
  198. package/src/lib/BaseSuite.ts +6 -3
  199. package/src/lib/abstractBase.ts +33 -14
  200. package/src/lib/baseBuilder.test/baseBuilder.test.adapter.ts +14 -7
  201. package/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts +15 -14
  202. package/src/lib/basebuilder.ts +4 -9
  203. package/src/lib/classBuilder.ts +8 -10
  204. package/src/lib/core.ts +3 -19
  205. package/src/lib/index.ts +19 -19
  206. package/src/lib/pmProxy.test/adapter.ts +10 -2
  207. package/src/lib/pmProxy.test/implementation.ts +108 -57
  208. package/src/lib/pmProxy.test/mockPMBase.ts +1 -1
  209. package/src/lib/pmProxy.test/specification.ts +11 -0
  210. package/src/lib/pmProxy.ts +40 -15
  211. package/src/style.scss +3 -502
  212. package/src/templates/frontpage.html +317 -40
  213. package/src/templates/frontpage.md +79 -0
  214. package/src/themes.scss +40 -8
  215. package/src/utils/api.ts +47 -44
  216. package/src/utils/logFiles.ts +57 -23
  217. package/src/utils/makePrompt.ts +5 -4
  218. package/stargazers.txt +15 -0
  219. package/stargzers.js +68 -0
  220. package/testeranto/App.css +54 -513
  221. package/testeranto/App.js +13296 -2438
  222. package/testeranto/bundles/node/core/{chunk-L67RWZ4W.mjs → chunk-4CSH4UJE.mjs} +89 -116
  223. package/testeranto/bundles/node/core/{chunk-JBB5E3XJ.mjs → chunk-4JTDLQVA.mjs} +4 -9
  224. package/testeranto/bundles/node/core/chunk-C3APFDUV.mjs +70 -0
  225. package/testeranto/bundles/node/core/src/lib/BaseSuite.test/node.test.mjs +30 -42
  226. package/testeranto/bundles/node/core/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +27 -31
  227. package/testeranto/bundles/node/core/src/lib/classBuilder.test/classBuilder.test.mjs +4 -16
  228. package/testeranto/bundles/node/core/src/lib/core.test/core.test.mjs +16 -27
  229. package/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs +468 -517
  230. package/testeranto/bundles/pure/core/{chunk-KHJ35R7C.mjs → chunk-62UVCSQC.mjs} +97 -72
  231. package/testeranto/bundles/pure/core/src/Pure.test.mjs +56 -74
  232. package/testeranto/bundles/pure/core/src/lib/BaseSuite.test/pure.test.mjs +39 -66
  233. package/testeranto/bundles/pure/core/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +25 -19
  234. package/testeranto/metafiles/node/core.json +2906 -0
  235. package/testeranto/{bundles/pure/core/metafile.json → metafiles/pure/core.json} +66 -81
  236. package/testeranto/metafiles/web/core.json +546 -0
  237. package/testeranto/reports/core/config.json +0 -24
  238. package/testeranto/reports/core/src/Pure.test/pure/prompt.txt +1 -1
  239. package/testeranto/reports/core/src/Pure.test/pure/type_errors.txt +59 -94
  240. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/error.log +2 -55
  241. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/info.log +0 -2
  242. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/error.log +3 -33
  243. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/info.log +0 -4
  244. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/error.log +3 -0
  245. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/info.log +0 -2
  246. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/prompt.txt +2 -2
  247. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/type_errors.txt +38 -90
  248. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/prompt.txt +1 -1
  249. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +38 -90
  250. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/error.log +2 -0
  251. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.txt +10 -0
  252. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/prompt.txt +3 -3
  253. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/stdout.log +6 -2
  254. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +4 -4
  255. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +22 -45
  256. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.txt +10 -0
  257. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/prompt.txt +1 -1
  258. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +22 -45
  259. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/error.log +2 -0
  260. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/prompt.txt +4 -4
  261. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/tests.json +10 -10
  262. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt +38 -90
  263. package/testeranto/reports/core/src/lib/core.test/core.test/node/prompt.txt +4 -4
  264. package/testeranto/reports/core/src/lib/core.test/core.test/node/type_errors.txt +5 -24
  265. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/lint_errors.txt +6 -14
  266. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/prompt.txt +3 -3
  267. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stderr.log +88 -0
  268. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stdout.log +10 -0
  269. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/tests.json +33 -43
  270. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/type_errors.txt +17 -43
  271. package/testeranto/reports/core/summary.json +15 -51
  272. package/testeranto/reportsweb_build_errors +546 -0
  273. package/testeranto.config.ts +16 -13
  274. package/tsc.log +37 -16
  275. package/tsconfig.json +3 -2
  276. package/CNAME +0 -1
  277. package/README.html +0 -302
  278. package/dist/common/src/PM/layers/base/PM_Base.js +0 -1
  279. package/dist/common/src/PM/layers/base/components/PageOperations.js +0 -1
  280. package/dist/common/src/PM/layers/base/components/PageOperations.testeranto.js +0 -1
  281. package/dist/common/src/PM/layers/linting/components/Linter.js +0 -1
  282. package/dist/common/src/PM/layers/linting/components/TypeChecker.js +0 -1
  283. package/dist/common/src/PM/layers/main/components/SidecarManager.js +0 -1
  284. package/dist/common/src/PM/layers/main/components/TestRunner.js +0 -1
  285. package/dist/module/src/PM/layers/base/PM_Base.js +0 -1
  286. package/dist/module/src/PM/layers/base/components/PageOperations.js +0 -1
  287. package/dist/module/src/PM/layers/base/components/PageOperations.testeranto.js +0 -1
  288. package/dist/module/src/PM/layers/linting/components/Linter.js +0 -1
  289. package/dist/module/src/PM/layers/linting/components/TypeChecker.js +0 -1
  290. package/dist/module/src/PM/layers/main/components/SidecarManager.js +0 -1
  291. package/dist/module/src/PM/layers/main/components/TestRunner.js +0 -1
  292. package/dist/tsconfig.tsbuildinfo +0 -1
  293. package/dist/types/PM/layers/base/components/PageOperations.d.ts +0 -0
  294. package/dist/types/PM/layers/base/components/PageOperations.testeranto.d.ts +0 -0
  295. package/dist/types/PM/layers/linting/components/Linter.d.ts +0 -0
  296. package/dist/types/PM/layers/linting/components/TypeChecker.d.ts +0 -0
  297. package/dist/types/PM/layers/main/components/SidecarManager.d.ts +0 -0
  298. package/dist/types/PM/layers/main/components/TestRunner.d.ts +0 -0
  299. package/dist/types/components/pure/SettingsButton.d.ts +0 -3
  300. package/dist/types/components/pure/TestPageView.test/index.d.ts +0 -32
  301. package/dist/types/utils/logFiles.d.ts +0 -7
  302. package/docs.html +0 -590
  303. package/example.css +0 -351
  304. package/index.html +0 -138
  305. package/scripts/compile-docs.js +0 -150
  306. package/smil30/SMIL-anim.mod.xsd +0 -163
  307. package/smil30/SMIL-control.mod.xsd +0 -73
  308. package/smil30/SMIL-layout.mod.xsd +0 -149
  309. package/smil30/SMIL-link.mod.xsd +0 -145
  310. package/smil30/SMIL-media.mod.xsd +0 -1646
  311. package/smil30/SMIL-metainformation.mod.xsd +0 -45
  312. package/smil30/SMIL-smiltext.mod.xsd +0 -353
  313. package/smil30/SMIL-state.mod.xsd +0 -133
  314. package/smil30/SMIL-struct.mod.xsd +0 -70
  315. package/smil30/SMIL-timing.mod.xsd +0 -105
  316. package/smil30/SMIL-transition.mod.xsd +0 -229
  317. package/smil30/SMIL.xsd +0 -63
  318. package/smil30/its.xsd +0 -42
  319. package/smil30/smil-attribs-1.mod.xsd +0 -610
  320. package/smil30/smil-datatypes-1.mod.xsd +0 -72
  321. package/smil30/smil-framework-1.mod.xsd +0 -45
  322. package/smil30/xml.xsd +0 -16
  323. package/src/App.scss +0 -123
  324. package/src/PM/layers/base/PM_Base.ts +0 -0
  325. package/src/PM/layers/base/components/PageOperations.testeranto.ts +0 -0
  326. package/src/PM/layers/base/components/PageOperations.ts +0 -0
  327. package/src/PM/layers/linting/components/Linter.ts +0 -0
  328. package/src/PM/layers/linting/components/TypeChecker.ts +0 -0
  329. package/src/PM/layers/main/components/SidecarManager.ts +0 -0
  330. package/src/PM/layers/main/components/TestRunner.ts +0 -0
  331. package/src/fonts.scss +0 -55
  332. package/style.css +0 -12175
  333. package/testeranto/bundles/node/core/chunk-ZQRRQYS4.mjs +0 -92
  334. package/testeranto/bundles/node/core/metafile.json +0 -5735
  335. package/testeranto/bundles/node/core/src/mothership/test.mjs +0 -24588
  336. package/testeranto/bundles/web/core/MPLUSRounded1c-Black-O75GP5JI.ttf +0 -0
  337. package/testeranto/bundles/web/core/MPLUSRounded1c-Bold-R524Q5BH.ttf +0 -0
  338. package/testeranto/bundles/web/core/MPLUSRounded1c-ExtraBold-C6GRMYVT.ttf +0 -0
  339. package/testeranto/bundles/web/core/MPLUSRounded1c-Light-WKN65Y2C.ttf +0 -0
  340. package/testeranto/bundles/web/core/MPLUSRounded1c-Medium-ZC4DWL7C.ttf +0 -0
  341. package/testeranto/bundles/web/core/MPLUSRounded1c-Regular-DT6EKZ3S.ttf +0 -0
  342. package/testeranto/bundles/web/core/MPLUSRounded1c-Thin-YWDNVG6M.ttf +0 -0
  343. package/testeranto/bundles/web/core/chunk-BADF3AZF.mjs +0 -108
  344. package/testeranto/bundles/web/core/chunk-BXV27S2S.mjs +0 -6252
  345. package/testeranto/bundles/web/core/chunk-EIYZKF2C.mjs +0 -223
  346. package/testeranto/bundles/web/core/chunk-FNXFUNA7.mjs +0 -28528
  347. package/testeranto/bundles/web/core/chunk-LU364HVS.mjs +0 -3311
  348. package/testeranto/bundles/web/core/chunk-QWII7WIM.mjs +0 -2281
  349. package/testeranto/bundles/web/core/chunk-VAYOSMXI.mjs +0 -21775
  350. package/testeranto/bundles/web/core/metafile.json +0 -18227
  351. package/testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.css +0 -12105
  352. package/testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.html +0 -15
  353. package/testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.mjs +0 -517
  354. package/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs +0 -166
  355. package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.css +0 -12105
  356. package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.html +0 -15
  357. package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.mjs +0 -93
  358. package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.css +0 -12105
  359. package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs +0 -343
  360. package/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.css +0 -12105
  361. package/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.mjs +0 -483
  362. package/testeranto/bundles/web/core/src/lib/BaseSuite.test/web.test.mjs +0 -394
  363. package/testeranto/bundles/web/core/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +0 -256
  364. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/debug.log +0 -0
  365. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/error.log +0 -22
  366. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/exit.log +0 -1
  367. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/info.log +0 -4
  368. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/lint_errors.txt +0 -2
  369. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/message.txt +0 -17
  370. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/prompt.txt +0 -18
  371. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/tests.json +0 -57
  372. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/type_errors.txt +0 -55
  373. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/warn.log +0 -0
  374. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/lint_errors.txt +0 -0
  375. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/message.txt +0 -17
  376. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/prompt.txt +0 -16
  377. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/suite-0/given-basicRender/then-4/butThen/features-reporter.png +0 -0
  378. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/tests.json +0 -76
  379. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/type_errors.txt +0 -80
  380. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/debug.log +0 -0
  381. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/error.log +0 -0
  382. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/exit.log +0 -0
  383. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/info.log +0 -4
  384. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/lint_errors.txt +0 -0
  385. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/message.txt +0 -17
  386. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/prompt.txt +0 -15
  387. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/suite-0/given-basicRender/then-2/butThen/modal-content.png +0 -0
  388. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/tests.json +0 -42
  389. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/type_errors.txt +0 -65
  390. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/warn.log +0 -0
  391. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +0 -2
  392. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/message.txt +0 -17
  393. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/prompt.txt +0 -16
  394. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/suite-0/given-basicRender/then-6/butThen/happy-state.png +0 -0
  395. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/suite-0/given-errorHandling/then-1/butThen/error-state.png +0 -0
  396. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/tests.json +0 -99
  397. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +0 -91
  398. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/lint_errors.txt +0 -0
  399. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/message.txt +0 -17
  400. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/prompt.txt +0 -18
  401. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/tests.json +0 -69
  402. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/type_errors.txt +0 -111
  403. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/lint_errors.txt +0 -0
  404. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/message.txt +0 -17
  405. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/prompt.txt +0 -15
  406. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/tests.json +0 -31
  407. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/type_errors.txt +0 -113
  408. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/lint_errors.txt +0 -0
  409. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/message.txt +0 -17
  410. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +0 -17
  411. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/suite-0/given-testInitialization/then-0/butThen/hello.txt +0 -1
  412. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/suite-0/given-testInitialization/then-1/butThen/artifact_test.txt +0 -1
  413. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +0 -71
  414. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +0 -65
  415. package/testeranto/reports/core/src/mothership/test/node/exit.log +0 -1
  416. package/testeranto/reports/core/src/mothership/test/node/lint_errors.txt +0 -0
  417. package/testeranto/reports/core/src/mothership/test/node/message.txt +0 -17
  418. package/testeranto/reports/core/src/mothership/test/node/prompt.txt +0 -14
  419. package/testeranto/reports/core/src/mothership/test/node/stderr.log +0 -27
  420. package/testeranto/reports/core/src/mothership/test/node/stdout.log +0 -8
  421. package/testeranto/reports/core/src/mothership/test/node/tests.json +0 -36
  422. package/testeranto/reports/core/src/mothership/test/node/type_errors.txt +0 -38
  423. package/videos/download-smil-xsd.sh +0 -29
  424. package/videos/project0/index.md +0 -72
  425. package/videos/project0/narration.json +0 -7
  426. package/videos/project0/narration.ssml +0 -58
  427. package/videos/project0/package.json +0 -21
  428. package/videos/project0/presentation.smil +0 -25
  429. package/videos/project0/smil30/SMIL-anim.mod.xsd +0 -163
  430. package/videos/project0/smil30/SMIL-anim.mod.xsd.1 +0 -163
  431. package/videos/project0/smil30/SMIL-anim.mod.xsd.2 +0 -163
  432. package/videos/project0/smil30/SMIL-control.mod.xsd +0 -73
  433. package/videos/project0/smil30/SMIL-control.mod.xsd.1 +0 -73
  434. package/videos/project0/smil30/SMIL-control.mod.xsd.2 +0 -73
  435. package/videos/project0/smil30/SMIL-layout.mod.xsd +0 -149
  436. package/videos/project0/smil30/SMIL-layout.mod.xsd.1 +0 -149
  437. package/videos/project0/smil30/SMIL-layout.mod.xsd.2 +0 -149
  438. package/videos/project0/smil30/SMIL-link.mod.xsd +0 -145
  439. package/videos/project0/smil30/SMIL-link.mod.xsd.1 +0 -145
  440. package/videos/project0/smil30/SMIL-link.mod.xsd.2 +0 -145
  441. package/videos/project0/smil30/SMIL-media.mod.xsd +0 -1646
  442. package/videos/project0/smil30/SMIL-media.mod.xsd.1 +0 -1646
  443. package/videos/project0/smil30/SMIL-media.mod.xsd.2 +0 -1646
  444. package/videos/project0/smil30/SMIL-metainformation.mod.xsd +0 -45
  445. package/videos/project0/smil30/SMIL-metainformation.mod.xsd.1 +0 -45
  446. package/videos/project0/smil30/SMIL-metainformation.mod.xsd.2 +0 -45
  447. package/videos/project0/smil30/SMIL-smiltext.mod.xsd +0 -353
  448. package/videos/project0/smil30/SMIL-smiltext.mod.xsd.1 +0 -353
  449. package/videos/project0/smil30/SMIL-smiltext.mod.xsd.2 +0 -353
  450. package/videos/project0/smil30/SMIL-state.mod.xsd +0 -133
  451. package/videos/project0/smil30/SMIL-state.mod.xsd.1 +0 -133
  452. package/videos/project0/smil30/SMIL-state.mod.xsd.2 +0 -133
  453. package/videos/project0/smil30/SMIL-struct.mod.xsd +0 -70
  454. package/videos/project0/smil30/SMIL-struct.mod.xsd.1 +0 -70
  455. package/videos/project0/smil30/SMIL-struct.mod.xsd.2 +0 -70
  456. package/videos/project0/smil30/SMIL-timing.mod.xsd +0 -105
  457. package/videos/project0/smil30/SMIL-timing.mod.xsd.1 +0 -105
  458. package/videos/project0/smil30/SMIL-timing.mod.xsd.2 +0 -105
  459. package/videos/project0/smil30/SMIL-transition.mod.xsd +0 -229
  460. package/videos/project0/smil30/SMIL-transition.mod.xsd.1 +0 -229
  461. package/videos/project0/smil30/SMIL-transition.mod.xsd.2 +0 -229
  462. package/videos/project0/smil30/SMIL.xsd +0 -63
  463. package/videos/project0/smil30/SMIL.xsd.1 +0 -63
  464. package/videos/project0/smil30/SMIL.xsd.2 +0 -63
  465. package/videos/project0/smil30/its.xsd +0 -42
  466. package/videos/project0/smil30/its.xsd.1 +0 -42
  467. package/videos/project0/smil30/its.xsd.2 +0 -42
  468. package/videos/project0/smil30/smil-attribs-1.mod.xsd +0 -610
  469. package/videos/project0/smil30/smil-attribs-1.mod.xsd.1 +0 -610
  470. package/videos/project0/smil30/smil-attribs-1.mod.xsd.2 +0 -610
  471. package/videos/project0/smil30/smil-datatypes-1.mod.xsd +0 -72
  472. package/videos/project0/smil30/smil-datatypes-1.mod.xsd.1 +0 -72
  473. package/videos/project0/smil30/smil-datatypes-1.mod.xsd.2 +0 -72
  474. package/videos/project0/smil30/smil-framework-1.mod.xsd +0 -45
  475. package/videos/project0/smil30/smil-framework-1.mod.xsd.1 +0 -45
  476. package/videos/project0/smil30/smil-framework-1.mod.xsd.2 +0 -45
  477. package/videos/project0/smil30/smil-profile-model-1.mod.xsd +0 -1331
  478. package/videos/project0/smil30/smil-profile-model-1.mod.xsd.1 +0 -1331
  479. package/videos/project0/smil30/smil-qname-1.mod.xsd +0 -121
  480. package/videos/project0/smil30/smil-qname-1.mod.xsd.1 +0 -121
  481. package/videos/project0/smil30/xml.xsd +0 -16
  482. package/videos/project0/smil30/xml.xsd.1 +0 -16
  483. package/videos/project0/smil30/xml.xsd.2 +0 -16
  484. package/videos/project0/smil30.xsd +0 -137
  485. package/videos/project0/src/audio/metadata.json +0 -5
  486. package/videos/project0/src/audio/narration.mp3 +0 -0
  487. package/videos/project0/src/motion-canvas.d.ts +0 -1
  488. package/videos/project0/src/project.meta +0 -31
  489. package/videos/project0/src/project.ts +0 -13
  490. package/videos/project0/src/scenes/example.meta +0 -5
  491. package/videos/project0/src/scenes/scene1.meta +0 -3
  492. package/videos/project0/src/scenes/scene1.tsx +0 -129
  493. package/videos/project0/src/scenes/scene2.tsx +0 -132
  494. package/videos/project0/src/scenes/scene3.meta +0 -26
  495. package/videos/project0/src/scenes/scene3.tsx +0 -188
  496. package/videos/project0/tsconfig.json +0 -4
  497. package/videos/project0/vite.config.ts +0 -10
  498. package/videos/trash/output/project.mp4 +0 -0
  499. package/videos/trash/text.mp4 +0 -0
  500. package/videos/trash/video/project.tsx +0 -549
  501. package/videos/trash/video/render.ts +0 -15
  502. package/videos/trash/vite.config.ts +0 -10
  503. package/videos/tts.js +0 -109
  504. /package/dist/{types/ReportServer.d.ts → module/design-editor/types.js} +0 -0
  505. /package/dist/types/{App.d.ts → src/App.d.ts} +0 -0
  506. /package/dist/types/{CoreTypes.d.ts → src/CoreTypes.d.ts} +0 -0
  507. /package/dist/types/{Init.d.ts → src/Init.d.ts} +0 -0
  508. /package/dist/types/{Node.d.ts → src/Node.d.ts} +0 -0
  509. /package/dist/types/{NodeSidecar.d.ts → src/NodeSidecar.d.ts} +0 -0
  510. /package/dist/types/{PM → src/PM}/PM_WithEslintAndTsc.d.ts +0 -0
  511. /package/dist/types/{PM → src/PM}/__tests__/nodeSidecar.testeranto.d.ts +0 -0
  512. /package/dist/types/{PM → src/PM}/__tests__/pureSidecar.testeranto.d.ts +0 -0
  513. /package/dist/types/{PM → src/PM}/__tests__/webSidecar.testeranto.d.ts +0 -0
  514. /package/dist/types/{PM → src/PM}/base.d.ts +0 -0
  515. /package/dist/types/{PM → src/PM}/node.d.ts +0 -0
  516. /package/dist/types/{PM → src/PM}/nodeSidecar.d.ts +0 -0
  517. /package/dist/types/{PM → src/PM}/pureSidecar.d.ts +0 -0
  518. /package/dist/types/{PM → src/PM}/sidecar.d.ts +0 -0
  519. /package/dist/types/{PM → src/PM}/types.d.ts +0 -0
  520. /package/dist/types/{PM → src/PM}/web.d.ts +0 -0
  521. /package/dist/types/{PM → src/PM}/webSidecar.d.ts +0 -0
  522. /package/dist/types/{Pure.d.ts → src/Pure.d.ts} +0 -0
  523. /package/dist/types/{PureSidecar.d.ts → src/PureSidecar.d.ts} +0 -0
  524. /package/dist/types/{build.d.ts → src/ReportServer.d.ts} +0 -0
  525. /package/dist/types/{ReportServer.test.ts → src/ReportServer.test.ts}/index.d.ts +0 -0
  526. /package/dist/types/{ReportServerLib.d.ts → src/ReportServerLib.d.ts} +0 -0
  527. /package/dist/types/{Types.d.ts → src/Types.d.ts} +0 -0
  528. /package/dist/types/{Web.d.ts → src/Web.d.ts} +0 -0
  529. /package/dist/types/{WebSidecar.d.ts → src/WebSidecar.d.ts} +0 -0
  530. /package/dist/types/{init-docs.d.ts → src/build.d.ts} +0 -0
  531. /package/dist/types/{components → src/components}/SunriseAnimation.d.ts +0 -0
  532. /package/dist/types/{components → src/components}/SunriseAnimation.test/implementation.d.ts +0 -0
  533. /package/dist/types/{components → src/components}/SunriseAnimation.test/index.d.ts +0 -0
  534. /package/dist/types/{components → src/components}/SunriseAnimation.test/interface.d.ts +0 -0
  535. /package/dist/types/{components → src/components}/SunriseAnimation.test/specification.d.ts +0 -0
  536. /package/dist/types/{components → src/components}/SunriseAnimation.test/types.d.ts +0 -0
  537. /package/dist/types/{components → src/components}/TestStatusBadge.d.ts +0 -0
  538. /package/dist/types/{components → src/components}/pure/AppFrame.test/implementation.d.ts +0 -0
  539. /package/dist/types/{components → src/components}/pure/AppFrame.test/index.d.ts +0 -0
  540. /package/dist/types/{components → src/components}/pure/AppFrame.test/specification.d.ts +0 -0
  541. /package/dist/types/{components → src/components}/pure/AppFrame.test/types.d.ts +0 -0
  542. /package/dist/types/{components → src/components}/pure/FeaturesReporterView.d.ts +0 -0
  543. /package/dist/types/{components → src/components}/pure/FeaturesReporterView.test/implementation.d.ts +0 -0
  544. /package/dist/types/{components → src/components}/pure/FeaturesReporterView.test/index.d.ts +0 -0
  545. /package/dist/types/{components → src/components}/pure/FeaturesReporterView.test/specification.d.ts +0 -0
  546. /package/dist/types/{components → src/components}/pure/FeaturesReporterView.test/types.d.ts +0 -0
  547. /package/dist/types/{components → src/components}/pure/ModalContent.d.ts +0 -0
  548. /package/dist/types/{components → src/components}/pure/ModalContent.test/implementation.d.ts +0 -0
  549. /package/dist/types/{components → src/components}/pure/ModalContent.test/specification.d.ts +0 -0
  550. /package/dist/types/{components → src/components}/pure/ModalContent.test/types.d.ts +0 -0
  551. /package/dist/types/{components → src/components}/pure/ProjectPageView.d.ts +0 -0
  552. /package/dist/types/{components → src/components}/pure/ProjectPageView.test/implementation.d.ts +0 -0
  553. /package/dist/types/{components/pure/ModalContent.test → src/components/pure/ProjectPageView.test}/index.d.ts +0 -0
  554. /package/dist/types/{components → src/components}/pure/ProjectPageView.test/specification.d.ts +0 -0
  555. /package/dist/types/{components → src/components}/pure/ProjectPageView.test/types.d.ts +0 -0
  556. /package/dist/types/{PM/layers/base/PM_Base.d.ts → src/components/pure/SingleProcessView.d.ts} +0 -0
  557. /package/dist/types/{components → src/components}/pure/TestPageView.d.ts +0 -0
  558. /package/dist/types/{components → src/components}/pure/TestPageView.test/specification.d.ts +0 -0
  559. /package/dist/types/{components → src/components}/pure/TestPageView.test/types.d.ts +0 -0
  560. /package/dist/types/{components → src/components}/pure/ThemeCard.d.ts +0 -0
  561. /package/dist/types/{components → src/components}/stateful/FeaturesReporter.d.ts +0 -0
  562. /package/dist/types/{components → src/components}/stateful/ProjectPage.d.ts +0 -0
  563. /package/dist/types/{components → src/components}/stateful/ProjectsPage.d.ts +0 -0
  564. /package/dist/types/{components → src/components}/stateful/TestPage.d.ts +0 -0
  565. /package/dist/types/{defaultConfig.d.ts → src/defaultConfig.d.ts} +0 -0
  566. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/consoleDetectorPlugin.d.ts +0 -0
  567. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/eslint-formatter-testeranto.d.ts +0 -0
  568. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/featuresPlugin.d.ts +0 -0
  569. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/index.d.ts +0 -0
  570. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/inputFilesPlugin.d.ts +0 -0
  571. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/nativeImportDetectorPlugin.d.ts +0 -0
  572. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/node.d.ts +0 -0
  573. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/pure.d.ts +0 -0
  574. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/rebuildPlugin.d.ts +0 -0
  575. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/web.d.ts +0 -0
  576. /package/dist/types/{run.d.ts → src/init-docs.d.ts} +0 -0
  577. /package/dist/types/{lib → src/lib}/BaseSuite.d.ts +0 -0
  578. /package/dist/types/{lib → src/lib}/BaseSuite.test/node.test.d.ts +0 -0
  579. /package/dist/types/{lib → src/lib}/BaseSuite.test/pure.test.d.ts +0 -0
  580. /package/dist/types/{lib → src/lib}/BaseSuite.test/test.d.ts +0 -0
  581. /package/dist/types/{lib → src/lib}/BaseSuite.test/web.test.d.ts +0 -0
  582. /package/dist/types/{lib → src/lib}/Sidecar.d.ts +0 -0
  583. /package/dist/types/{lib → src/lib}/abstractBase.d.ts +0 -0
  584. /package/dist/types/{lib → src/lib}/abstractBase.test/MockGiven.d.ts +0 -0
  585. /package/dist/types/{lib → src/lib}/abstractBase.test/MockThen.d.ts +0 -0
  586. /package/dist/types/{lib → src/lib}/abstractBase.test/MockWhen.d.ts +0 -0
  587. /package/dist/types/{lib → src/lib}/abstractBase.test/adapter.d.ts +0 -0
  588. /package/dist/types/{lib → src/lib}/abstractBase.test/implementation.d.ts +0 -0
  589. /package/dist/types/{lib → src/lib}/abstractBase.test/index.d.ts +0 -0
  590. /package/dist/types/{lib → src/lib}/abstractBase.test/specification.d.ts +0 -0
  591. /package/dist/types/{lib → src/lib}/abstractBase.test/types.d.ts +0 -0
  592. /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.adapter.d.ts +0 -0
  593. /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.implementation.d.ts +0 -0
  594. /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.mock.d.ts +0 -0
  595. /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.node.d.ts +0 -0
  596. /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.pure.d.ts +0 -0
  597. /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.specification.d.ts +0 -0
  598. /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.types.d.ts +0 -0
  599. /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.web.d.ts +0 -0
  600. /package/dist/types/{lib → src/lib}/classBuilder.d.ts +0 -0
  601. /package/dist/types/{lib → src/lib}/classBuilder.test/classBuilder.test.adapter.d.ts +0 -0
  602. /package/dist/types/{lib → src/lib}/classBuilder.test/classBuilder.test.d.ts +0 -0
  603. /package/dist/types/{lib → src/lib}/classBuilder.test/classBuilder.test.implementation.d.ts +0 -0
  604. /package/dist/types/{lib → src/lib}/classBuilder.test/classBuilder.test.specification.d.ts +0 -0
  605. /package/dist/types/{lib → src/lib}/classBuilder.test/classBuilder.test.types.d.ts +0 -0
  606. /package/dist/types/{lib → src/lib}/classBuilder.test/mock.d.ts +0 -0
  607. /package/dist/types/{lib → src/lib}/core.d.ts +0 -0
  608. /package/dist/types/{lib → src/lib}/core.test/MockCore.d.ts +0 -0
  609. /package/dist/types/{lib → src/lib}/core.test/core.test.adapter.d.ts +0 -0
  610. /package/dist/types/{lib → src/lib}/core.test/core.test.d.ts +0 -0
  611. /package/dist/types/{lib → src/lib}/core.test/core.test.implementation.d.ts +0 -0
  612. /package/dist/types/{lib → src/lib}/core.test/core.test.specification.d.ts +0 -0
  613. /package/dist/types/{lib → src/lib}/core.test/core.test.types.d.ts +0 -0
  614. /package/dist/types/{lib → src/lib}/mocks.test.d.ts +0 -0
  615. /package/dist/types/{lib → src/lib}/pmProxy.d.ts +0 -0
  616. /package/dist/types/{lib → src/lib}/pmProxy.test/adapter.d.ts +0 -0
  617. /package/dist/types/{lib → src/lib}/pmProxy.test/implementation.d.ts +0 -0
  618. /package/dist/types/{lib → src/lib}/pmProxy.test/index.d.ts +0 -0
  619. /package/dist/types/{lib → src/lib}/pmProxy.test/mockPM.d.ts +0 -0
  620. /package/dist/types/{lib → src/lib}/pmProxy.test/specification.d.ts +0 -0
  621. /package/dist/types/{lib → src/lib}/pmProxy.test/types.d.ts +0 -0
  622. /package/dist/types/{lib → src/lib}/types.d.ts +0 -0
  623. /package/dist/types/{mothership → src/mothership}/index.d.ts +0 -0
  624. /package/dist/types/{mothership → src/mothership}/test.d.ts +0 -0
  625. /package/dist/types/{types → src/types}/features.d.ts +0 -0
  626. /package/dist/types/{utils → src/utils}/api.d.ts +0 -0
  627. /package/dist/types/{utils → src/utils}/buildTemplates.d.ts +0 -0
  628. /package/dist/types/{utils → src/utils}/featureUtils.d.ts +0 -0
  629. /package/dist/types/{utils → src/utils}/makePrompt.d.ts +0 -0
  630. /package/dist/types/{utils → src/utils}/queue.d.ts +0 -0
  631. /package/dist/types/{utils.d.ts → src/utils.d.ts} +0 -0
  632. /package/dist/types/{web.html.d.ts → src/web.html.d.ts} +0 -0
@@ -1,106 +1,71 @@
1
+ /Users/adam/Code/testeranto/src/lib/abstractBase.ts (328,41): A spread argument must either have a tuple type or be passed to a rest parameter.
1
2
  /Users/adam/Code/testeranto/src/lib/basebuilder.ts (76,49): Function lacks ending return statement and return type does not include 'undefined'.
2
- /Users/adam/Code/testeranto/src/lib/basebuilder.ts (82,17): This expression is not callable.
3
- Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
4
- Type 'void' has no call signatures.
5
- /Users/adam/Code/testeranto/src/lib/classBuilder.ts (89,18): A spread argument must either have a tuple type or be passed to a rest parameter.
6
- /Users/adam/Code/testeranto/src/lib/classBuilder.ts (104,28): A spread argument must either have a tuple type or be passed to a rest parameter.
3
+ /Users/adam/Code/testeranto/src/lib/basebuilder.ts (123,15): Expected 1 arguments, but got 3.
7
4
  /Users/adam/Code/testeranto/src/lib/core.ts (48,7): Argument of type 'Omit<{ suites: import("/Users/adam/Code/testeranto/src/Types").TestSuiteImplementation<O>; givens: import("/Users/adam/Code/testeranto/src/Types").TestGivenImplementation<I, O>; whens: import("/Users/adam/Code/testeranto/src/Types").TestWhenImplementation<...>; thens: import("/Users/adam/Code/testeranto/src/Types")....' is not assignable to parameter of type 'Omit<{ suites: import("/Users/adam/Code/testeranto/src/Types").TestSuiteImplementation<O>; givens: import("/Users/adam/Code/testeranto/src/Types").TestGivenImplementation<I, O>; whens: import("/Users/adam/Code/testeranto/src/Types").TestWhenImplementation<...>; thens: import("/Users/adam/Code/testeranto/src/Types")....'.
8
5
  Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }' is not assignable to type '{ suites: Record<string, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'.
9
6
  Types of property 'suites' are incompatible.
10
7
  Type 'Record<string, any>' is not assignable to type 'Record<string, never>'.
11
8
  'string' index signatures are incompatible.
12
9
  Type 'any' is not assignable to type 'never'.
13
- /Users/adam/Code/testeranto/src/lib/index.ts (17,3): Type '(subject: T["isubject"], initialValues: T["iinitialValues"], x: unknown, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<T["isubject"]>' is not assignable to type '(subject: T["isubject"], initializer: (c?: any) => T["given"], testResource: ITTestResourceConfiguration, initialValues: any, pm: IPM) => Promise<...>'.
14
- Types of parameters 'initialValues' and 'initializer' are incompatible.
15
- Type '(c?: any) => T["given"]' is not assignable to type 'T["iinitialValues"]'.
16
- 'T["iinitialValues"]' could be instantiated with an arbitrary type which could be unrelated to '(c?: any) => T["given"]'.
17
- /Users/adam/Code/testeranto/src/lib/index.ts (19,20): Type '"iinitialValues"' cannot be used to index type 'T'.
18
- /Users/adam/Code/testeranto/src/lib/index.ts (41,13): This expression is not callable.
10
+ /Users/adam/Code/testeranto/src/lib/index.ts (36,12): This expression is not callable.
11
+ Type 'unknown' has no call signatures.
12
+ /Users/adam/Code/testeranto/src/lib/index.ts (44,12): This expression is not callable.
19
13
  Type 'unknown' has no call signatures.
20
- /Users/adam/Code/testeranto/src/lib/index.ts (53,3): Type '{ assertThis?: ((x: T["then"]) => any) | undefined; andWhen?: ((store: T["istore"], whenCB: T["when"], testResource: ITTestResourceConfiguration, pm: IPM) => Promise<T["istore"]>) | undefined; ... 4 more ...; beforeEach?: ((subject: T["isubject"], initializer: (c?: any) => T["given"], testResource: ITTestResourceCon...' is not assignable to type 'ITestAdapter<T>'.
21
- Types of property 'assertThis' are incompatible.
22
- Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
23
- Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
24
- /Users/adam/Code/testeranto/src/PM/pure.ts (114,3): Property 'customScreenShot' in type 'PM_Pure' is not assignable to the same property in base type 'PM'.
25
- Type '(opts: ScreencastOptions, page: string) => any' is not assignable to type '(opts: { path: string; }, page?: string | undefined) => any'.
26
- Types of parameters 'opts' and 'opts' are incompatible.
27
- Type '{ path: string; }' is not assignable to type 'ScreencastOptions'.
28
- Types of property 'path' are incompatible.
29
- Type 'string' is not assignable to type '`${string}.webm`'.
30
- /Users/adam/Code/testeranto/src/PM/pure.ts (145,3): Property 'createWriteStream' in type 'PM_Pure' is not assignable to the same property in base type 'PM'.
31
- Type '() => { write: () => boolean; end: () => void; }' is not assignable to type '(filepath: string, testName: string) => Promise<string>'.
32
- Type '{ write: () => boolean; end: () => void; }' is missing the following properties from type 'Promise<string>': then, catch, finally, [Symbol.toStringTag]
33
14
  /Users/adam/Code/testeranto/src/PM/web.ts (59,12): Property 'mainFrame' does not exist on type 'string | Page'.
34
15
  Property 'mainFrame' does not exist on type 'string'.
35
- /Users/adam/Code/testeranto/src/Pure.test.ts (58,20): Type '{ pm: IPM; config: {}; proxies: { butThenProxy: (pm: IPM, path: string) => { writeFileSync: (p: string, c: string) => any; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; andWhenProxy: (pm: IPM, path: string) => { ...; } | ... 1 more ... | { ...; }; befor...' is not assignable to type '() => IPM'.
36
- Type '{ pm: IPM; config: {}; proxies: { butThenProxy: (pm: IPM, path: string) => { writeFileSync: (p: string, c: string) => any; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; andWhenProxy: (pm: IPM, path: string) => { ...; } | ... 1 more ... | { ...; }; befor...' provides no match for the signature '(): IPM'.
37
- /Users/adam/Code/testeranto/src/Pure.test.ts (65,54): Expected 1 arguments, but got 2.
38
- /Users/adam/Code/testeranto/src/Pure.test.ts (70,54): Expected 1 arguments, but got 2.
39
- /Users/adam/Code/testeranto/src/Pure.test.ts (75,64): Expected 1 arguments, but got 2.
40
- /Users/adam/Code/testeranto/src/Pure.test.ts (82,5): Type '(proxyType: string) => (store: { pm: IPM; }) => { pm: IPM; } | { pm: {}; } | { largePayload: boolean; pm: { writeFileSync: (p: string, c: string) => boolean; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; } | { ...; }' is not assignable to type '(Iw_0: string) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>'.
41
- Call signature return types '(store: { pm: IPM; }) => { pm: IPM; } | { pm: {}; } | { largePayload: boolean; pm: { writeFileSync: (p: string, c: string) => boolean; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; } | { ...; }' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>' are incompatible.
42
- Type '{ pm: IPM; } | { pm: {}; } | { largePayload: boolean; pm: { writeFileSync: (p: string, c: string) => boolean; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; } | { ...; }' is not assignable to type 'Promise<(store: { pm: IPM; }) => { pm: IPM; }>'.
43
- Type '{ pm: IPM; }' is missing the following properties from type 'Promise<(store: { pm: IPM; }) => { pm: IPM; }>': then, catch, finally, [Symbol.toStringTag]
44
- /Users/adam/Code/testeranto/src/Pure.test.ts (114,5): Type '(artifact: Promise<string>) => (store: { pm: IPM; }) => { artifacts: any[]; pm: IPM; }' is not assignable to type '(Iw_0: Promise<string>) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>'.
45
- Call signature return types '(store: { pm: IPM; }) => { artifacts: any[]; pm: IPM; }' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>' are incompatible.
46
- Type '{ artifacts: any[]; pm: IPM; }' is missing the following properties from type 'Promise<(store: { pm: IPM; }) => { pm: IPM; }>': then, catch, finally, [Symbol.toStringTag]
47
- /Users/adam/Code/testeranto/src/Pure.test.ts (117,31): Property 'artifacts' does not exist on type '{ pm: IPM; }'.
48
- /Users/adam/Code/testeranto/src/Pure.test.ts (120,5): Type '(jobs: any[]) => (store: { pm: IPM; }) => { testJobs: any[]; pm: IPM; }' is not assignable to type '(Iw_0: any[]) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>'.
49
- Call signature return types '(store: { pm: IPM; }) => { testJobs: any[]; pm: IPM; }' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>' are incompatible.
50
- Type '{ testJobs: any[]; pm: IPM; }' is missing the following properties from type 'Promise<(store: { pm: IPM; }) => { pm: IPM; }>': then, catch, finally, [Symbol.toStringTag]
51
- /Users/adam/Code/testeranto/src/Pure.test.ts (126,5): Type '(modifier: (specs: any) => any[]) => (store: { pm: IPM; }) => { specs: any[]; pm: IPM; }' is not assignable to type '(Iw_0: (specs: any) => any[]) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>'.
52
- Call signature return types '(store: { pm: IPM; }) => { specs: any[]; pm: IPM; }' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>' are incompatible.
53
- Type '{ specs: any[]; pm: IPM; }' is missing the following properties from type 'Promise<(store: { pm: IPM; }) => { pm: IPM; }>': then, catch, finally, [Symbol.toStringTag]
54
- /Users/adam/Code/testeranto/src/Pure.test.ts (129,31): Property 'specs' does not exist on type '{ pm: IPM; }'.
55
- /Users/adam/Code/testeranto/src/Pure.test.ts (135,32): Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
56
- Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
57
- Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
58
- /Users/adam/Code/testeranto/src/Pure.test.ts (141,27): Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
59
- Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
60
- Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
61
- /Users/adam/Code/testeranto/src/Pure.test.ts (142,20): Property 'getCallCount' does not exist on type 'IPM'.
62
- Property 'getCallCount' does not exist on type 'PM_Node'.
63
- /Users/adam/Code/testeranto/src/Pure.test.ts (147,24): Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
64
- Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
65
- Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
66
- /Users/adam/Code/testeranto/src/Pure.test.ts (151,29): Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
67
- Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
68
- Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
69
- /Users/adam/Code/testeranto/src/Pure.test.ts (155,30): Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
70
- Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
71
- Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
72
- /Users/adam/Code/testeranto/src/Pure.test.ts (156,20): Property 'getCallCount' does not exist on type 'IPM'.
73
- Property 'getCallCount' does not exist on type 'PM_Node'.
74
- /Users/adam/Code/testeranto/src/Pure.test.ts (161,5): Type '(expectedCount: number) => (store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(It_0: number) => (ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
75
- Call signature return types '(store: { pm: IPM; }) => { pm: IPM; }' and '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }' are incompatible.
76
- Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
77
- Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
78
- /Users/adam/Code/testeranto/src/Pure.test.ts (162,36): Property 'getCallCount' does not exist on type 'IPM'.
79
- Property 'getCallCount' does not exist on type 'PM_Node'.
80
- /Users/adam/Code/testeranto/src/Pure.test.ts (170,5): Type '(expectedPath: string) => (store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(It_0: string) => (ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
81
- Call signature return types '(store: { pm: IPM; }) => { pm: IPM; }' and '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }' are incompatible.
82
- Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
83
- Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
84
- /Users/adam/Code/testeranto/src/Pure.test.ts (173,35): Property 'getLastCall' does not exist on type 'IPM'.
85
- Property 'getLastCall' does not exist on type 'PM_Node'.
86
- /Users/adam/Code/testeranto/src/Pure.test.ts (179,26): Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
87
- Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
88
- Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
89
- /Users/adam/Code/testeranto/src/Pure.test.ts (180,20): Property 'getCallCount' does not exist on type 'IPM'.
90
- Property 'getCallCount' does not exist on type 'PM_Node'.
91
- /Users/adam/Code/testeranto/src/Pure.test.ts (185,5): Type '(expectedError: string) => (store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(It_0: string) => (ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
92
- Call signature return types '(store: { pm: IPM; }) => { pm: IPM; }' and '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }' are incompatible.
93
- Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
94
- Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
95
- /Users/adam/Code/testeranto/src/Pure.test.ts (198,33): Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
96
- Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
97
- Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
98
- /Users/adam/Code/testeranto/src/Pure.test.ts (204,31): Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
99
- Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
100
- Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
101
- /Users/adam/Code/testeranto/src/Pure.test.ts (206,58): Expected 1 arguments, but got 2.
102
- /Users/adam/Code/testeranto/src/Pure.test.ts (212,29): Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
103
- Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
104
- Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
16
+ /Users/adam/Code/testeranto/src/Pure.test.ts (58,5): 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; }'.
17
+ 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; }'.
18
+ 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; }'.
19
+ /Users/adam/Code/testeranto/src/Pure.test.ts (88,5): 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; }>'.
20
+ 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.
21
+ 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; }>'.
22
+ Type '{ pm: IPM; } | { largePayload: boolean; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
23
+ Type '{ pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
24
+ Type '{ pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.
25
+ /Users/adam/Code/testeranto/src/Pure.test.ts (120,5): 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; }) => { ...; }>'.
26
+ 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.
27
+ Type 'Promise<{ artifacts: any[]; pm: IPM; }>' is not assignable to type 'Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.
28
+ Type '{ artifacts: any[]; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
29
+ Type '{ artifacts: any[]; pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.
30
+ /Users/adam/Code/testeranto/src/Pure.test.ts (123,31): Property 'artifacts' does not exist on type '{ pm: IPM; }'.
31
+ /Users/adam/Code/testeranto/src/Pure.test.ts (126,5): 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; }>'.
32
+ 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.
33
+ Type 'Promise<{ testJobs: any[]; pm: IPM; }>' is not assignable to type 'Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.
34
+ Type '{ testJobs: any[]; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
35
+ Type '{ testJobs: any[]; pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.
36
+ /Users/adam/Code/testeranto/src/Pure.test.ts (132,5): 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; }) => { ...; }>'.
37
+ 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.
38
+ Type 'Promise<{ specs: any[]; pm: IPM; }>' is not assignable to type 'Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.
39
+ Type '{ specs: any[]; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
40
+ Type '{ specs: any[]; pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.
41
+ /Users/adam/Code/testeranto/src/Pure.test.ts (135,31): Property 'specs' does not exist on type '{ pm: IPM; }'.
42
+ /Users/adam/Code/testeranto/src/Pure.test.ts (141,32): 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; }'.
43
+ Target signature provides too few arguments. Expected 3 or more, but got 2.
44
+ /Users/adam/Code/testeranto/src/Pure.test.ts (147,27): 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; }'.
45
+ Target signature provides too few arguments. Expected 3 or more, but got 2.
46
+ /Users/adam/Code/testeranto/src/Pure.test.ts (150,24): 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; }'.
47
+ Target signature provides too few arguments. Expected 3 or more, but got 2.
48
+ /Users/adam/Code/testeranto/src/Pure.test.ts (153,29): 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; }'.
49
+ Target signature provides too few arguments. Expected 3 or more, but got 2.
50
+ /Users/adam/Code/testeranto/src/Pure.test.ts (156,30): 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; }'.
51
+ Target signature provides too few arguments. Expected 3 or more, but got 2.
52
+ /Users/adam/Code/testeranto/src/Pure.test.ts (159,5): 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; }'.
53
+ 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; }'.
54
+ Target signature provides too few arguments. Expected 3 or more, but got 2.
55
+ /Users/adam/Code/testeranto/src/Pure.test.ts (162,5): 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; }'.
56
+ 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; }'.
57
+ Target signature provides too few arguments. Expected 3 or more, but got 2.
58
+ /Users/adam/Code/testeranto/src/Pure.test.ts (165,26): 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; }'.
59
+ Target signature provides too few arguments. Expected 3 or more, but got 2.
60
+ /Users/adam/Code/testeranto/src/Pure.test.ts (168,5): 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; }'.
61
+ 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; }'.
62
+ Target signature provides too few arguments. Expected 3 or more, but got 2.
63
+ /Users/adam/Code/testeranto/src/Pure.test.ts (171,33): 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; }'.
64
+ Target signature provides too few arguments. Expected 3 or more, but got 2.
65
+ /Users/adam/Code/testeranto/src/Pure.test.ts (174,31): 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; }'.
66
+ Target signature provides too few arguments. Expected 3 or more, but got 2.
67
+ /Users/adam/Code/testeranto/src/Pure.test.ts (177,29): 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; }'.
68
+ Target signature provides too few arguments. Expected 3 or more, but got 2.
69
+ /Users/adam/Code/testeranto/src/Pure.test.ts (315,28): Cannot find name 'ITestAdapter'.
105
70
  /Users/adam/Code/testeranto/src/Pure.ts (32,7): Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.
106
71
  Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
@@ -1,56 +1,3 @@
1
1
  Failed to load resource: net::ERR_FILE_NOT_FOUND
2
- AssertionError: Should show project names: expected +0 to be at least 1
3
- at Then.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs?cacheBust=1755120313119:77:14)
4
- at file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3011:31
5
- at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-VAYOSMXI.mjs:21704:14)
6
- at Then.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3255:36)
7
- at Then.test (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3006:17)
8
- at Given.give (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:2909:34)
9
- at async TesterantoCore.constructor.run (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:2615:20)
10
- at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3055:21
11
- at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3086:31)
12
- at async WebTesteranto.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3279:12)
13
- AssertionError: Should show file paths: expected +0 to be at least 1
14
- at Then.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs?cacheBust=1755120313119:82:14)
15
- at file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3011:31
16
- at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-VAYOSMXI.mjs:21704:14)
17
- at Then.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3255:36)
18
- at Then.test (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3006:17)
19
- at Given.give (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:2909:34)
20
- at async TesterantoCore.constructor.run (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:2615:20)
21
- at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3055:21
22
- at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3086:31)
23
- at async WebTesteranto.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3279:12)
24
- AssertionError: Should show test names: expected +0 to be at least 1
25
- at Then.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs?cacheBust=1755120313119:87:14)
26
- at file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3011:31
27
- at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-VAYOSMXI.mjs:21704:14)
28
- at Then.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3255:36)
29
- at Then.test (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3006:17)
30
- at Given.give (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:2909:34)
31
- at async TesterantoCore.constructor.run (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:2615:20)
32
- at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3055:21
33
- at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3086:31)
34
- at async WebTesteranto.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3279:12)
35
- AssertionError: Should show status badges: expected +0 to be at least 1
36
- at Then.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs?cacheBust=1755120313119:92:14)
37
- at file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3011:31
38
- at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-VAYOSMXI.mjs:21704:14)
39
- at Then.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3255:36)
40
- at Then.test (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3006:17)
41
- at Given.give (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:2909:34)
42
- at async TesterantoCore.constructor.run (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:2615:20)
43
- at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3055:21
44
- at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3086:31)
45
- at async WebTesteranto.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3279:12)
46
- AssertionError: Should show empty message: expected null to exist
47
- at Then.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs?cacheBust=1755120313119:97:14)
48
- at file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3011:31
49
- at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-VAYOSMXI.mjs:21704:14)
50
- at Then.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3255:36)
51
- at Then.test (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3006:17)
52
- at Given.give (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:2909:34)
53
- at async TesterantoCore.constructor.run (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:2615:20)
54
- at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3055:21
55
- at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3086:31)
56
- at async WebTesteranto.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3279:12)
2
+ Failed to load resource: net::ERR_FILE_NOT_FOUND
3
+ Failed to load resource: net::ERR_FILE_NOT_FOUND
@@ -1,2 +0,0 @@
1
- %cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools
2
- You might need to use a local HTTP server (instead of file://): https://reactjs.org/link/react-devtools-faq font-weight:bold
@@ -1,33 +1,3 @@
1
- AssertionError: Should render test table: expected null to exist
2
- at Then.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1755120313108:167:14)
3
- at file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3011:31
4
- at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-VAYOSMXI.mjs:21704:14)
5
- at Then.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3255:36)
6
- at Then.test (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3006:17)
7
- at Given.give (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:2909:34)
8
- at async TesterantoCore.constructor.run (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:2615:20)
9
- at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3055:21
10
- at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3086:31)
11
- at async WebTesteranto.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3279:12)
12
- TypeError: Cannot read properties of null (reading 'querySelectorAll')
13
- at Then.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1755120313108:172:46)
14
- at file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3011:31
15
- at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-VAYOSMXI.mjs:21704:14)
16
- at Then.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3255:36)
17
- at Then.test (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3006:17)
18
- at Given.give (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:2909:34)
19
- at async TesterantoCore.constructor.run (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:2615:20)
20
- at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3055:21
21
- at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3086:31)
22
- at async WebTesteranto.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3279:12)
23
- TypeError: Cannot read properties of null (reading 'querySelectorAll')
24
- at Then.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1755120313108:178:46)
25
- at file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3011:31
26
- at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-VAYOSMXI.mjs:21704:14)
27
- at Then.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3255:36)
28
- at Then.test (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3006:17)
29
- at Given.give (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:2909:34)
30
- at async TesterantoCore.constructor.run (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:2615:20)
31
- at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3055:21
32
- at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3086:31)
33
- at async WebTesteranto.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-LU364HVS.mjs:3279:12)
1
+ Failed to load resource: net::ERR_FILE_NOT_FOUND
2
+ Failed to load resource: net::ERR_FILE_NOT_FOUND
3
+ Failed to load resource: net::ERR_FILE_NOT_FOUND
@@ -1,4 +0,0 @@
1
- %cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools
2
- You might need to use a local HTTP server (instead of file://): https://reactjs.org/link/react-devtools-faq font-weight:bold
3
- %cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools
4
- You might need to use a local HTTP server (instead of file://): https://reactjs.org/link/react-devtools-faq font-weight:bold
@@ -0,0 +1,3 @@
1
+ Failed to load resource: net::ERR_FILE_NOT_FOUND
2
+ Failed to load resource: net::ERR_FILE_NOT_FOUND
3
+ Failed to load resource: net::ERR_FILE_NOT_FOUND
@@ -1,2 +0,0 @@
1
- %cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools
2
- You might need to use a local HTTP server (instead of file://): https://reactjs.org/link/react-devtools-faq font-weight:bold
@@ -1,6 +1,6 @@
1
1
 
2
- /add src/lib/BaseSuite.test/node.test.ts
3
2
  /add src/lib/BaseSuite.test/test.ts
3
+ /add src/lib/BaseSuite.test/node.test.ts
4
4
 
5
5
  /read node_modules/testeranto/docs/index.md
6
6
  /read node_modules/testeranto/docs/style.md
@@ -11,4 +11,4 @@
11
11
  /read testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/type_errors.txt
12
12
  /read testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/lint_errors.txt
13
13
 
14
- /read testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/stdout.log testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/stderr.log testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/exit.log
14
+ /read testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/tests.json testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/type_errors.txt testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/lint_errors.txt testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/exit.log testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/message.txt testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/prompt.txt testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/stdout.log testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/stderr.log
@@ -1,113 +1,61 @@
1
+ /Users/adam/Code/testeranto/src/lib/abstractBase.ts (328,41): A spread argument must either have a tuple type or be passed to a rest parameter.
1
2
  /Users/adam/Code/testeranto/src/lib/basebuilder.ts (76,49): Function lacks ending return statement and return type does not include 'undefined'.
2
- /Users/adam/Code/testeranto/src/lib/basebuilder.ts (82,17): This expression is not callable.
3
- Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
4
- Type 'void' has no call signatures.
5
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (36,9): Property 'andWhen' in type 'MockWhen' is not assignable to the same property in base type 'BaseWhen<I>'.
6
- Type '(store: TestStore, whenCB: (store: TestStore) => Promise<TestStore>, testResource: any, pm: IPM) => Promise<TestStore>' is not assignable to type '(store: TestStore, whenCB: (x: TestSelection) => (store: TestStore) => Promise<TestSelection>, testResource: any, pm: IPM) => Promise<...>'.
7
- Types of parameters 'whenCB' and 'whenCB' are incompatible.
8
- Types of parameters 'x' and 'store' are incompatible.
9
- Type 'TestStore' is not assignable to type 'TestSelection'.
10
- Types of property 'testSelection' are incompatible.
11
- Type 'boolean | undefined' is not assignable to type 'boolean'.
12
- Type 'undefined' is not assignable to type 'boolean'.
13
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (52,3): Property 'addArtifact' in type 'MockWhen' is not assignable to the same property in base type 'BaseWhen<I>'.
14
- Type '(name: string, content: string) => this' is not assignable to type '(path: string) => void'.
15
- Target signature provides too few arguments. Expected 2 or more, but got 1.
16
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (59,9): Property 'butThen' in type 'MockThen' is not assignable to the same property in base type 'BaseThen<I>'.
17
- Types of parameters 'thenCB' and 'thenCB' are incompatible.
18
- Type 'Promise<BaseSuite<any, any>>' is not assignable to type 'Promise<TestSelection>'.
19
- Property 'testSelection' is missing in type 'BaseSuite<any, any>' but required in type 'TestSelection'.
20
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (67,7): Object literal may only specify known properties, and 'name' does not exist in type 'TestSelection'.
21
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (101,10): Type 'MockWhen' is not assignable to type 'BaseWhen<I>'.
22
- Types of property 'addArtifact' are incompatible.
23
- Type '(name: string, content: string) => MockWhen' is not assignable to type '(path: string) => void'.
24
- Target signature provides too few arguments. Expected 2 or more, but got 1.
25
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (101,41): Type 'Promise<{ testStore: boolean; }>' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
26
- Type 'Promise<{ testStore: boolean; }>' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
27
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (104,13): Type 'Promise<{ testSelection: boolean; }>' is not assignable to type 'Promise<(store: TestStore) => Promise<TestSelection>>'.
28
- Type '{ testSelection: boolean; }' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
29
- Type '{ testSelection: boolean; }' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
30
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (126,5): Type '() => MockSuite' is not assignable to type '() => () => Promise<TestStore>'.
31
- Type 'MockSuite' is not assignable to type '() => Promise<TestStore>'.
32
- Type 'MockSuite' provides no match for the signature '(): Promise<TestStore>'.
33
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (137,30): Argument of type 'Promise<unknown>' is not assignable to parameter of type 'string'.
34
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (144,15): Property 'specs' does not exist on type 'MockSuite'.
35
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (144,38): Property 'specs' does not exist on type 'MockSuite'.
36
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (151,15): Property 'testJobs' does not exist on type 'MockSuite'.
37
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (151,41): Property 'testJobs' does not exist on type 'MockSuite'.
38
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (157,7): Type '(suite: MockSuite) => Promise<MockSuite>' is not assignable to type '(zel: TestSelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: TestStore) => Promise<TestStore>>'.
3
+ /Users/adam/Code/testeranto/src/lib/basebuilder.ts (123,15): Expected 1 arguments, but got 3.
4
+ /Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (46,5): Type '{ testSelection: boolean; error?: boolean | Error | undefined; name?: string; index?: number; testStore: boolean; }' is not assignable to type 'TestStore'.
5
+ Types of property 'error' are incompatible.
6
+ Type 'boolean | Error | undefined' is not assignable to type 'Error | undefined'.
7
+ Type 'boolean' is not assignable to type 'Error'.
8
+ /Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (80,47): Type 'Promise<{ testSelection: boolean; }>' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
9
+ Type 'Promise<{ testSelection: boolean; }>' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
10
+ /Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (83,29): Cannot create an instance of an abstract class.
11
+ /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (143,30): Argument of type 'Promise<unknown>' is not assignable to parameter of type 'string'.
12
+ /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (150,15): Property 'specs' does not exist on type 'MockSuite'.
13
+ /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (150,38): Property 'specs' does not exist on type 'MockSuite'.
14
+ /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (157,15): Property 'testJobs' does not exist on type 'MockSuite'.
15
+ /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (157,41): Property 'testJobs' does not exist on type 'MockSuite'.
16
+ /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (163,7): Type '(suite: MockSuite) => Promise<MockSuite>' is not assignable to type '(zel: TestSelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: TestStore) => Promise<TestStore>>'.
39
17
  Types of parameters 'suite' and 'zel' are incompatible.
40
18
  Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 11 more.
41
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (177,11): Type '() => void' is not assignable to type '((selector: string) => boolean) | ((selector: string) => boolean) | ((selector: string, page: string) => Promise<unknown>)'.
19
+ /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (182,11): 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 ...'.
20
+ Type '() => void' is not assignable to type '(tLog: ITLog, callback: (p: Promise<void>) => void) => (fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void'.
21
+ Type 'void' is not assignable to type '(fPath: string, value: string | Buffer | PassThrough) => void'.
22
+ /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (183,11): Type '() => void' is not assignable to type '((selector: string) => boolean) | ((selector: string) => boolean) | ((selector: string, page: string) => Promise<unknown>)'.
42
23
  Type '() => void' is not assignable to type '(selector: string) => boolean'.
43
24
  Type 'void' is not assignable to type 'boolean'.
44
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (179,11): Type '() => void' is not assignable to type '((p: any) => string) | ((p: any) => string) | ((p: any) => Promise<unknown>)'.
25
+ /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (185,11): Type '() => void' is not assignable to type '((p: any) => string) | ((p: any) => string) | ((p: any) => Promise<unknown>)'.
45
26
  Type '() => void' is not assignable to type '(p: any) => string'.
46
27
  Type 'void' is not assignable to type 'string'.
47
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (184,11): Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'.
48
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (198,13): Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'.
49
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (223,5): Type '(expectedName: string) => ((selection: TestSelection) => TestSelection)' is not assignable to type '(It_0: string) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
50
- Call signature return types '(selection: TestSelection) => TestSelection' and '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>' are incompatible.
51
- Type 'TestSelection' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
52
- Type 'TestSelection' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
53
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (226,24): Property 'name' does not exist on type 'TestSelection'.
54
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (229,23): Property 'name' does not exist on type 'TestSelection'.
55
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (231,70): Property 'name' does not exist on type 'TestSelection'.
56
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (237,5): Type '(expectedIndex: number) => ((selection: TestSelection) => TestSelection)' is not assignable to type '(It_0: number) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
57
- Call signature return types '(selection: TestSelection) => TestSelection' and '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>' are incompatible.
58
- Type 'TestSelection' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
59
- Type 'TestSelection' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
60
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (240,23): Property 'index' does not exist on type 'TestSelection'.
61
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (242,69): Property 'index' does not exist on type 'TestSelection'.
62
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (248,5): Type '(feature: string) => ((suite: MockSuite) => MockSuite)' is not assignable to type '(feature: string) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
63
- Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
64
- Types of parameters 'suite' and 'ssel' are incompatible.
65
- Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 11 more.
66
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (269,58): Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
28
+ /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (190,11): Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'.
29
+ /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (204,13): Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'.
30
+ /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (271,58): Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
67
31
  Types of parameters 'suite' and 'ssel' are incompatible.
68
32
  Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 11 more.
69
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (321,19): Property 'specs' does not exist on type 'MockSuite'.
70
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (330,19): Property 'testJobs' does not exist on type 'MockSuite'.
71
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (371,22): Property 'index' does not exist on type '() => Promise<TestStore>'.
72
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (374,19): Property 'store' does not exist on type '() => Promise<TestStore>'.
73
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (387,44): Expected 1 arguments, but got 2.
74
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (389,3): Type '(store: TestStore, thenCB: (selection: TestSelection) => Promise<TestSelection>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<TestSelection>' is not assignable to type '(store: TestStore, thenCB: (store: TestStore) => Promise<TestSelection>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<...>'.
33
+ /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (323,19): Property 'specs' does not exist on type 'MockSuite'.
34
+ /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (332,19): Property 'testJobs' does not exist on type 'MockSuite'.
35
+ /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (373,22): Property 'index' does not exist on type '() => Promise<TestStore>'.
36
+ /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (376,19): Property 'store' does not exist on type '() => Promise<TestStore>'.
37
+ /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (393,26): This expression is not callable.
38
+ Type 'Promise<TestStore>' has no call signatures.
39
+ /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (393,33): Argument of type 'TestSelection' is not assignable to parameter of type 'TestStore'.
40
+ Property 'testStore' is missing in type 'TestSelection' but required in type 'TestStore'.
41
+ /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (398,3): Type '(store: TestStore, thenCB: (s: TestSelection) => Promise<BaseSuite<any, any>>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<TestSelection>' is not assignable to type '(store: TestStore, thenCB: (store: TestStore) => Promise<TestSelection>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<...>'.
75
42
  Types of parameters 'thenCB' and 'thenCB' are incompatible.
76
- Type '(store: TestStore) => Promise<TestSelection>' is not assignable to type '(selection: TestSelection) => Promise<TestSelection>'.
77
- Types of parameters 'store' and 'selection' are incompatible.
43
+ Type '(store: TestStore) => Promise<TestSelection>' is not assignable to type '(s: TestSelection) => Promise<BaseSuite<any, any>>'.
44
+ Types of parameters 'store' and 's' are incompatible.
78
45
  Property 'testStore' is missing in type 'TestSelection' but required in type 'TestStore'.
79
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (398,7): Object literal may only specify known properties, and 'name' does not exist in type 'TestSelection'.
80
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (419,3): Type '(store: I["istore"]) => I["istore"]' is not assignable to type '(store: TestStore, key: string, pm: IPM) => Promise<unknown>'.
46
+ /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (415,3): Type '(store: I["istore"]) => I["istore"]' is not assignable to type '(store: TestStore, key: string, pm: IPM) => Promise<unknown>'.
81
47
  Type 'TestStore' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
82
- /Users/adam/Code/testeranto/src/lib/classBuilder.ts (89,18): A spread argument must either have a tuple type or be passed to a rest parameter.
83
- /Users/adam/Code/testeranto/src/lib/classBuilder.ts (104,28): A spread argument must either have a tuple type or be passed to a rest parameter.
84
48
  /Users/adam/Code/testeranto/src/lib/core.ts (48,7): Argument of type 'Omit<{ suites: import("/Users/adam/Code/testeranto/src/Types").TestSuiteImplementation<O>; givens: import("/Users/adam/Code/testeranto/src/Types").TestGivenImplementation<I, O>; whens: import("/Users/adam/Code/testeranto/src/Types").TestWhenImplementation<...>; thens: import("/Users/adam/Code/testeranto/src/Types")....' is not assignable to parameter of type 'Omit<{ suites: import("/Users/adam/Code/testeranto/src/Types").TestSuiteImplementation<O>; givens: import("/Users/adam/Code/testeranto/src/Types").TestGivenImplementation<I, O>; whens: import("/Users/adam/Code/testeranto/src/Types").TestWhenImplementation<...>; thens: import("/Users/adam/Code/testeranto/src/Types")....'.
85
49
  Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }' is not assignable to type '{ suites: Record<string, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'.
86
50
  Types of property 'suites' are incompatible.
87
51
  Type 'Record<string, any>' is not assignable to type 'Record<string, never>'.
88
52
  'string' index signatures are incompatible.
89
53
  Type 'any' is not assignable to type 'never'.
90
- /Users/adam/Code/testeranto/src/lib/index.ts (17,3): Type '(subject: T["isubject"], initialValues: T["iinitialValues"], x: unknown, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<T["isubject"]>' is not assignable to type '(subject: T["isubject"], initializer: (c?: any) => T["given"], testResource: ITTestResourceConfiguration, initialValues: any, pm: IPM) => Promise<...>'.
91
- Types of parameters 'initialValues' and 'initializer' are incompatible.
92
- Type '(c?: any) => T["given"]' is not assignable to type 'T["iinitialValues"]'.
93
- 'T["iinitialValues"]' could be instantiated with an arbitrary type which could be unrelated to '(c?: any) => T["given"]'.
94
- /Users/adam/Code/testeranto/src/lib/index.ts (19,20): Type '"iinitialValues"' cannot be used to index type 'T'.
95
- /Users/adam/Code/testeranto/src/lib/index.ts (41,13): This expression is not callable.
54
+ /Users/adam/Code/testeranto/src/lib/index.ts (36,12): This expression is not callable.
55
+ Type 'unknown' has no call signatures.
56
+ /Users/adam/Code/testeranto/src/lib/index.ts (44,12): This expression is not callable.
96
57
  Type 'unknown' has no call signatures.
97
- /Users/adam/Code/testeranto/src/lib/index.ts (53,3): Type '{ assertThis?: ((x: T["then"]) => any) | undefined; andWhen?: ((store: T["istore"], whenCB: T["when"], testResource: ITTestResourceConfiguration, pm: IPM) => Promise<T["istore"]>) | undefined; ... 4 more ...; beforeEach?: ((subject: T["isubject"], initializer: (c?: any) => T["given"], testResource: ITTestResourceCon...' is not assignable to type 'ITestAdapter<T>'.
98
- Types of property 'assertThis' are incompatible.
99
- Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
100
- Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
101
58
  /Users/adam/Code/testeranto/src/Node.ts (33,7): Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.
102
59
  Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
103
- /Users/adam/Code/testeranto/src/PM/pure.ts (114,3): Property 'customScreenShot' in type 'PM_Pure' is not assignable to the same property in base type 'PM'.
104
- Type '(opts: ScreencastOptions, page: string) => any' is not assignable to type '(opts: { path: string; }, page?: string | undefined) => any'.
105
- Types of parameters 'opts' and 'opts' are incompatible.
106
- Type '{ path: string; }' is not assignable to type 'ScreencastOptions'.
107
- Types of property 'path' are incompatible.
108
- Type 'string' is not assignable to type '`${string}.webm`'.
109
- /Users/adam/Code/testeranto/src/PM/pure.ts (145,3): Property 'createWriteStream' in type 'PM_Pure' is not assignable to the same property in base type 'PM'.
110
- Type '() => { write: () => boolean; end: () => void; }' is not assignable to type '(filepath: string, testName: string) => Promise<string>'.
111
- Type '{ write: () => boolean; end: () => void; }' is missing the following properties from type 'Promise<string>': then, catch, finally, [Symbol.toStringTag]
112
60
  /Users/adam/Code/testeranto/src/PM/web.ts (59,12): Property 'mainFrame' does not exist on type 'string | Page'.
113
61
  Property 'mainFrame' does not exist on type 'string'.
@@ -12,4 +12,4 @@
12
12
  /read testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt
13
13
  /read testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/lint_errors.txt
14
14
 
15
- /read testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/exit.log
15
+ /read testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/tests.json testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/lint_errors.txt testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/exit.log testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/message.txt testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/prompt.txt