testeranto 0.197.0 → 0.198.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (301) hide show
  1. package/.vscode/settings.json +7 -2
  2. package/design-editor/DesignEditor.tsx +9 -5
  3. package/dist/common/design-editor/DesignEditor.js +8 -5
  4. package/dist/common/src/App.js +29 -5
  5. package/dist/common/src/Node.js +3 -2
  6. package/dist/common/src/PM/main.js +1 -1
  7. package/dist/common/src/Pure.js +2 -2
  8. package/dist/common/src/Web.js +2 -2
  9. package/dist/common/src/components/DesignEditorPage.js +55 -19
  10. package/dist/common/src/lib/BaseGiven.js +99 -0
  11. package/dist/common/src/lib/BaseSuite.test/mock.js +9 -5
  12. package/dist/common/src/lib/BaseThen.js +64 -0
  13. package/dist/common/src/lib/BaseWhen.js +45 -0
  14. package/dist/common/src/lib/Tiposkripto.js +149 -0
  15. package/dist/common/src/lib/{core.test/MockCore.js → Tiposkripto.test/MockTiposkripto.js} +5 -8
  16. package/dist/common/src/lib/{core.test/core.test.adapter.js → Tiposkripto.test/Tiposkripto.adapter.js} +10 -8
  17. package/dist/common/src/lib/{classBuilder.test/classBuilder.test.implementation.js → Tiposkripto.test/Tiposkripto.implementation.js} +44 -61
  18. package/dist/common/src/lib/Tiposkripto.test/Tiposkripto.js +11 -0
  19. package/dist/common/src/lib/{classBuilder.test/classBuilder.test.specification.js → Tiposkripto.test/Tiposkripto.specification.js} +13 -9
  20. package/dist/common/src/lib/abstractBase.test/MockGiven.js +10 -3
  21. package/dist/common/src/lib/abstractBase.test/MockThen.js +6 -3
  22. package/dist/common/src/lib/abstractBase.test/MockWhen.js +10 -3
  23. package/dist/common/src/lib/abstractBase.test/adapter.js +18 -6
  24. package/dist/common/src/lib/abstractBase.test/implementation.js +3 -3
  25. package/dist/common/src/lib/mocks.test.js +10 -8
  26. package/dist/common/src/run.js +15 -4
  27. package/dist/common/testeranto.config.js +12 -36
  28. package/dist/common/tsconfig.common.tsbuildinfo +1 -1
  29. package/dist/module/design-editor/DesignEditor.js +8 -5
  30. package/dist/module/src/App.js +29 -5
  31. package/dist/module/src/Node.js +3 -2
  32. package/dist/module/src/PM/main.js +1 -1
  33. package/dist/module/src/Pure.js +2 -2
  34. package/dist/module/src/Web.js +2 -2
  35. package/dist/module/src/components/DesignEditorPage.js +55 -19
  36. package/dist/module/src/lib/BaseGiven.js +95 -0
  37. package/dist/module/src/lib/BaseSuite.test/mock.js +6 -2
  38. package/dist/module/src/lib/BaseThen.js +60 -0
  39. package/dist/module/src/lib/BaseWhen.js +41 -0
  40. package/dist/module/src/lib/Tiposkripto.js +146 -0
  41. package/dist/module/src/lib/{core.test/MockCore.js → Tiposkripto.test/MockTiposkripto.js} +3 -6
  42. package/dist/module/src/lib/{core.test/core.test.adapter.js → Tiposkripto.test/Tiposkripto.adapter.js} +10 -8
  43. package/dist/module/src/lib/{classBuilder.test/classBuilder.test.implementation.js → Tiposkripto.test/Tiposkripto.implementation.js} +44 -58
  44. package/dist/module/src/lib/Tiposkripto.test/Tiposkripto.js +6 -0
  45. package/dist/module/src/lib/{classBuilder.test/classBuilder.test.specification.js → Tiposkripto.test/Tiposkripto.specification.js} +12 -8
  46. package/dist/module/src/lib/abstractBase.test/MockGiven.js +9 -2
  47. package/dist/module/src/lib/abstractBase.test/MockThen.js +5 -2
  48. package/dist/module/src/lib/abstractBase.test/MockWhen.js +9 -2
  49. package/dist/module/src/lib/abstractBase.test/adapter.js +18 -6
  50. package/dist/module/src/lib/abstractBase.test/implementation.js +3 -3
  51. package/dist/module/src/lib/mocks.test.js +11 -5
  52. package/dist/module/src/run.js +15 -4
  53. package/dist/module/testeranto.config.js +12 -36
  54. package/dist/module/tsconfig.module.tsbuildinfo +1 -1
  55. package/dist/prebuild/App.js +1461 -8949
  56. package/dist/prebuild/run.mjs +25 -14
  57. package/dist/tsconfig.tsbuildinfo +1 -0
  58. package/dist/types/src/Node.d.ts +2 -2
  59. package/dist/types/src/PM/__tests__/nodeSidecar.testeranto.d.ts +1 -15
  60. package/dist/types/src/PM/__tests__/pureSidecar.testeranto.d.ts +1 -15
  61. package/dist/types/src/PM/__tests__/webSidecar.testeranto.d.ts +1 -15
  62. package/dist/types/src/Pure.d.ts +2 -2
  63. package/dist/types/src/Pure.test.d.ts +1 -58
  64. package/dist/types/src/ReportServer.test.ts/index.d.ts +1 -28
  65. package/dist/types/src/Types.d.ts +3 -1
  66. package/dist/types/src/Web.d.ts +2 -2
  67. package/dist/types/src/components/pure/AppFrame.test/index.d.ts +1 -3
  68. package/dist/types/src/components/pure/FeaturesReporterView.test/index.d.ts +1 -1
  69. package/dist/types/src/components/pure/ModalContent.test/index.d.ts +1 -2
  70. package/dist/types/src/components/pure/ProjectPageView.test/index.d.ts +1 -1
  71. package/dist/types/src/components/pure/TestPageView.test/index.d.ts +1 -1
  72. package/dist/types/src/lib/BaseGiven.d.ts +44 -0
  73. package/dist/types/src/lib/BaseSuite.d.ts +12 -7
  74. package/dist/types/src/lib/BaseSuite.test/mock.d.ts +3 -1
  75. package/dist/types/src/lib/BaseSuite.test/node.test.d.ts +1 -2
  76. package/dist/types/src/lib/BaseSuite.test/pure.test.d.ts +1 -2
  77. package/dist/types/src/lib/BaseSuite.test/web.test.d.ts +1 -2
  78. package/dist/types/src/lib/BaseThen.d.ts +27 -0
  79. package/dist/types/src/lib/BaseWhen.d.ts +27 -0
  80. package/dist/types/src/lib/Tiposkripto.d.ts +35 -0
  81. package/dist/types/src/lib/{core.test/MockCore.d.ts → Tiposkripto.test/MockTiposkripto.d.ts} +3 -3
  82. package/dist/types/src/lib/{core.test/core.test.adapter.d.ts → Tiposkripto.test/Tiposkripto.adapter.d.ts} +1 -1
  83. package/dist/types/src/lib/Tiposkripto.test/Tiposkripto.d.ts +2 -0
  84. package/dist/types/src/lib/{core.test/core.test.implementation.d.ts → Tiposkripto.test/Tiposkripto.implementation.d.ts} +1 -1
  85. package/dist/types/src/lib/{core.test/core.test.specification.d.ts → Tiposkripto.test/Tiposkripto.specification.d.ts} +1 -1
  86. package/dist/types/src/lib/{classBuilder.test/classBuilder.test.types.d.ts → Tiposkripto.test/Tiposkripto.types.d.ts} +11 -9
  87. package/dist/types/src/lib/abstractBase.test/MockGiven.d.ts +3 -1
  88. package/dist/types/src/lib/abstractBase.test/MockThen.d.ts +1 -1
  89. package/dist/types/src/lib/abstractBase.test/MockWhen.d.ts +1 -1
  90. package/dist/types/src/lib/abstractBase.test/index.d.ts +1 -2
  91. package/dist/types/src/lib/abstractBase.test/types.d.ts +3 -3
  92. package/dist/types/src/lib/index.d.ts +1 -1
  93. package/dist/types/src/lib/mocks.test.d.ts +0 -2
  94. package/dist/types/src/lib/pmProxy.test/index.d.ts +1 -2
  95. package/dist/types/src/lib/types.d.ts +3 -1
  96. package/dist/types/src/mothership/test.d.ts +1 -18
  97. package/dist/types/tsconfig.types.tsbuildinfo +1 -1
  98. package/package.json +4 -4
  99. package/src/App.tsx +27 -5
  100. package/src/Node.ts +3 -2
  101. package/src/PM/main.ts +1 -1
  102. package/src/Pure.ts +3 -2
  103. package/src/Types.ts +5 -3
  104. package/src/Web.ts +2 -2
  105. package/src/components/DesignEditorPage.tsx +54 -21
  106. package/src/lib/BaseGiven.ts +193 -0
  107. package/src/lib/BaseSuite.test/mock.ts +9 -2
  108. package/src/lib/BaseSuite.ts +14 -1
  109. package/src/lib/BaseThen.ts +108 -0
  110. package/src/lib/BaseWhen.ts +91 -0
  111. package/src/lib/{core.test/MockCore.ts → Tiposkripto.test/MockTiposkripto.ts} +4 -7
  112. package/src/lib/{core.test/core.test.adapter.ts → Tiposkripto.test/Tiposkripto.adapter.ts} +12 -11
  113. package/src/lib/{classBuilder.test/classBuilder.test.implementation.ts → Tiposkripto.test/Tiposkripto.implementation.ts} +75 -78
  114. package/src/lib/Tiposkripto.test/Tiposkripto.specification.ts +109 -0
  115. package/src/lib/Tiposkripto.test/Tiposkripto.ts +15 -0
  116. package/src/lib/{classBuilder.test/classBuilder.test.types.ts → Tiposkripto.test/Tiposkripto.types.ts} +12 -9
  117. package/src/lib/Tiposkripto.ts +325 -0
  118. package/src/lib/abstractBase.test/MockGiven.ts +12 -2
  119. package/src/lib/abstractBase.test/MockThen.ts +7 -2
  120. package/src/lib/abstractBase.test/MockWhen.ts +10 -2
  121. package/src/lib/abstractBase.test/adapter.ts +20 -6
  122. package/src/lib/abstractBase.test/implementation.ts +6 -6
  123. package/src/lib/abstractBase.test/types.ts +3 -3
  124. package/src/lib/index.ts +9 -3
  125. package/src/lib/mocks.test.ts +10 -9
  126. package/src/lib/types.ts +3 -1
  127. package/src/run.ts +19 -4
  128. package/testeranto/App.js +1461 -8949
  129. package/testeranto/bundles/node/core/src/lib/BaseSuite.test/node.test.mjs +1121 -9
  130. package/testeranto/bundles/pure/core/src/lib/BaseSuite.test/pure.test.mjs +979 -8
  131. package/testeranto/bundles/{pure/core/chunk-62UVCSQC.mjs → web/core/src/lib/BaseSuite.test/web.test.mjs} +721 -431
  132. package/testeranto/metafiles/node/core.json +264 -2180
  133. package/testeranto/metafiles/pure/core.json +147 -288
  134. package/testeranto/metafiles/web/core.json +16949 -18
  135. package/testeranto/reports/core/config.json +8 -40
  136. package/testeranto/reports/core/src/Pure.test/pure/type_errors.txt +8 -13
  137. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/error.log +66 -2
  138. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/info.log +2 -0
  139. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/prompt.txt +16 -0
  140. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/tests.json +68 -0
  141. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/type_errors.txt +56 -0
  142. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/error.log +22 -3
  143. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/info.log +2 -0
  144. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +13 -0
  145. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/prompt.txt +16 -0
  146. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/tests.json +88 -0
  147. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +45 -0
  148. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/error.log +0 -3
  149. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/info.log +2 -0
  150. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/lint_errors.txt +47 -0
  151. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/prompt.txt +17 -0
  152. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/tests.json +57 -0
  153. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/type_errors.txt +99 -0
  154. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/prompt.txt +1 -0
  155. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/tests.json +7 -9
  156. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/type_errors.txt +11 -16
  157. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +11 -16
  158. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/error.log +0 -2
  159. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/prompt.txt +15 -0
  160. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/tests.json +29 -0
  161. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/type_errors.txt +56 -0
  162. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/exit.log +1 -0
  163. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/message.txt +17 -0
  164. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/prompt.txt +17 -0
  165. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/stderr.log +18 -0
  166. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/type_errors.txt +32 -0
  167. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/exit.log +1 -1
  168. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stderr.log +60 -82
  169. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/type_errors.txt +8 -13
  170. package/testeranto/reports/core/summary.json +23 -36
  171. package/testeranto.config.ts +14 -41
  172. package/tsc.log +274 -455
  173. package/dist/common/src/lib/abstractBase.js +0 -196
  174. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +0 -25
  175. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +0 -113
  176. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.mock.js +0 -46
  177. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.node.js +0 -12
  178. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.pure.js +0 -12
  179. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.specification.js +0 -18
  180. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.web.js +0 -12
  181. package/dist/common/src/lib/basebuilder.js +0 -88
  182. package/dist/common/src/lib/classBuilder.js +0 -36
  183. package/dist/common/src/lib/classBuilder.test/classBuilder.test.adapter.js +0 -23
  184. package/dist/common/src/lib/classBuilder.test/classBuilder.test.js +0 -12
  185. package/dist/common/src/lib/classBuilder.test/classBuilder.test.types.js +0 -2
  186. package/dist/common/src/lib/classBuilder.test/mock.js +0 -17
  187. package/dist/common/src/lib/core.js +0 -45
  188. package/dist/common/src/lib/core.test/core.test.implementation.js +0 -121
  189. package/dist/common/src/lib/core.test/core.test.js +0 -63
  190. package/dist/common/src/lib/core.test/core.test.specification.js +0 -53
  191. package/dist/common/src/lib/core.test/core.test.types.js +0 -2
  192. package/dist/module/src/lib/abstractBase.js +0 -190
  193. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +0 -22
  194. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +0 -110
  195. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.mock.js +0 -42
  196. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.node.js +0 -7
  197. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.pure.js +0 -7
  198. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.specification.js +0 -14
  199. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.web.js +0 -7
  200. package/dist/module/src/lib/basebuilder.js +0 -84
  201. package/dist/module/src/lib/classBuilder.js +0 -32
  202. package/dist/module/src/lib/classBuilder.test/classBuilder.test.adapter.js +0 -20
  203. package/dist/module/src/lib/classBuilder.test/classBuilder.test.js +0 -7
  204. package/dist/module/src/lib/classBuilder.test/classBuilder.test.types.js +0 -1
  205. package/dist/module/src/lib/classBuilder.test/mock.js +0 -14
  206. package/dist/module/src/lib/core.js +0 -42
  207. package/dist/module/src/lib/core.test/core.test.implementation.js +0 -118
  208. package/dist/module/src/lib/core.test/core.test.js +0 -58
  209. package/dist/module/src/lib/core.test/core.test.specification.js +0 -49
  210. package/dist/module/src/lib/core.test/core.test.types.js +0 -1
  211. package/dist/types/src/lib/abstractBase.d.ts +0 -70
  212. package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.adapter.d.ts +0 -3
  213. package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.implementation.d.ts +0 -3
  214. package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.mock.d.ts +0 -15
  215. package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.node.d.ts +0 -3
  216. package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.pure.d.ts +0 -3
  217. package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.specification.d.ts +0 -3
  218. package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.types.d.ts +0 -22
  219. package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.web.d.ts +0 -3
  220. package/dist/types/src/lib/basebuilder.d.ts +0 -23
  221. package/dist/types/src/lib/classBuilder.d.ts +0 -15
  222. package/dist/types/src/lib/classBuilder.test/classBuilder.test.adapter.d.ts +0 -3
  223. package/dist/types/src/lib/classBuilder.test/classBuilder.test.d.ts +0 -3
  224. package/dist/types/src/lib/classBuilder.test/classBuilder.test.implementation.d.ts +0 -3
  225. package/dist/types/src/lib/classBuilder.test/classBuilder.test.specification.d.ts +0 -3
  226. package/dist/types/src/lib/classBuilder.test/mock.d.ts +0 -14
  227. package/dist/types/src/lib/core.d.ts +0 -12
  228. package/dist/types/src/lib/core.test/core.test.d.ts +0 -3
  229. package/dist/types/src/lib/core.test/core.test.types.d.ts +0 -46
  230. package/src/lib/abstractBase.ts +0 -351
  231. package/src/lib/baseBuilder.test/baseBuilder.test.adapter.ts +0 -29
  232. package/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts +0 -139
  233. package/src/lib/baseBuilder.test/baseBuilder.test.mock.ts +0 -90
  234. package/src/lib/baseBuilder.test/baseBuilder.test.node.ts +0 -16
  235. package/src/lib/baseBuilder.test/baseBuilder.test.pure.ts +0 -16
  236. package/src/lib/baseBuilder.test/baseBuilder.test.specification.ts +0 -35
  237. package/src/lib/baseBuilder.test/baseBuilder.test.types.ts +0 -36
  238. package/src/lib/baseBuilder.test/baseBuilder.test.web.ts +0 -16
  239. package/src/lib/basebuilder.ts +0 -187
  240. package/src/lib/classBuilder.test/classBuilder.test.adapter.ts +0 -25
  241. package/src/lib/classBuilder.test/classBuilder.test.specification.ts +0 -104
  242. package/src/lib/classBuilder.test/classBuilder.test.ts +0 -14
  243. package/src/lib/classBuilder.test/mock.ts +0 -83
  244. package/src/lib/classBuilder.ts +0 -120
  245. package/src/lib/core.test/core.test.implementation.ts +0 -155
  246. package/src/lib/core.test/core.test.specification.ts +0 -113
  247. package/src/lib/core.test/core.test.ts +0 -72
  248. package/src/lib/core.test/core.test.types.ts +0 -68
  249. package/src/lib/core.ts +0 -125
  250. package/testeranto/bundles/node/core/chunk-4CSH4UJE.mjs +0 -872
  251. package/testeranto/bundles/node/core/chunk-4JTDLQVA.mjs +0 -253
  252. package/testeranto/bundles/node/core/chunk-C3APFDUV.mjs +0 -70
  253. package/testeranto/bundles/node/core/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +0 -243
  254. package/testeranto/bundles/node/core/src/lib/classBuilder.test/classBuilder.test.mjs +0 -411
  255. package/testeranto/bundles/node/core/src/lib/core.test/core.test.mjs +0 -494
  256. package/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs +0 -4755
  257. package/testeranto/bundles/pure/core/src/Pure.test.mjs +0 -410
  258. package/testeranto/bundles/pure/core/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +0 -241
  259. package/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.html +0 -15
  260. package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.html +0 -15
  261. package/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.html +0 -15
  262. package/testeranto/bundles/web/core/src/lib/baseBuilder.test/baseBuilder.test.web.html +0 -15
  263. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/exit.log +0 -1
  264. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.txt +0 -10
  265. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/prompt.txt +0 -17
  266. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/stdout.log +0 -6
  267. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/suite-0/given-testInitialization/then-0/butThen/hello.txt +0 -1
  268. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/suite-0/given-testInitialization/then-1/butThen/artifact_test.txt +0 -1
  269. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +0 -71
  270. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +0 -42
  271. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.txt +0 -10
  272. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/prompt.txt +0 -17
  273. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +0 -42
  274. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/debug.log +0 -0
  275. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/error.log +0 -3
  276. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/exit.log +0 -1
  277. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/info.log +0 -0
  278. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/warn.log +0 -0
  279. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/exit.log +0 -1
  280. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/prompt.txt +0 -17
  281. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/stderr.log +0 -0
  282. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/stdout.log +0 -619
  283. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/tests.json +0 -165
  284. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt +0 -88
  285. package/testeranto/reports/core/src/lib/core.test/core.test/node/exit.log +0 -1
  286. package/testeranto/reports/core/src/lib/core.test/core.test/node/lint_errors.txt +0 -21
  287. package/testeranto/reports/core/src/lib/core.test/core.test/node/prompt.txt +0 -19
  288. package/testeranto/reports/core/src/lib/core.test/core.test/node/stderr.log +0 -0
  289. package/testeranto/reports/core/src/lib/core.test/core.test/node/type_errors.txt +0 -45
  290. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/tests.json +0 -152
  291. package/testeranto/reportsweb_build_errors +0 -546
  292. /package/dist/common/src/lib/{baseBuilder.test/baseBuilder.test.types.js → Tiposkripto.test/Tiposkripto.types.js} +0 -0
  293. /package/dist/module/src/lib/{baseBuilder.test/baseBuilder.test.types.js → Tiposkripto.test/Tiposkripto.types.js} +0 -0
  294. /package/testeranto/reports/core/src/{lib/classBuilder.test/classBuilder.test/node → components/pure/FeaturesReporterView.test/index/web}/lint_errors.txt +0 -0
  295. /package/testeranto/reports/core/src/{lib/baseBuilder.test/baseBuilder.test.node/node → components/pure/FeaturesReporterView.test/index/web}/message.txt +0 -0
  296. /package/testeranto/reports/core/src/{lib/baseBuilder.test/baseBuilder.test.pure/pure → components/pure/ProjectPageView.test/index/web}/message.txt +0 -0
  297. /package/testeranto/reports/core/src/{lib/classBuilder.test/classBuilder.test/node → components/pure/TestPageView.test/index/web}/message.txt +0 -0
  298. /package/testeranto/reports/core/src/lib/{baseBuilder.test/baseBuilder.test.node/node/stderr.log → BaseSuite.test/web.test/web/lint_errors.txt} +0 -0
  299. /package/testeranto/reports/core/src/lib/{core.test/core.test/node → BaseSuite.test/web.test/web}/message.txt +0 -0
  300. /package/testeranto/reports/core/src/lib/{baseBuilder.test/baseBuilder.test.pure/pure/exit.log → TipoSkripto.test/TipoSkripto/node/lint_errors.txt} +0 -0
  301. /package/testeranto/reports/core/src/lib/{core.test/core.test → TipoSkripto.test/TipoSkripto}/node/stdout.log +0 -0
