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,90 +0,0 @@
1
- /* eslint-disable @typescript-eslint/no-empty-object-type */
2
- /* eslint-disable @typescript-eslint/no-explicit-any */
3
- import { Ibdd_in_any, Ibdd_out_any, ITestSpecification } from "../../CoreTypes";
4
-
5
- import { BaseBuilder } from "../basebuilder";
6
-
7
- import {
8
- ISuiteKlasser,
9
- IGivenKlasser,
10
- IWhenKlasser,
11
- IThenKlasser,
12
- } from "../types";
13
- import { ITTestResourceRequest } from "..";
14
-
15
- /**
16
- * Concrete implementation of BaseBuilder for testing purposes only
17
- */
18
- export class MockBaseBuilder<
19
- I extends Ibdd_in_any,
20
- O extends Ibdd_out_any,
21
- SuiteExtensions = {},
22
- GivenExtensions = {},
23
- WhenExtensions = {},
24
- ThenExtensions = {}
25
- > extends BaseBuilder<
26
- I,
27
- O,
28
- SuiteExtensions,
29
- GivenExtensions,
30
- WhenExtensions,
31
- ThenExtensions
32
- > {
33
- public summary: Record<string, any> = {};
34
-
35
- constructor(
36
- input: I["iinput"],
37
- suitesOverrides: Record<
38
- keyof SuiteExtensions,
39
- ISuiteKlasser<I, O>
40
- > = {} as any,
41
- givenOverrides: Record<keyof GivenExtensions, IGivenKlasser<I>> = {} as any,
42
- whenOverrides: Record<keyof WhenExtensions, IWhenKlasser<I>> = {} as any,
43
- thenOverrides: Record<keyof ThenExtensions, IThenKlasser<I>> = {} as any,
44
- testResourceRequirement: ITTestResourceRequest = { ports: 0 },
45
- testSpecification: ITestSpecification<I, O> = () => []
46
- ) {
47
- super(
48
- input,
49
- suitesOverrides,
50
- givenOverrides,
51
- whenOverrides,
52
- thenOverrides,
53
- testResourceRequirement,
54
- testSpecification
55
- );
56
- }
57
-
58
- /**
59
- * Simplified version for testing that doesn't actually run tests
60
- */
61
- public async testRun(puppetMaster: any): Promise<any> {
62
- try {
63
- this.summary = {
64
- [puppetMaster.testResourceConfiguration.name]: {
65
- typeErrors: 0,
66
- staticErrors: 0,
67
- runTimeError: "",
68
- prompt: "",
69
- failingFeatures: {},
70
- },
71
- };
72
-
73
- return {
74
- failed: false,
75
- fails: 0,
76
- artifacts: this.artifacts,
77
- features: [],
78
- };
79
- } catch (error) {
80
- console.error("Test run failed:", error);
81
- return {
82
- failed: true,
83
- fails: 1,
84
- artifacts: this.artifacts,
85
- features: [],
86
- error: error.message
87
- };
88
- }
89
- }
90
- }
@@ -1,16 +0,0 @@
1
- /* eslint-disable @typescript-eslint/no-empty-object-type */
2
- import Testeranto from "../../Node";
3
-
4
- import { specification } from "./baseBuilder.test.specification";
5
- import { implementation } from "./baseBuilder.test.implementation";
6
- import { testAdapter } from "./baseBuilder.test.adapter";
7
- import { I, O } from "./baseBuilder.test.types";
8
-
9
- import { MockBaseBuilder } from "./baseBuilder.test.mock";
10
-
11
- export default Testeranto<I, O, {}>(
12
- MockBaseBuilder.prototype,
13
- specification,
14
- implementation,
15
- testAdapter
16
- );
@@ -1,16 +0,0 @@
1
- /* eslint-disable @typescript-eslint/no-empty-object-type */
2
- import Testeranto from "../../Pure";
3
-
4
- import { specification } from "./baseBuilder.test.specification";
5
- import { implementation } from "./baseBuilder.test.implementation";
6
- import { testAdapter } from "./baseBuilder.test.adapter";
7
- import { I, O } from "./baseBuilder.test.types";
8
-
9
- import { MockBaseBuilder } from "./baseBuilder.test.mock";
10
-
11
- export default Testeranto<I, O, {}>(
12
- MockBaseBuilder.prototype,
13
- specification,
14
- implementation,
15
- testAdapter
16
- );
@@ -1,35 +0,0 @@
1
- import { ITestSpecification } from "../../CoreTypes";
2
-
3
- import { I, O } from "./baseBuilder.test.types";
4
-
5
- export const specification: ITestSpecification<I, O> = (
6
- Suite,
7
- Given,
8
- When,
9
- Then
10
- ) => {
11
- return [
12
- Suite.Default("Testing BaseBuilder functionality", {
13
- testInitialization: Given["the default BaseBuilder"](
14
- ["BaseBuilder should initialize correctly"],
15
- [],
16
- [
17
- Then["it is initialized"](),
18
- Then["it tracks artifacts"](),
19
- // Then["it creates jobs"](),
20
- // Then["it generates TestSpecifications"](),
21
- ]
22
- ),
23
- testSpecsGeneration: Given["the default BaseBuilder"](
24
- ["BaseBuilder should generate specs from test specification"],
25
- [],
26
- [Then["it generates TestSpecifications"]()]
27
- ),
28
- testJobsCreation: Given["the default BaseBuilder"](
29
- ["BaseBuilder should create test jobs"],
30
- [],
31
- [Then["it creates jobs"]()]
32
- ),
33
- }),
34
- ];
35
- };
@@ -1,36 +0,0 @@
1
- /* eslint-disable @typescript-eslint/no-empty-object-type */
2
- /* eslint-disable @typescript-eslint/no-explicit-any */
3
- import { Ibdd_in, Ibdd_out } from "../../CoreTypes";
4
- import { BaseBuilder } from "../basebuilder";
5
-
6
- export type I = Ibdd_in<
7
- {}, // iinput
8
- BaseBuilder<any, any, any, any, any, any>, // isubject
9
- BaseBuilder<any, any, any, any, any, any>, // istore
10
- BaseBuilder<any, any, any, any, any, any>, // iselection
11
- () => BaseBuilder<any, any, any, any, any, any>, // given
12
- (store: any) => any, // when
13
- (store: any) => any // then
14
- >;
15
-
16
- export type O = Ibdd_out<
17
- // Suites
18
- {
19
- Default: [string];
20
- },
21
- // Givens
22
- {
23
- "the default BaseBuilder": [];
24
- "a BaseBuilder with TestInput": [];
25
- "a BaseBuilder with Test Resource Requirements": [];
26
- },
27
- // Whens
28
- {}, // No whens in these tests
29
- // Thens
30
- {
31
- "it is initialized": [];
32
- "it generates TestSpecifications": [];
33
- "it creates jobs": [];
34
- "it tracks artifacts": [];
35
- }
36
- >;
@@ -1,16 +0,0 @@
1
- /* eslint-disable @typescript-eslint/no-empty-object-type */
2
- import Testeranto from "../../Web";
3
-
4
- import { specification } from "./baseBuilder.test.specification";
5
- import { implementation } from "./baseBuilder.test.implementation";
6
- import { testAdapter } from "./baseBuilder.test.adapter";
7
- import { I, O } from "./baseBuilder.test.types";
8
-
9
- import { MockBaseBuilder } from "./baseBuilder.test.mock";
10
-
11
- export default Testeranto<I, O, {}>(
12
- MockBaseBuilder.prototype,
13
- specification,
14
- implementation,
15
- testAdapter
16
- );
@@ -1,187 +0,0 @@
1
- /* eslint-disable @typescript-eslint/no-unused-vars */
2
- /* eslint-disable @typescript-eslint/no-empty-object-type */
3
- /* eslint-disable no-async-promise-executor */
4
- /* eslint-disable @typescript-eslint/no-explicit-any */
5
-
6
- // Do not add logging to this file as it is used by the pure runtime.
7
-
8
- import { PassThrough } from "stream";
9
-
10
- import type {
11
- Ibdd_in_any,
12
- Ibdd_out_any,
13
- ITestSpecification,
14
- } from "../CoreTypes";
15
-
16
- import { ITestJob, ITLog, IFinalResults, ITTestResourceRequest } from ".";
17
- import {
18
- ISuiteKlasser,
19
- IGivenKlasser,
20
- IWhenKlasser,
21
- IThenKlasser,
22
- IPM,
23
- } from "./types.js";
24
- import { BaseWhen, BaseThen, BaseGiven } from "./abstractBase.js";
25
- import { BaseSuite } from "./BaseSuite";
26
-
27
- export abstract class BaseBuilder<
28
- I extends Ibdd_in_any,
29
- O extends Ibdd_out_any,
30
- SuiteExtensions,
31
- GivenExtensions,
32
- WhenExtensions,
33
- ThenExtensions
34
- > {
35
- specs: any;
36
-
37
- assertThis: (t: I["then"]) => any;
38
-
39
- testResourceRequirement: ITTestResourceRequest;
40
- artifacts: Promise<unknown>[] = [];
41
- testJobs: ITestJob[];
42
- testSpecification: ITestSpecification<I, O>;
43
- suitesOverrides: Record<keyof SuiteExtensions, ISuiteKlasser<I, O>>;
44
- givenOverides: Record<keyof GivenExtensions, IGivenKlasser<I>>;
45
- whenOverides: Record<keyof WhenExtensions, IWhenKlasser<I>>;
46
- thenOverides: Record<keyof ThenExtensions, IThenKlasser<I>>;
47
- puppetMaster: IPM;
48
-
49
- constructor(
50
- input: I["iinput"],
51
- suitesOverrides: Record<keyof SuiteExtensions, ISuiteKlasser<I, O>>,
52
- givenOverides: Record<keyof GivenExtensions, IGivenKlasser<I>>,
53
- whenOverides: Record<keyof WhenExtensions, IWhenKlasser<I>>,
54
- thenOverides: Record<keyof ThenExtensions, IThenKlasser<I>>,
55
- testResourceRequirement: ITTestResourceRequest,
56
- testSpecification: any
57
- ) {
58
- this.artifacts = [];
59
- this.testResourceRequirement = testResourceRequirement;
60
- this.suitesOverrides = suitesOverrides;
61
- this.givenOverides = givenOverides;
62
- this.whenOverides = whenOverides;
63
- this.thenOverides = thenOverides;
64
- this.testSpecification = testSpecification;
65
-
66
- this.specs = testSpecification(
67
- this.Suites(),
68
- this.Given(),
69
- this.When(),
70
- this.Then()
71
- );
72
-
73
- this.testJobs = this.specs.map((suite: BaseSuite<I, O>) => {
74
- const suiteRunner =
75
- (suite: BaseSuite<I, O>) =>
76
- async (puppetMaster: IPM, tLog: ITLog): Promise<BaseSuite<I, O>> => {
77
- try {
78
- const x = await suite.run(
79
- input,
80
- puppetMaster.testResourceConfiguration,
81
- (fPath: string, value: string | Buffer | PassThrough) =>
82
- puppetMaster.testArtiFactoryfileWriter(
83
- tLog,
84
- (p: Promise<void>) => {
85
- this.artifacts.push(p);
86
- }
87
- )(
88
- puppetMaster.testResourceConfiguration.fs + "/" + fPath,
89
- value
90
- ),
91
- tLog,
92
- puppetMaster
93
- );
94
- return x;
95
- } catch (e) {
96
- console.error(e.stack);
97
- }
98
- };
99
-
100
- const runner = suiteRunner(suite);
101
-
102
- return {
103
- test: suite,
104
-
105
- toObj: () => {
106
- return suite.toObj();
107
- },
108
-
109
- runner,
110
-
111
- receiveTestResourceConfig: async function (
112
- puppetMaster: IPM
113
- ): Promise<IFinalResults> {
114
- const tLog = async (...l: string[]) => {
115
- //
116
- };
117
-
118
- try {
119
- const suiteDone: BaseSuite<I, O> = await runner(puppetMaster, tLog);
120
- const fails = suiteDone.fails;
121
- await puppetMaster.writeFileSync(
122
- `tests.json`,
123
- JSON.stringify(this.toObj(), null, 2),
124
- "test"
125
- );
126
-
127
- return {
128
- failed: fails > 0,
129
- fails,
130
- artifacts: this.artifacts || [],
131
- features: suiteDone.features(),
132
- };
133
- } catch (e) {
134
- console.error(e.stack);
135
- return {
136
- failed: true,
137
- fails: -1,
138
- artifacts: this.artifacts || [],
139
- features: [],
140
- };
141
- }
142
- },
143
- };
144
- });
145
- }
146
-
147
- // testsJson() {
148
- // puppetMaster.writeFileSync(
149
- // `tests.json`,
150
- // JSON.stringify({ features: suiteDone.features() }, null, 2)
151
- // );
152
- // }
153
-
154
- Specs() {
155
- return this.specs;
156
- }
157
- Suites() {
158
- return this.suitesOverrides;
159
- }
160
-
161
- Given(): Record<
162
- keyof GivenExtensions,
163
- (
164
- name: string,
165
- features: string[],
166
- whens: BaseWhen<I>[],
167
- thens: BaseThen<I>[],
168
- gcb
169
- ) => BaseGiven<I>
170
- > {
171
- return this.givenOverides;
172
- }
173
-
174
- When(): Record<
175
- keyof WhenExtensions,
176
- (arg0: I["istore"], ...arg1: any) => BaseWhen<I>
177
- > {
178
- return this.whenOverides;
179
- }
180
-
181
- Then(): Record<
182
- keyof ThenExtensions,
183
- (selection: I["iselection"], expectation: any) => BaseThen<I>
184
- > {
185
- return this.thenOverides;
186
- }
187
- }
@@ -1,25 +0,0 @@
1
- /* eslint-disable @typescript-eslint/no-unused-vars */
2
- /* eslint-disable @typescript-eslint/no-explicit-any */
3
-
4
- import { ITestAdapter } from "../../CoreTypes";
5
-
6
- import { I } from "../baseBuilder.test/baseBuilder.test.types";
7
-
8
- export const testAdapter: ITestAdapter<I> = {
9
- beforeAll: async () => {},
10
- beforeEach: async (subject, initializer) => {
11
- console.log("Running beforeEach with initializer:", initializer);
12
- const result = await initializer();
13
- console.log("Initializer returned:", result);
14
- return result;
15
- },
16
- andWhen: async (store, whenCB, testResource, utils) => {
17
- return whenCB(store, utils);
18
- },
19
- butThen: async (store, thenCB, testResource, pm) => {
20
- return thenCB(store, pm);
21
- },
22
- afterEach: (store) => store,
23
- afterAll: () => {},
24
- assertThis: (x: any) => {},
25
- };
@@ -1,104 +0,0 @@
1
- import { ITestSpecification } from "../../CoreTypes";
2
- import { I, O } from "./classBuilder.test.types";
3
- import { implementation } from "./classBuilder.test.implementation";
4
-
5
- export const specification: ITestSpecification<I, O> = (
6
- Suite,
7
- Given,
8
- When,
9
- Then
10
- ) => {
11
- return [
12
- Suite.Default("Basic ClassBuilder Functionality", {
13
- // Basic initialization tests
14
- initialization: Given.Default(
15
- ["ClassBuilder should initialize with default values"],
16
- [],
17
- [Then.initializedProperly()]
18
- ),
19
- customInput: Given.WithCustomInput(
20
- { custom: "input" },
21
- [],
22
- [Then.initializedProperly()]
23
- ),
24
- resourceRequirements: Given.WithResourceRequirements(
25
- { ports: [3000, 3001] },
26
- [],
27
- [Then.resourceRequirementsSet()]
28
- ),
29
-
30
- // Core functionality tests
31
- specGeneration: Given.Default(
32
- ["Should generate specs from test specification"],
33
- [],
34
- [Then.specsGenerated()]
35
- ),
36
- jobCreation: Given.Default(
37
- ["Should create test jobs from specs"],
38
- [],
39
- [Then.jobsCreated()]
40
- ),
41
- artifactTracking: Given.Default(
42
- ["Should track artifacts"],
43
- [When.addArtifact(Promise.resolve("test"))],
44
- [Then.artifactsTracked()]
45
- ),
46
-
47
- // Configuration tests
48
- overridesConfiguration: Given.Default(
49
- ["Should properly configure all overrides"],
50
- [],
51
- [
52
- Then.suitesOverridesConfigured(),
53
- Then.givensOverridesConfigured(),
54
- Then.whensOverridesConfigured(),
55
- Then.thensOverridesConfigured(),
56
- ]
57
- ),
58
- }),
59
-
60
- Suite.ExtendedSuite(
61
- "Advanced ClassBuilder Functionality",
62
- {
63
- // Custom implementations
64
- customImplementation: Given.WithCustomImplementation(
65
- implementation,
66
- [],
67
- [Then.specsGenerated(), Then.jobsCreated()]
68
- ),
69
- customSpecification: Given.WithCustomSpecification(
70
- specification,
71
- [],
72
- [Then.specsGenerated(), Then.jobsCreated()]
73
- ),
74
-
75
- // Dynamic modification tests
76
- modifySpecs: Given.Default(
77
- ["Should allow modifying specs"],
78
- [When.modifySpecs((specs) => [...specs, "extra"])],
79
- [Then.specsModified(1)]
80
- ),
81
- modifyJobs: Given.Default(
82
- ["Should allow modifying jobs"],
83
- [When.modifyJobs((jobs) => [...jobs, {} as ITestJob])],
84
- [Then.jobsModified(1)]
85
- ),
86
-
87
- // Error handling
88
- errorHandling: Given.Default(
89
- ["Should properly handle errors"],
90
- [When.triggerError("test error")],
91
- [Then.errorThrown("test error")]
92
- ),
93
-
94
- // Full test run
95
- testRun: Given.Default(
96
- ["Should complete a full test run successfully"],
97
- [],
98
- [Then.testRunSuccessful()]
99
- ),
100
- },
101
- []
102
- ),
103
- ];
104
- };
@@ -1,14 +0,0 @@
1
- import Testeranto from "../../Node";
2
- import { ClassBuilder } from "../classBuilder";
3
- import { specification } from "./classBuilder.test.specification";
4
- import { implementation } from "./classBuilder.test.implementation";
5
- import { testAdapter } from "./classBuilder.test.adapter";
6
- import { I, O, M } from "./classBuilder.test.types";
7
-
8
- export default Testeranto<I, O, M>(
9
- ClassBuilder.prototype,
10
- specification,
11
- implementation,
12
- testAdapter,
13
- { ports: 1 } // Add resource requirements
14
- );
@@ -1,83 +0,0 @@
1
- /* eslint-disable @typescript-eslint/no-explicit-any */
2
-
3
- import {
4
- Ibdd_in_any,
5
- Ibdd_out_any,
6
- ITestImplementation,
7
- ITestSpecification,
8
- } from "../../CoreTypes";
9
-
10
- import { ClassBuilder } from "../classBuilder";
11
-
12
- import {
13
- ISuiteKlasser,
14
- IGivenKlasser,
15
- IWhenKlasser,
16
- IThenKlasser,
17
- } from "../types";
18
-
19
- import { ITTestResourceRequest } from "..";
20
-
21
- /**
22
- * Concrete testable implementation of ClassBuilder for testing
23
- */
24
- export default class TestClassBuilderMock<
25
- I extends Ibdd_in_any,
26
- O extends Ibdd_out_any,
27
- M = unknown
28
- > extends ClassBuilder<I, O, M> {
29
- public testJobs: any[] = [];
30
- public specs: any[] = [];
31
- public artifacts: any[] = [];
32
- public summary: Record<string, any> = {};
33
-
34
- constructor(
35
- testImplementation: ITestImplementation<I, O, M>,
36
- testSpecification: ITestSpecification<I, O>,
37
- input: I["iinput"],
38
- suiteKlasser: ISuiteKlasser<I, O>,
39
- givenKlasser: IGivenKlasser<I>,
40
- whenKlasser: IWhenKlasser<I>,
41
- thenKlasser: IThenKlasser<I>,
42
- testResourceRequirement: ITTestResourceRequest
43
- ) {
44
- super(
45
- testImplementation,
46
- testSpecification,
47
- input,
48
- suiteKlasser,
49
- givenKlasser,
50
- whenKlasser,
51
- thenKlasser,
52
- testResourceRequirement
53
- );
54
- }
55
-
56
- // async runTests(puppetMaster: any): Promise<any> {
57
- // this.summary = {
58
- // [puppetMaster.testResourceConfiguration.name]: {
59
- // typeErrors: 0,
60
- // staticErrors: 0,
61
- // runTimeError: "",
62
- // prompt: "",
63
- // failingFeatures: {},
64
- // },
65
- // };
66
-
67
- // return {
68
- // failed: false,
69
- // fails: 0,
70
- // artifacts: this.artifacts,
71
- // logPromise: Promise.resolve(),
72
- // features: [],
73
- // };
74
- // }
75
-
76
- // protected async executeTestJob(job: any): Promise<any> {
77
- // return job();
78
- // }
79
-
80
- // protected createArtifact(name: string, content: any): void {
81
- // this.artifacts.push({ name, content });
82
- // }
83
- }