@@ -1,165 +0,0 @@
1
- {
2
- "name": "Basic ClassBuilder Functionality",
3
- "givens": [
4
- {
5
- "key": "initialization",
6
- "name": "Default",
7
- "whens": [],
8
- "thens": [
9
- {
10
- "name": "initializedProperly: ",
11
- "error": false,
12
- "artifacts": []
13
- }
14
- ],
15
- "error": null,
16
- "features": [
17
- "ClassBuilder should initialize with default values"
18
- ],
19
- "artifacts": []
20
- },
21
- {
22
- "key": "customInput",
23
- "name": "WithCustomInput",
24
- "whens": [],
25
- "thens": [
26
- {
27
- "name": "initializedProperly: ",
28
- "error": false,
29
- "artifacts": []
30
- }
31
- ],
32
- "error": null,
33
- "features": {
34
- "custom": "input"
35
- },
36
- "artifacts": []
37
- },
38
- {
39
- "key": "resourceRequirements",
40
- "name": "WithResourceRequirements",
41
- "whens": [],
42
- "thens": [
43
- {
44
- "name": "resourceRequirementsSet: ",
45
- "error": false,
46
- "artifacts": []
47
- }
48
- ],
49
- "error": null,
50
- "features": {
51
- "ports": [
52
- 3000,
53
- 3001
54
- ]
55
- },
56
- "artifacts": []
57
- },
58
- {
59
- "key": "specGeneration",
60
- "name": "Default",
61
- "whens": [],
62
- "thens": [
63
- {
64
- "name": "specsGenerated: ",
65
- "error": false,
66
- "artifacts": []
67
- }
68
- ],
69
- "error": null,
70
- "features": [
71
- "Should generate specs from test specification"
72
- ],
73
- "artifacts": []
74
- },
75
- {
76
- "key": "jobCreation",
77
- "name": "Default",
78
- "whens": [],
79
- "thens": [
80
- {
81
- "name": "jobsCreated: ",
82
- "error": false,
83
- "artifacts": []
84
- }
85
- ],
86
- "error": null,
87
- "features": [
88
- "Should create test jobs from specs"
89
- ],
90
- "artifacts": []
91
- },
92
- {
93
- "key": "artifactTracking",
94
- "name": "Default",
95
- "whens": [
96
- {
97
- "name": "addArtifact: [object Promise]",
98
- "error": null,
99
- "artifacts": []
100
- }
101
- ],
102
- "thens": [
103
- {
104
- "name": "artifactsTracked: ",
105
- "error": false,
106
- "artifacts": []
107
- }
108
- ],
109
- "error": null,
110
- "features": [
111
- "Should track artifacts"
112
- ],
113
- "artifacts": []
114
- },
115
- {
116
- "key": "overridesConfiguration",
117
- "name": "Default",
118
- "whens": [],
119
- "thens": [
120
- {
121
- "name": "suitesOverridesConfigured: ",
122
- "error": false,
123
- "artifacts": []
124
- },
125
- {
126
- "name": "givensOverridesConfigured: ",
127
- "error": false,
128
- "artifacts": []
129
- },
130
- {
131
- "name": "whensOverridesConfigured: ",
132
- "error": false,
133
- "artifacts": []
134
- },
135
- {
136
- "name": "thensOverridesConfigured: ",
137
- "error": false,
138
- "artifacts": []
139
- }
140
- ],
141
- "error": null,
142
- "features": [
143
- "Should properly configure all overrides"
144
- ],
145
- "artifacts": []
146
- }
147
- ],
148
- "fails": 0,
149
- "features": [
150
- "ClassBuilder should initialize with default values",
151
- {
152
- "custom": "input"
153
- },
154
- {
155
- "ports": [
156
- 3000,
157
- 3001
158
- ]
159
- },
160
- "Should generate specs from test specification",
161
- "Should create test jobs from specs",
162
- "Should track artifacts",
163
- "Should properly configure all overrides"
164
- ]
165
- }
@@ -1,88 +0,0 @@
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.
2
- /Users/adam/Code/testeranto/src/lib/basebuilder.ts (76,49): Function lacks ending return statement and return type does not include 'undefined'.
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>>'.
17
- Types of parameters 'suite' and 'zel' are incompatible.
18
- Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 11 more.
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>)'.
23
- Type '() => void' is not assignable to type '(selector: string) => boolean'.
24
- Type 'void' is not assignable to type 'boolean'.
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>)'.
26
- Type '() => void' is not assignable to type '(p: any) => string'.
27
- Type 'void' is not assignable to type 'string'.
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>'.
31
- Types of parameters 'suite' and 'ssel' are incompatible.
32
- Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 11 more.
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<...>'.
42
- Types of parameters 'thenCB' and 'thenCB' 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.
45
- Property 'testStore' is missing in type 'TestSelection' but required in type 'TestStore'.
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>'.
47
- Type 'TestStore' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
48
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.adapter.ts (9,3): Type '() => Promise<void>' is not assignable to type '(input: {}, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<BaseBuilder<any, any, any, any, any, any>>'.
49
- Type 'Promise<void>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.
50
- Type 'void' is not assignable to type 'BaseBuilder<any, any, any, any, any, any>'.
51
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.adapter.ts (10,3): Type '(subject: BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => BaseBuilder<any, any, any, any, any, any>) => Promise<() => BaseBuilder<any, any, any, any, any, any>>' is not assignable to type '(subject: BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => BaseBuilder<any, any, any, any, any, any>, testResource: ITTestResourceConfiguration, initialValues: any, pm: IPM) => Promise<...>'.
52
- Type 'Promise<() => BaseBuilder<any, any, any, any, any, any>>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.
53
- Type '() => BaseBuilder<any, any, any, any, any, any>' is not assignable to type 'BaseBuilder<any, any, any, any, any, any>'.
54
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.adapter.ts (17,26): Expected 1 arguments, but got 2.
55
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.adapter.ts (20,26): Expected 1 arguments, but got 2.
56
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.adapter.ts (22,25): Type 'BaseBuilder<any, any, any, any, any, any>' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
57
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.implementation.ts (7,10): '"../classBuilder"' has no exported member named 'TestClassBuilder'. Did you mean 'ClassBuilder'?
58
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.implementation.ts (28,9): Argument of type 'typeof MockSuite' is not assignable to parameter of type 'ISuiteKlasser<I, O>'.
59
- Type 'typeof MockSuite' provides no match for the signature '(name: string, index: number, givens: IGivens<I>): BaseSuite<I, O>'.
60
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.implementation.ts (47,9): Expected 8 arguments, but got 9.
61
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.implementation.ts (60,9): Expected 8 arguments, but got 9.
62
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.implementation.ts (73,9): Expected 8 arguments, but got 9.
63
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.implementation.ts (86,9): Expected 8 arguments, but got 9.
64
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.implementation.ts (207,30): Type '(builder: ClassBuilder<any, any, any>) => Promise<ClassBuilder<any, any, any>>' is not assignable to type '(builder: ClassBuilder<any, any, any>) => ClassBuilder<any, any, any>'.
65
- Type 'Promise<ClassBuilder<any, any, any>>' is missing the following properties from type 'ClassBuilder<any, any, any>': specs, assertThis, testResourceRequirement, artifacts, and 12 more.
66
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.implementation.ts (209,23): Property 'testRun' does not exist on type 'ClassBuilder<any, any, any>'.
67
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.specification.ts (19,26): Expected 4 arguments, but got 3.
68
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.specification.ts (24,35): Expected 4 arguments, but got 3.
69
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.specification.ts (64,37): Expected 4 arguments, but got 3.
70
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.specification.ts (69,36): Expected 4 arguments, but got 3.
71
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.specification.ts (83,54): Cannot find name 'ITestJob'.
72
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.specification.ts (101,7): Expected 2 arguments, but got 3.
73
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/mock.ts (45,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 & { ...; }'.
74
- Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
75
- /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")....'.
76
- 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>; }'.
77
- Types of property 'suites' are incompatible.
78
- Type 'Record<string, any>' is not assignable to type 'Record<string, never>'.
79
- 'string' index signatures are incompatible.
80
- Type 'any' is not assignable to type 'never'.
81
- /Users/adam/Code/testeranto/src/lib/index.ts (36,12): This expression is not callable.
82
- Type 'unknown' has no call signatures.
83
- /Users/adam/Code/testeranto/src/lib/index.ts (44,12): This expression is not callable.
84
- Type 'unknown' has no call signatures.
85
- /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 & { ...; }'.
86
- 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
87
- /Users/adam/Code/testeranto/src/PM/web.ts (59,12): Property 'mainFrame' does not exist on type 'string | Page'.
88
- Property 'mainFrame' does not exist on type 'string'.
@@ -1,21 +0,0 @@
1
- src/lib/core.test/core.test.implementation.ts
2
- 33:30 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
3
- - undefined (fix)
4
- - undefined (fix)
5
- 53:61 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
6
- - undefined (fix)
7
- - undefined (fix)
8
- 66:37 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
9
- - undefined (fix)
10
- - undefined (fix)
11
- 70:25 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
12
- - undefined (fix)
13
- - undefined (fix)
14
- 74:37 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
15
- - undefined (fix)
16
- - undefined (fix)
17
- 74:47 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
18
- - undefined (fix)
19
- - undefined (fix)
20
- 81:41 'builder' is defined but never used. (@typescript-eslint/no-unused-vars)
21
- 134:19 'expectedMessage' is defined but never used. (@typescript-eslint/no-unused-vars)
@@ -1,19 +0,0 @@
1
-
2
- /add src/PM/pure.ts
3
- /add src/Pure.ts
4
- /add src/lib/core.test/core.test.specification.ts
5
- /add src/lib/core.test/MockCore.ts
6
- /add src/lib/core.test/core.test.implementation.ts
7
- /add src/lib/core.test/core.test.adapter.ts
8
- /add src/lib/core.test/core.test.ts
9
-
10
- /read node_modules/testeranto/docs/index.md
11
- /read node_modules/testeranto/docs/style.md
12
- /read node_modules/testeranto/docs/testing.ai.txt
13
- /read node_modules/testeranto/src/CoreTypes.ts
14
-
15
- /read testeranto/reports/core/src/lib/core.test/core.test/node/tests.json
16
- /read testeranto/reports/core/src/lib/core.test/core.test/node/type_errors.txt
17
- /read testeranto/reports/core/src/lib/core.test/core.test/node/lint_errors.txt
18
-
19
- /read testeranto/reports/core/src/lib/core.test/core.test/node/tests.json testeranto/reports/core/src/lib/core.test/core.test/node/type_errors.txt testeranto/reports/core/src/lib/core.test/core.test/node/lint_errors.txt testeranto/reports/core/src/lib/core.test/core.test/node/exit.log testeranto/reports/core/src/lib/core.test/core.test/node/message.txt testeranto/reports/core/src/lib/core.test/core.test/node/prompt.txt testeranto/reports/core/src/lib/core.test/core.test/node/stdout.log testeranto/reports/core/src/lib/core.test/core.test/node/stderr.log
@@ -1,45 +0,0 @@
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.
2
- /Users/adam/Code/testeranto/src/lib/basebuilder.ts (76,49): Function lacks ending return statement and return type does not include 'undefined'.
3
- /Users/adam/Code/testeranto/src/lib/basebuilder.ts (123,15): Expected 1 arguments, but got 3.
4
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.adapter.ts (27,26): Expected 1 arguments, but got 2.
5
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.adapter.ts (30,26): Expected 1 arguments, but got 2.
6
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.adapter.ts (32,25): Type 'MockCore<any, any, any>' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
7
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.implementation.ts (21,11): Cannot find name 'specification'.
8
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.implementation.ts (23,11): Argument of type '{ ports: number[]; }' is not assignable to parameter of type 'ITTestResourceRequest'.
9
- Types of property 'ports' are incompatible.
10
- Type 'number[]' is not assignable to type 'number'.
11
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.implementation.ts (24,11): Cannot find name 'testAdapter'.
12
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.implementation.ts (36,9): Cannot find name 'specification'.
13
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.implementation.ts (38,11): Type 'never[]' is not assignable to type 'number'.
14
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.implementation.ts (39,9): Cannot find name 'testAdapter'.
15
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.implementation.ts (46,9): Cannot find name 'specification'.
16
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.implementation.ts (49,9): Cannot find name 'testAdapter'.
17
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.implementation.ts (56,9): Cannot find name 'specification'.
18
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.implementation.ts (58,11): Type 'never[]' is not assignable to type 'number'.
19
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.implementation.ts (59,14): Cannot find name 'testAdapter'.
20
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.implementation.ts (93,51): Property 'constructor' does not exist on type 'never'.
21
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.implementation.ts (138,30): Type '(builder: MockCore<any, any, any>) => Promise<MockCore<any, any, any>>' is not assignable to type '(builder: MockCore<any, any, any>) => MockCore<any, any, any>'.
22
- Type 'Promise<MockCore<any, any, any>>' is missing the following properties from type 'MockCore<any, any, any>': specs, testJobs, artifacts, testResourceRequirement, and 14 more.
23
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.specification.ts (29,7): Expected 2 arguments, but got 4.
24
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.specification.ts (42,13): Object literal may only specify known properties, and 'test' does not exist in type 'string[]'.
25
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.specification.ts (49,13): Object literal may only specify known properties, and 'ports' does not exist in type 'string[]'.
26
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.specification.ts (55,13): Object literal may only specify known properties, and 'assertThis' does not exist in type 'string[]'.
27
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.specification.ts (82,105): Expected 2 arguments, but got 3.
28
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.types.ts (15,17): Generic type 'Ibdd_out' requires between 0 and 4 type arguments.
29
- /Users/adam/Code/testeranto/src/lib/core.test/MockCore.ts (32,56): Type 'never[]' is not assignable to type 'number'.
30
- /Users/adam/Code/testeranto/src/lib/core.test/MockCore.ts (49,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 & { ...; }'.
31
- 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
32
- /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")....'.
33
- 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>; }'.
34
- Types of property 'suites' are incompatible.
35
- Type 'Record<string, any>' is not assignable to type 'Record<string, never>'.
36
- 'string' index signatures are incompatible.
37
- Type 'any' is not assignable to type 'never'.
38
- /Users/adam/Code/testeranto/src/lib/index.ts (36,12): This expression is not callable.
39
- Type 'unknown' has no call signatures.
40
- /Users/adam/Code/testeranto/src/lib/index.ts (44,12): This expression is not callable.
41
- Type 'unknown' has no call signatures.
42
- /Users/adam/Code/testeranto/src/PM/web.ts (59,12): Property 'mainFrame' does not exist on type 'string | Page'.
43
- Property 'mainFrame' does not exist on type 'string'.
44
- /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 & { ...; }'.
45
- 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,152 +0,0 @@
1
- {
2
- "name": "PM Proxy Functionality",
3
- "givens": [
4
- {
5
- "key": "writeFileProxyTest",
6
- "name": "SomeBaseString",
7
- "whens": [],
8
- "thens": [
9
- {
10
- "name": "theButTheProxyReturns: writeFileSync,test/path/butThen/test.txt",
11
- "error": false,
12
- "artifacts": []
13
- }
14
- ],
15
- "error": null,
16
- "features": [
17
- "butThenProxy should rewrite writeFileSync paths"
18
- ],
19
- "artifacts": []
20
- },
21
- {
22
- "key": "createWriteStreamProxyTest",
23
- "name": "SomeBaseString",
24
- "whens": [],
25
- "thens": [
26
- {
27
- "name": "theButTheProxyReturns: createWriteStream,test/path/butThen/stream.txt",
28
- "error": false,
29
- "artifacts": []
30
- }
31
- ],
32
- "error": null,
33
- "features": [
34
- "butThenProxy should rewrite createWriteStream paths"
35
- ],
36
- "artifacts": []
37
- },
38
- {
39
- "key": "screencastProxyTest",
40
- "name": "SomeBaseString",
41
- "whens": [],
42
- "thens": [
43
- {
44
- "name": "theButTheProxyReturns: screencast,test/path/butThen/screen.png",
45
- "error": false,
46
- "artifacts": []
47
- }
48
- ],
49
- "error": null,
50
- "features": [
51
- "butThenProxy should rewrite screencast paths"
52
- ],
53
- "artifacts": []
54
- },
55
- {
56
- "key": "customScreenShotProxyTest",
57
- "name": "SomeBaseString",
58
- "whens": [],
59
- "thens": [
60
- {
61
- "name": "theButTheProxyReturns: customScreenShot,test/path/butThen/shot.png",
62
- "error": false,
63
- "artifacts": []
64
- }
65
- ],
66
- "error": null,
67
- "features": [
68
- "butThenProxy should rewrite customScreenShot paths"
69
- ],
70
- "artifacts": []
71
- },
72
- {
73
- "key": "emptyPathTest",
74
- "name": "SomeBaseString",
75
- "whens": [],
76
- "thens": [
77
- {
78
- "name": "theButTheProxyReturns: writeFileSync,test/path/butThen/",
79
- "error": false,
80
- "artifacts": []
81
- }
82
- ],
83
- "error": null,
84
- "features": [
85
- "butThenProxy should handle empty paths"
86
- ],
87
- "artifacts": []
88
- },
89
- {
90
- "key": "nestedPathTest",
91
- "name": "SomeBaseString",
92
- "whens": [],
93
- "thens": [
94
- {
95
- "name": "theButTheProxyReturns: writeFileSync,test/path/butThen/nested/folder/test.txt",
96
- "error": false,
97
- "artifacts": []
98
- }
99
- ],
100
- "error": null,
101
- "features": [
102
- "butThenProxy should handle nested paths"
103
- ],
104
- "artifacts": []
105
- },
106
- {
107
- "key": "specialCharsTest",
108
- "name": "SomeBaseString",
109
- "whens": [],
110
- "thens": [
111
- {
112
- "name": "theButTheProxyReturns: writeFileSync,test/path/butThen/file with spaces.txt",
113
- "error": false,
114
- "artifacts": []
115
- }
116
- ],
117
- "error": null,
118
- "features": [
119
- "butThenProxy should handle special characters in paths"
120
- ],
121
- "artifacts": []
122
- },
123
- {
124
- "key": "testsJsonTest",
125
- "name": "SomeBaseString",
126
- "whens": [],
127
- "thens": [
128
- {
129
- "name": "theButTheProxyReturns: writeFileSync,test/path/butThen/tests.json",
130
- "error": false,
131
- "artifacts": []
132
- }
133
- ],
134
- "error": null,
135
- "features": [
136
- "butThenProxy should handle tests.json correctly"
137
- ],
138
- "artifacts": []
139
- }
140
- ],
141
- "fails": 0,
142
- "features": [
143
- "butThenProxy should rewrite writeFileSync paths",
144
- "butThenProxy should rewrite createWriteStream paths",
145
- "butThenProxy should rewrite screencast paths",
146
- "butThenProxy should rewrite customScreenShot paths",
147
- "butThenProxy should handle empty paths",
148
- "butThenProxy should handle nested paths",
149
- "butThenProxy should handle special characters in paths",
150
- "butThenProxy should handle tests.json correctly"
151
- ]
152
- }