testeranto 0.129.0 → 0.134.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 (386) hide show
  1. package/.aider.chat.history.md +137197 -0
  2. package/.aider.input.history +334 -0
  3. package/.aider.tags.cache.v3/18/8b/7dfca822129dad10b5cacadf7728.val +0 -0
  4. package/.aider.tags.cache.v3/{ec/c0/161c249c35be853cc40cf11f9267.val → 62/f5/8af72140d93c58db2f6aa5bf3f1f.val} +0 -0
  5. package/.aider.tags.cache.v3/8d/fa/12860238755bcfab9af8a93c52ab.val +0 -0
  6. package/.aider.tags.cache.v3/{b7/e6/5be87b62aeaf2bc244ff41c1b61a.val → a7/97/6d37fce350ad2d588f36729db0cd.val} +0 -0
  7. package/.aider.tags.cache.v3/{e3/e6/3501625caf5d5eb171f0d248462e.val → ad/3c/10f2ab1397f6d544e613d2a6acaf.val} +0 -0
  8. package/.aider.tags.cache.v3/cache.db +0 -0
  9. package/.aider.tags.cache.v3/cache.db-shm +0 -0
  10. package/.aider.tags.cache.v3/cache.db-wal +0 -0
  11. package/.aider.tags.cache.v3/dd/5b/0ade824b0841c7c11e9352c5d2ca.val +0 -0
  12. package/README.md +333 -34
  13. package/bundle.js +8 -75
  14. package/dist/common/src/Init.js +6 -1
  15. package/dist/common/src/Node.js +6 -4
  16. package/dist/common/src/NodeSidecar.js +15 -0
  17. package/dist/common/src/PM/PM_WithEslintAndTsc.js +187 -0
  18. package/dist/common/src/PM/__tests__/nodeSidecar.testeranto.js +109 -0
  19. package/dist/common/src/PM/__tests__/pureSidecar.testeranto.js +94 -0
  20. package/dist/common/src/PM/__tests__/webSidecar.testeranto.js +94 -0
  21. package/dist/common/src/PM/base.js +33 -16
  22. package/dist/common/src/PM/main.js +484 -425
  23. package/dist/common/src/PM/node.js +44 -19
  24. package/dist/common/src/PM/nodeSidecar.js +65 -0
  25. package/dist/common/src/PM/pure.js +55 -47
  26. package/dist/common/src/PM/pureSidecar.js +48 -0
  27. package/dist/common/src/PM/sidecar.js +11 -0
  28. package/dist/common/src/PM/web.js +24 -6
  29. package/dist/common/src/PM/webSidecar.js +47 -0
  30. package/dist/common/src/PureSidecar.js +13 -0
  31. package/dist/common/src/SP__Polygon.test.js +10 -0
  32. package/dist/common/src/WebSidecar.js +14 -0
  33. package/dist/common/src/build.js +63 -10
  34. package/dist/common/src/defaultConfig.js +1 -0
  35. package/dist/common/src/esbuildConfigs/consoleDetectorPlugin.js +27 -0
  36. package/dist/common/src/esbuildConfigs/pure.js +15 -1
  37. package/dist/common/src/esbuildConfigs/web.js +10 -1
  38. package/dist/common/src/{SubPackages/react-dom/jsx/index.js → lib/Sidecar.js} +4 -0
  39. package/dist/common/src/lib/abstractBase.js +7 -5
  40. package/dist/common/src/lib/basebuilder.js +1 -3
  41. package/dist/common/src/lib/classBuilder.js +4 -17
  42. package/dist/common/src/lib/core.js +11 -6
  43. package/dist/common/src/lib/index.js +13 -4
  44. package/dist/common/src/lib/pmProxy.js +1 -1
  45. package/dist/common/src/mothership/index.js +16 -0
  46. package/dist/common/src/mothership/test.js +65 -0
  47. package/dist/common/src/utils/queue.js +36 -0
  48. package/dist/common/src/utils.js +34 -5
  49. package/dist/common/testeranto.config.js +77 -39
  50. package/dist/common/tsconfig.common.tsbuildinfo +1 -1
  51. package/dist/module/src/Init.js +6 -1
  52. package/dist/module/src/Node.js +6 -4
  53. package/dist/module/src/NodeSidecar.js +11 -0
  54. package/dist/module/src/PM/PM_WithEslintAndTsc.js +180 -0
  55. package/dist/module/src/PM/__tests__/nodeSidecar.testeranto.js +104 -0
  56. package/dist/module/src/PM/__tests__/pureSidecar.testeranto.js +89 -0
  57. package/dist/module/src/PM/__tests__/webSidecar.testeranto.js +89 -0
  58. package/dist/module/src/PM/base.js +33 -16
  59. package/dist/module/src/PM/main.js +485 -426
  60. package/dist/module/src/PM/node.js +44 -19
  61. package/dist/module/src/PM/nodeSidecar.js +58 -0
  62. package/dist/module/src/PM/pure.js +55 -44
  63. package/dist/module/src/PM/pureSidecar.js +41 -0
  64. package/dist/module/src/PM/sidecar.js +7 -0
  65. package/dist/module/src/PM/web.js +24 -6
  66. package/dist/module/src/PM/webSidecar.js +40 -0
  67. package/dist/module/src/Project.js +154 -75
  68. package/dist/module/src/PureSidecar.js +9 -0
  69. package/dist/module/src/ReportClient.js +132 -97
  70. package/dist/module/src/SP__Polygon.test.js +8 -0
  71. package/dist/module/src/TestReport.js +32 -14
  72. package/dist/module/src/WebSidecar.js +10 -0
  73. package/dist/module/src/build.js +63 -10
  74. package/dist/module/src/defaultConfig.js +1 -0
  75. package/dist/module/src/esbuildConfigs/consoleDetectorPlugin.js +24 -0
  76. package/dist/module/src/esbuildConfigs/pure.js +15 -1
  77. package/dist/module/src/esbuildConfigs/web.js +10 -1
  78. package/dist/module/src/lib/Sidecar.js +2 -0
  79. package/dist/module/src/lib/abstractBase.js +7 -5
  80. package/dist/module/src/lib/basebuilder.js +1 -3
  81. package/dist/module/src/lib/classBuilder.js +4 -17
  82. package/dist/module/src/lib/core.js +11 -6
  83. package/dist/module/src/lib/index.js +12 -4
  84. package/dist/module/src/lib/pmProxy.js +1 -1
  85. package/dist/module/src/mothership/index.js +11 -0
  86. package/dist/module/src/mothership/test.js +60 -0
  87. package/dist/module/src/utils/queue.js +32 -0
  88. package/dist/module/src/utils.js +34 -5
  89. package/dist/module/testeranto.config.js +77 -36
  90. package/dist/module/tsconfig.module.tsbuildinfo +1 -1
  91. package/dist/prebuild/Project.js +3288 -385
  92. package/dist/prebuild/ReportClient.js +0 -24638
  93. package/dist/prebuild/TestReport.js +14 -8
  94. package/dist/prebuild/build.mjs +159 -15
  95. package/dist/prebuild/init-docs.mjs +2 -5
  96. package/dist/prebuild/mothership/index.mjs +17 -0
  97. package/dist/prebuild/run.mjs +693 -412
  98. package/dist/types/src/NodeSidecar.d.ts +6 -0
  99. package/dist/types/src/PM/PM_WithEslintAndTsc.d.ts +23 -0
  100. package/dist/types/src/PM/__tests__/nodeSidecar.testeranto.d.ts +20 -0
  101. package/dist/types/src/PM/__tests__/pureSidecar.testeranto.d.ts +20 -0
  102. package/dist/types/src/PM/__tests__/webSidecar.testeranto.d.ts +20 -0
  103. package/dist/types/src/PM/base.d.ts +6 -5
  104. package/dist/types/src/PM/index.d.ts +5 -3
  105. package/dist/types/src/PM/main.d.ts +23 -26
  106. package/dist/types/src/PM/node.d.ts +8 -6
  107. package/dist/types/src/PM/nodeSidecar.d.ts +13 -0
  108. package/dist/types/src/PM/pure.d.ts +4 -3
  109. package/dist/types/src/PM/pureSidecar.d.ts +11 -0
  110. package/dist/types/src/PM/sidecar.d.ts +8 -0
  111. package/dist/types/src/PM/web.d.ts +18 -8
  112. package/dist/types/src/PM/webSidecar.d.ts +11 -0
  113. package/dist/types/src/PureSidecar.d.ts +8 -0
  114. package/dist/types/src/Types.d.ts +109 -43
  115. package/dist/types/src/WebSidecar.d.ts +8 -0
  116. package/dist/types/src/esbuildConfigs/consoleDetectorPlugin.d.ts +2 -0
  117. package/dist/types/src/lib/Sidecar.d.ts +5 -0
  118. package/dist/types/src/lib/abstractBase.d.ts +6 -6
  119. package/dist/types/src/lib/classBuilder.d.ts +7 -1
  120. package/dist/types/src/lib/core.d.ts +7 -1
  121. package/dist/types/src/lib/index.d.ts +10 -4
  122. package/dist/types/src/lib/types.d.ts +12 -2
  123. package/dist/types/src/mothership/index.d.ts +2 -0
  124. package/dist/types/src/mothership/test.d.ts +21 -0
  125. package/dist/types/src/utils/queue.d.ts +11 -0
  126. package/dist/types/src/utils.d.ts +4 -7
  127. package/dist/types/tsconfig.types.tsbuildinfo +1 -1
  128. package/package.json +19 -105
  129. package/src/Init.ts +6 -5
  130. package/src/Node.ts +7 -4
  131. package/src/NodeSidecar.ts +22 -0
  132. package/src/PM/PM_WithEslintAndTsc.ts +284 -0
  133. package/src/PM/__tests__/nodeSidecar.testeranto.ts +173 -0
  134. package/src/PM/__tests__/pureSidecar.testeranto.ts +157 -0
  135. package/src/PM/__tests__/webSidecar.testeranto.ts +157 -0
  136. package/src/PM/base.ts +38 -17
  137. package/src/PM/index.ts +9 -3
  138. package/src/PM/main.ts +608 -582
  139. package/src/PM/node.ts +67 -23
  140. package/src/PM/nodeSidecar.ts +73 -0
  141. package/src/PM/pure.ts +68 -58
  142. package/src/PM/pureSidecar.ts +56 -0
  143. package/src/PM/sidecar.ts +48 -0
  144. package/src/PM/web.ts +42 -11
  145. package/src/PM/webSidecar.ts +55 -0
  146. package/src/Project.tsx +312 -109
  147. package/src/Pure.ts +0 -2
  148. package/src/PureSidecar.ts +14 -0
  149. package/src/ReportClient.tsx +164 -170
  150. package/src/SP__Polygon.test.ts +13 -0
  151. package/src/TestReport.tsx +77 -6
  152. package/src/Types.ts +227 -122
  153. package/src/WebSidecar.ts +14 -0
  154. package/src/build.ts +101 -14
  155. package/src/defaultConfig.ts +1 -0
  156. package/src/esbuildConfigs/README.md +46 -0
  157. package/src/esbuildConfigs/consoleDetectorPlugin.ts +29 -0
  158. package/src/esbuildConfigs/pure.ts +22 -1
  159. package/src/esbuildConfigs/web.ts +13 -0
  160. package/src/lib/Sidecar.ts +6 -0
  161. package/src/lib/TEST_ADAPTER_RENAME.md +48 -0
  162. package/src/lib/abstractBase.ts +12 -9
  163. package/src/lib/basebuilder.ts +5 -4
  164. package/src/lib/classBuilder.ts +15 -18
  165. package/src/lib/core.ts +24 -11
  166. package/src/lib/index.ts +38 -18
  167. package/src/lib/pmProxy.ts +3 -1
  168. package/src/lib/types.ts +15 -2
  169. package/src/mothership/index.ts +15 -0
  170. package/src/mothership/test.ts +137 -0
  171. package/src/run.ts +0 -1
  172. package/src/utils/queue.ts +41 -0
  173. package/src/utils.ts +41 -15
  174. package/testeranto/bundles/node/mothership/chunk-PG6KUKNP.mjs +44 -0
  175. package/testeranto/bundles/node/mothership/chunk-V2EQEXU2.mjs +1032 -0
  176. package/testeranto/bundles/node/mothership/metafile.json +389 -0
  177. package/testeranto/bundles/node/mothership/src/PM/__tests__/nodeSidecar.testeranto.mjs +1219 -0
  178. package/testeranto/bundles/node/mothership/src/PM/__tests__/pureSidecar.testeranto.mjs +156 -0
  179. package/testeranto/bundles/node/mothership/src/PM/__tests__/sidecar.testeranto.mjs +1199 -0
  180. package/testeranto/bundles/node/mothership/src/PM/__tests__/webSidecar.testeranto.mjs +156 -0
  181. package/testeranto/bundles/node/mothership/src/mothership/test.mjs +24411 -0
  182. package/testeranto/bundles/pure/mothership/metafile.json +8 -0
  183. package/testeranto/bundles/web/mothership/metafile.json +8 -0
  184. package/testeranto/index.html +4 -4
  185. package/testeranto/reports/mothership/config.json +25 -0
  186. package/testeranto/reports/{redux → mothership}/index.html +8 -8
  187. package/testeranto/reports/mothership/src/PM/__tests__/nodeSidecar.testeranto/node/console_log.txt +0 -0
  188. package/testeranto/reports/mothership/src/PM/__tests__/nodeSidecar.testeranto/node/index.html +20 -0
  189. package/testeranto/reports/mothership/src/PM/__tests__/nodeSidecar.testeranto/node/lint_errors.json +1564 -0
  190. package/testeranto/reports/mothership/src/PM/__tests__/nodeSidecar.testeranto/node/log.txt +0 -0
  191. package/testeranto/reports/mothership/src/PM/__tests__/nodeSidecar.testeranto/node/prompt.txt +22 -0
  192. package/testeranto/reports/mothership/src/PM/__tests__/nodeSidecar.testeranto/node/type_errors.txt +35 -0
  193. package/testeranto/reports/mothership/src/PM/__tests__/pureSidecar.testeranto/node/index.html +20 -0
  194. package/testeranto/reports/mothership/src/PM/__tests__/pureSidecar.testeranto/node/lint_errors.json +80 -0
  195. package/testeranto/reports/mothership/src/PM/__tests__/pureSidecar.testeranto/node/prompt.txt +12 -0
  196. package/testeranto/reports/mothership/src/PM/__tests__/pureSidecar.testeranto/node/type_errors.txt +26 -0
  197. package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/bdd_errors.txt +1 -0
  198. package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/console_log.txt +0 -0
  199. package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/index.html +20 -0
  200. package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/lint_errors.json +1564 -0
  201. package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/log.txt +0 -0
  202. package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/prompt.txt +22 -0
  203. package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/tests.json +56 -0
  204. package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/type_errors.txt +29 -0
  205. package/testeranto/reports/mothership/src/PM/__tests__/webSidecar.testeranto/node/index.html +20 -0
  206. package/testeranto/reports/mothership/src/PM/__tests__/webSidecar.testeranto/node/lint_errors.json +80 -0
  207. package/testeranto/reports/mothership/src/PM/__tests__/webSidecar.testeranto/node/prompt.txt +12 -0
  208. package/testeranto/reports/mothership/src/PM/__tests__/webSidecar.testeranto/node/type_errors.txt +26 -0
  209. package/testeranto/reports/mothership/src/mothership/test/node/bdd_errors.txt +1 -0
  210. package/testeranto/reports/mothership/src/mothership/test/node/console_log.txt +4 -0
  211. package/testeranto/reports/mothership/src/mothership/test/node/index.html +20 -0
  212. package/testeranto/reports/mothership/src/mothership/test/node/lint_errors.json +1 -0
  213. package/testeranto/reports/mothership/src/mothership/test/node/log.txt +0 -0
  214. package/testeranto/reports/mothership/src/mothership/test/node/prompt.txt +12 -0
  215. package/testeranto/reports/mothership/src/mothership/test/node/tests.json +24 -0
  216. package/testeranto/reports/mothership/src/mothership/test/node/type_errors.txt +18 -0
  217. package/testeranto/reports/mothership/summary.json +9 -0
  218. package/testeranto.config.ts +82 -44
  219. package/tsc.log +78 -81
  220. package/dist/common/src/SubPackages/react/component/index.js +0 -20
  221. package/dist/common/src/SubPackages/react/component/node.js +0 -10
  222. package/dist/common/src/SubPackages/react/component/pure.js +0 -10
  223. package/dist/common/src/SubPackages/react/component/web.js +0 -10
  224. package/dist/common/src/SubPackages/react/jsx/index.js +0 -64
  225. package/dist/common/src/SubPackages/react/jsx/node.js +0 -10
  226. package/dist/common/src/SubPackages/react/jsx/pure.js +0 -10
  227. package/dist/common/src/SubPackages/react/jsx/web.js +0 -10
  228. package/dist/common/src/SubPackages/react-dom/component/dynamic.js +0 -61
  229. package/dist/common/src/SubPackages/react-dom/component/node.js +0 -10
  230. package/dist/common/src/SubPackages/react-dom/component/pure.js +0 -10
  231. package/dist/common/src/SubPackages/react-dom/component/static.js +0 -26
  232. package/dist/common/src/SubPackages/react-dom/component/web.js +0 -16
  233. package/dist/common/src/SubPackages/react-dom/jsx/dynamic.js +0 -31
  234. package/dist/common/src/SubPackages/react-dom/jsx/node.js +0 -10
  235. package/dist/common/src/SubPackages/react-dom/jsx/pure.js +0 -10
  236. package/dist/common/src/SubPackages/react-dom/jsx/static.js +0 -59
  237. package/dist/common/src/SubPackages/react-dom/jsx/web.js +0 -16
  238. package/dist/common/src/SubPackages/react-test-renderer/MemoExoticComponent/node.js +0 -54
  239. package/dist/common/src/SubPackages/react-test-renderer/component/index.js +0 -15
  240. package/dist/common/src/SubPackages/react-test-renderer/component/interface.js +0 -70
  241. package/dist/common/src/SubPackages/react-test-renderer/component/node.js +0 -8
  242. package/dist/common/src/SubPackages/react-test-renderer/component/pure.js +0 -8
  243. package/dist/common/src/SubPackages/react-test-renderer/component/test/implementation.js +0 -57
  244. package/dist/common/src/SubPackages/react-test-renderer/component/test/node.js +0 -10
  245. package/dist/common/src/SubPackages/react-test-renderer/component/test/pure.js +0 -10
  246. package/dist/common/src/SubPackages/react-test-renderer/component/test/web.js +0 -10
  247. package/dist/common/src/SubPackages/react-test-renderer/component/web.js +0 -8
  248. package/dist/common/src/SubPackages/react-test-renderer/fc/node.js +0 -60
  249. package/dist/common/src/SubPackages/react-test-renderer/fc/web.js +0 -60
  250. package/dist/common/src/SubPackages/react-test-renderer/jsx/index.js +0 -67
  251. package/dist/common/src/SubPackages/react-test-renderer/jsx/node.js +0 -10
  252. package/dist/common/src/SubPackages/react-test-renderer/jsx/pure.js +0 -10
  253. package/dist/common/src/SubPackages/react-test-renderer/jsx/web.js +0 -10
  254. package/dist/common/src/SubPackages/react-test-renderer/jsx-promised/index.js +0 -52
  255. package/dist/common/src/SubPackages/react-test-renderer/jsx-promised/node.js +0 -10
  256. package/dist/common/src/SubPackages/react-test-renderer/jsx-promised/web.js +0 -10
  257. package/dist/common/src/examples/react/component/index.js +0 -33
  258. package/dist/common/src/examples/react/component/test.js +0 -36
  259. package/dist/module/src/SubPackages/react/component/index.js +0 -13
  260. package/dist/module/src/SubPackages/react/component/node.js +0 -5
  261. package/dist/module/src/SubPackages/react/component/pure.js +0 -5
  262. package/dist/module/src/SubPackages/react/component/web.js +0 -5
  263. package/dist/module/src/SubPackages/react/jsx/index.js +0 -58
  264. package/dist/module/src/SubPackages/react/jsx/node.js +0 -5
  265. package/dist/module/src/SubPackages/react/jsx/pure.js +0 -5
  266. package/dist/module/src/SubPackages/react/jsx/web.js +0 -5
  267. package/dist/module/src/SubPackages/react-dom/component/dynamic.js +0 -54
  268. package/dist/module/src/SubPackages/react-dom/component/node.js +0 -5
  269. package/dist/module/src/SubPackages/react-dom/component/pure.js +0 -5
  270. package/dist/module/src/SubPackages/react-dom/component/static.js +0 -22
  271. package/dist/module/src/SubPackages/react-dom/component/web.js +0 -11
  272. package/dist/module/src/SubPackages/react-dom/jsx/dynamic.js +0 -27
  273. package/dist/module/src/SubPackages/react-dom/jsx/node.js +0 -5
  274. package/dist/module/src/SubPackages/react-dom/jsx/pure.js +0 -5
  275. package/dist/module/src/SubPackages/react-dom/jsx/static.js +0 -53
  276. package/dist/module/src/SubPackages/react-dom/jsx/web.js +0 -11
  277. package/dist/module/src/SubPackages/react-test-renderer/MemoExoticComponent/node.js +0 -16
  278. package/dist/module/src/SubPackages/react-test-renderer/component/index.js +0 -14
  279. package/dist/module/src/SubPackages/react-test-renderer/component/interface.js +0 -31
  280. package/dist/module/src/SubPackages/react-test-renderer/component/node.js +0 -3
  281. package/dist/module/src/SubPackages/react-test-renderer/component/pure.js +0 -3
  282. package/dist/module/src/SubPackages/react-test-renderer/component/test/implementation.js +0 -54
  283. package/dist/module/src/SubPackages/react-test-renderer/component/test/node.js +0 -5
  284. package/dist/module/src/SubPackages/react-test-renderer/component/test/pure.js +0 -5
  285. package/dist/module/src/SubPackages/react-test-renderer/component/test/web.js +0 -5
  286. package/dist/module/src/SubPackages/react-test-renderer/component/web.js +0 -3
  287. package/dist/module/src/SubPackages/react-test-renderer/fc/node.js +0 -22
  288. package/dist/module/src/SubPackages/react-test-renderer/fc/web.js +0 -22
  289. package/dist/module/src/SubPackages/react-test-renderer/jsx/index.js +0 -28
  290. package/dist/module/src/SubPackages/react-test-renderer/jsx/node.js +0 -5
  291. package/dist/module/src/SubPackages/react-test-renderer/jsx/pure.js +0 -5
  292. package/dist/module/src/SubPackages/react-test-renderer/jsx/web.js +0 -5
  293. package/dist/module/src/SubPackages/react-test-renderer/jsx-promised/index.js +0 -16
  294. package/dist/module/src/SubPackages/react-test-renderer/jsx-promised/node.js +0 -5
  295. package/dist/module/src/SubPackages/react-test-renderer/jsx-promised/web.js +0 -5
  296. package/dist/module/src/examples/react/component/index.js +0 -26
  297. package/dist/module/src/examples/react/component/test.js +0 -32
  298. package/dist/prebuild/ReportClient.css +0 -11342
  299. package/dist/tsconfig.tsbuildinfo +0 -1
  300. package/dist/types/src/SubPackages/react/component/index.d.ts +0 -4
  301. package/dist/types/src/SubPackages/react/component/node.d.ts +0 -4
  302. package/dist/types/src/SubPackages/react/component/pure.d.ts +0 -4
  303. package/dist/types/src/SubPackages/react/component/web.d.ts +0 -4
  304. package/dist/types/src/SubPackages/react/jsx/index.d.ts +0 -5
  305. package/dist/types/src/SubPackages/react/jsx/node.d.ts +0 -4
  306. package/dist/types/src/SubPackages/react/jsx/pure.d.ts +0 -4
  307. package/dist/types/src/SubPackages/react/jsx/web.d.ts +0 -4
  308. package/dist/types/src/SubPackages/react-dom/component/dynamic.d.ts +0 -20
  309. package/dist/types/src/SubPackages/react-dom/component/node.d.ts +0 -4
  310. package/dist/types/src/SubPackages/react-dom/component/pure.d.ts +0 -4
  311. package/dist/types/src/SubPackages/react-dom/component/static.d.ts +0 -9
  312. package/dist/types/src/SubPackages/react-dom/component/web.d.ts +0 -4
  313. package/dist/types/src/SubPackages/react-dom/jsx/dynamic.d.ts +0 -5
  314. package/dist/types/src/SubPackages/react-dom/jsx/index.d.ts +0 -6
  315. package/dist/types/src/SubPackages/react-dom/jsx/node.d.ts +0 -4
  316. package/dist/types/src/SubPackages/react-dom/jsx/pure.d.ts +0 -4
  317. package/dist/types/src/SubPackages/react-dom/jsx/static.d.ts +0 -5
  318. package/dist/types/src/SubPackages/react-dom/jsx/web.d.ts +0 -5
  319. package/dist/types/src/SubPackages/react-test-renderer/MemoExoticComponent/node.d.ts +0 -6
  320. package/dist/types/src/SubPackages/react-test-renderer/component/index.d.ts +0 -5
  321. package/dist/types/src/SubPackages/react-test-renderer/component/interface.d.ts +0 -3
  322. package/dist/types/src/SubPackages/react-test-renderer/component/node.d.ts +0 -4
  323. package/dist/types/src/SubPackages/react-test-renderer/component/pure.d.ts +0 -4
  324. package/dist/types/src/SubPackages/react-test-renderer/component/test/implementation.d.ts +0 -4
  325. package/dist/types/src/SubPackages/react-test-renderer/component/test/node.d.ts +0 -3
  326. package/dist/types/src/SubPackages/react-test-renderer/component/test/pure.d.ts +0 -4
  327. package/dist/types/src/SubPackages/react-test-renderer/component/test/web.d.ts +0 -3
  328. package/dist/types/src/SubPackages/react-test-renderer/component/web.d.ts +0 -4
  329. package/dist/types/src/SubPackages/react-test-renderer/fc/node.d.ts +0 -8
  330. package/dist/types/src/SubPackages/react-test-renderer/fc/web.d.ts +0 -9
  331. package/dist/types/src/SubPackages/react-test-renderer/jsx/index.d.ts +0 -11
  332. package/dist/types/src/SubPackages/react-test-renderer/jsx/node.d.ts +0 -4
  333. package/dist/types/src/SubPackages/react-test-renderer/jsx/pure.d.ts +0 -4
  334. package/dist/types/src/SubPackages/react-test-renderer/jsx/web.d.ts +0 -4
  335. package/dist/types/src/SubPackages/react-test-renderer/jsx-promised/index.d.ts +0 -15
  336. package/dist/types/src/SubPackages/react-test-renderer/jsx-promised/node.d.ts +0 -5
  337. package/dist/types/src/SubPackages/react-test-renderer/jsx-promised/web.d.ts +0 -5
  338. package/dist/types/src/examples/react/component/index.d.ts +0 -13
  339. package/dist/types/src/examples/react/component/test.d.ts +0 -17
  340. package/src/SubPackages/react/component/index.ts +0 -28
  341. package/src/SubPackages/react/component/node.ts +0 -17
  342. package/src/SubPackages/react/component/pure.ts +0 -17
  343. package/src/SubPackages/react/component/web.ts +0 -17
  344. package/src/SubPackages/react/jsx/index.ts +0 -75
  345. package/src/SubPackages/react/jsx/node.ts +0 -23
  346. package/src/SubPackages/react/jsx/pure.ts +0 -23
  347. package/src/SubPackages/react/jsx/web.ts +0 -24
  348. package/src/SubPackages/react-dom/component/dynamic.ts +0 -107
  349. package/src/SubPackages/react-dom/component/node.ts +0 -17
  350. package/src/SubPackages/react-dom/component/pure.ts +0 -17
  351. package/src/SubPackages/react-dom/component/static.ts +0 -41
  352. package/src/SubPackages/react-dom/component/web.ts +0 -32
  353. package/src/SubPackages/react-dom/jsx/dynamic.ts +0 -46
  354. package/src/SubPackages/react-dom/jsx/index.ts +0 -6
  355. package/src/SubPackages/react-dom/jsx/node.ts +0 -18
  356. package/src/SubPackages/react-dom/jsx/pure.ts +0 -18
  357. package/src/SubPackages/react-dom/jsx/static.ts +0 -87
  358. package/src/SubPackages/react-dom/jsx/web.ts +0 -26
  359. package/src/SubPackages/react-test-renderer/MemoExoticComponent/node.ts +0 -54
  360. package/src/SubPackages/react-test-renderer/component/index.ts +0 -32
  361. package/src/SubPackages/react-test-renderer/component/interface.ts +0 -43
  362. package/src/SubPackages/react-test-renderer/component/node.ts +0 -18
  363. package/src/SubPackages/react-test-renderer/component/pure.ts +0 -18
  364. package/src/SubPackages/react-test-renderer/component/test/implementation.ts +0 -63
  365. package/src/SubPackages/react-test-renderer/component/test/node.ts +0 -14
  366. package/src/SubPackages/react-test-renderer/component/test/pure.ts +0 -14
  367. package/src/SubPackages/react-test-renderer/component/test/web.ts +0 -14
  368. package/src/SubPackages/react-test-renderer/component/web.ts +0 -18
  369. package/src/SubPackages/react-test-renderer/fc/node.ts +0 -83
  370. package/src/SubPackages/react-test-renderer/fc/web.ts +0 -80
  371. package/src/SubPackages/react-test-renderer/jsx/index.ts +0 -61
  372. package/src/SubPackages/react-test-renderer/jsx/node.ts +0 -31
  373. package/src/SubPackages/react-test-renderer/jsx/pure.ts +0 -31
  374. package/src/SubPackages/react-test-renderer/jsx/web.ts +0 -32
  375. package/src/SubPackages/react-test-renderer/jsx-promised/index.ts +0 -73
  376. package/src/SubPackages/react-test-renderer/jsx-promised/node.ts +0 -36
  377. package/src/SubPackages/react-test-renderer/jsx-promised/web.ts +0 -36
  378. package/src/examples/react/component/index.tsx +0 -35
  379. package/src/examples/react/component/test.ts +0 -83
  380. package/testeranto/bundles/node/redux/metafile.json +0 -559
  381. package/testeranto/bundles/pure/redux/metafile.json +0 -554
  382. package/testeranto/bundles/web/redux/metafile.json +0 -504
  383. package/testeranto/bundles/web/redux/test/web.html +0 -19
  384. package/testeranto/reports/redux/config.json +0 -38
  385. package/testeranto/reports/redux/summary.json +0 -20
  386. /package/dist/{module/src/SubPackages/react-dom/jsx/index.js → types/src/SP__Polygon.test.d.ts} +0 -0
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { Ibdd_in, IPartialInterface } from "../../../Types";
3
- export type I = Ibdd_in<typeof React.Component, React.CElement<any, any>, React.CElement<any, any>, React.CElement<any, any>, unknown, () => (s: React.CElement<any, any>) => any, unknown>;
4
- export declare const reactInterfacer: (testInput: I["iinput"]) => IPartialInterface<I>;
@@ -1,4 +0,0 @@
1
- import { ITestImplementation, ITestSpecification, OT } from "../../../Types";
2
- import { I } from "./index.js";
3
- declare const _default: <O extends OT, M>(testImplementations: ITestImplementation<I, O, M>, testSpecifications: ITestSpecification<I, O>, testInput: I["iinput"]) => Promise<import("../../../lib/core.js").default<I, O, M>>;
4
- export default _default;
@@ -1,4 +0,0 @@
1
- import { ITestImplementation, ITestSpecification, OT } from "../../../Types";
2
- import { I } from "./index.js";
3
- declare const _default: <O extends OT, M>(testImplementations: ITestImplementation<I, O, M>, testSpecifications: ITestSpecification<I, O>, testInput: I["iinput"]) => Promise<import("../../../lib/core.js").default<I, O, M>>;
4
- export default _default;
@@ -1,4 +0,0 @@
1
- import { ITestImplementation, ITestSpecification, OT } from "../../../Types";
2
- import { I } from "./index.js";
3
- declare const _default: <O extends OT, M>(testImplementations: ITestImplementation<I, O, M>, testSpecifications: ITestSpecification<I, O>, testInput: I["iinput"]) => Promise<import("../../../lib/core.js").default<I, O, M>>;
4
- export default _default;
@@ -1,5 +0,0 @@
1
- import { CElement } from "react";
2
- import React from "react";
3
- import { Ibdd_in, IPartialInterface } from "../../../Types";
4
- export type I = Ibdd_in<() => JSX.Element, CElement<any, any>, CElement<any, any>, CElement<any, any>, any, () => (s: React.CElement<any, any>) => any, any>;
5
- export declare const testInterface: IPartialInterface<any>;
@@ -1,4 +0,0 @@
1
- import { IPartialInterface, ITestImplementation, ITestSpecification, OT } from "../../../Types";
2
- import { I } from "./index.js";
3
- declare const _default: <O extends OT, M = {}>(testImplementations: ITestImplementation<I, O, M>, testSpecifications: ITestSpecification<I, O>, testInput: I["iinput"], testInterface?: IPartialInterface<I>) => Promise<import("../../../lib/core.js").default<I, O, M>>;
4
- export default _default;
@@ -1,4 +0,0 @@
1
- import { IPartialInterface, ITestImplementation, ITestSpecification, OT } from "../../../Types";
2
- import { I } from "./index.js";
3
- declare const _default: <O extends OT, M = {}>(testImplementations: ITestImplementation<I, O, M>, testSpecifications: ITestSpecification<I, O>, testInput: I["iinput"], testInterface?: IPartialInterface<I>) => Promise<import("../../../lib/core.js").default<I, O, M>>;
4
- export default _default;
@@ -1,4 +0,0 @@
1
- import { IPartialInterface, ITestImplementation, ITestSpecification, OT } from "../../../Types";
2
- import { I } from "./index.js";
3
- declare const _default: <O extends OT, M = {}>(testImplementations: ITestImplementation<I, O, M>, testSpecifications: ITestSpecification<I, O>, testInput: I["iinput"], testInterface?: IPartialInterface<I>) => Promise<import("../../../lib/core.js").default<I, O, M>>;
4
- export default _default;
@@ -1,20 +0,0 @@
1
- import React from "react";
2
- import ReactDom from "react-dom/client";
3
- import { Ibdd_in, IPartialInterface } from "../../../Types";
4
- export type IInput = typeof React.Component;
5
- export type ISelection = {
6
- htmlElement: HTMLElement;
7
- reactElement: any;
8
- domRoot: ReactDom.Root;
9
- };
10
- export type IStore = {
11
- htmlElement: HTMLElement;
12
- reactElement: any;
13
- domRoot: ReactDom.Root;
14
- };
15
- export type ISubject = {
16
- htmlElement: HTMLElement;
17
- domRoot: ReactDom.Root;
18
- };
19
- export type I = Ibdd_in<IInput, ISubject, ISelection, IStore, (s: IStore) => IStore, (s: IStore) => IStore, (s: IStore) => IStore>;
20
- export declare const testInterfacer: (testInput: IInput) => IPartialInterface<I>;
@@ -1,4 +0,0 @@
1
- import { ITestImplementation, ITestSpecification, OT } from "../../../Types";
2
- import { I } from "./static.js";
3
- declare const _default: <O extends OT, M>(testImplementations: ITestImplementation<I, O, M>, testSpecifications: ITestSpecification<I, O>, testInput: I["iinput"]) => Promise<import("../../../lib/core.js").default<I, O, M>>;
4
- export default _default;
@@ -1,4 +0,0 @@
1
- import { ITestImplementation, ITestSpecification, OT } from "../../../Types";
2
- import { I } from "./static.js";
3
- declare const _default: <O extends OT, M>(testImplementations: ITestImplementation<I, O, M>, testSpecifications: ITestSpecification<I, O>, testInput: I["iinput"]) => Promise<import("../../../lib/core.js").default<I, O, M>>;
4
- export default _default;
@@ -1,9 +0,0 @@
1
- import React, { ReactNode } from "react";
2
- import { Ibdd_in } from "../../../Types";
3
- type IInput = typeof React.Component;
4
- export type ISelection = ReactNode;
5
- export type IStore = ReactNode;
6
- export type ISubject = ReactNode;
7
- export type I = Ibdd_in<IInput, ISubject, IStore, ISelection, unknown, (s: IStore) => IStore, unknown>;
8
- export declare const testInterfacer: (testInput: any) => any;
9
- export {};
@@ -1,4 +0,0 @@
1
- import { IPartialWebInterface, ITestImplementation, ITestSpecification, OT } from "../../../Types";
2
- import { I, IInput } from "./dynamic.js";
3
- declare const _default: <O extends OT, M>(testInput: IInput, testSpecifications: ITestSpecification<I, O>, testImplementations: ITestImplementation<I, O, M>, testInterface: IPartialWebInterface<I>) => Promise<import("../../../lib/core.js").default<I, O, M>>;
4
- export default _default;
@@ -1,5 +0,0 @@
1
- import { Ibdd_in, IPartialInterface } from "../../../Types";
2
- import { IInput, ISelection, IStore, IWhenShape, IThenShape } from ".";
3
- export type ISubject = HTMLElement;
4
- export type I = Ibdd_in<IInput, ISubject, ISelection, IStore, unknown, IWhenShape, IThenShape>;
5
- export declare const testInterfacer: (testInput: I["iinput"]) => IPartialInterface<I>;
@@ -1,6 +0,0 @@
1
- export type IInput = (props?: any) => JSX.Element;
2
- export type IState = unknown;
3
- export type ISelection = HTMLElement;
4
- export type IStore = HTMLElement;
5
- export type IWhenShape = any;
6
- export type IThenShape = any;
@@ -1,4 +0,0 @@
1
- import { ITestImplementation, ITestSpecification, OT } from "../../../Types";
2
- import { I } from "./static.js";
3
- declare const _default: <O extends OT, M>(testImplementations: ITestImplementation<I, O, M>, testSpecifications: ITestSpecification<I, O>, testInput: I["iinput"]) => Promise<import("../../../lib/core.js").default<I, O, M>>;
4
- export default _default;
@@ -1,4 +0,0 @@
1
- import { ITestImplementation, ITestSpecification, OT } from "../../../Types";
2
- import { I } from "./static.js";
3
- declare const _default: <O extends OT, M>(testImplementations: ITestImplementation<I, O, M>, testSpecifications: ITestSpecification<I, O>, testInput: I["iinput"]) => Promise<import("../../../lib/core.js").default<I, O, M>>;
4
- export default _default;
@@ -1,5 +0,0 @@
1
- import { Ibdd_in, IPartialInterface } from "../../../Types";
2
- import { IInput, ISelection, IStore } from ".";
3
- import { IPM } from "../../../lib/types";
4
- export type I = Ibdd_in<IInput, HTMLElement, ISelection, IStore, unknown, (s: HTMLElement, p: IPM) => any, (s: HTMLElement, p: IPM) => any>;
5
- export declare const testInterface: IPartialInterface<I>;
@@ -1,5 +0,0 @@
1
- import { ITestImplementation, ITestSpecification, OT } from "../../../Types";
2
- import type { IInput } from "./index";
3
- import { I } from "./dynamic.js";
4
- declare const _default: <O extends OT, M>(testImplementations: ITestImplementation<I, O, M>, testSpecifications: ITestSpecification<I, O>, testInput: IInput) => Promise<import("../../../lib/core.js").default<I, O, M>>;
5
- export default _default;
@@ -1,6 +0,0 @@
1
- import React from "react";
2
- import renderer from "react-test-renderer";
3
- import { Ibdd_in, Ibdd_out, ITestImplementation, ITestSpecification } from "../../../Types";
4
- type IInput = React.MemoExoticComponent<() => JSX.Element>;
5
- declare const _default: <I extends Ibdd_in<IInput, renderer.ReactTestRenderer, renderer.ReactTestRenderer, renderer.ReactTestRenderer, unknown, unknown, unknown>, O extends Ibdd_out<Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>>>(testImplementations: ITestImplementation<I, O>, testSpecifications: ITestSpecification<I, O>, testInput: IInput) => Promise<import("../../../lib/core").default<I, O, unknown>>;
6
- export default _default;
@@ -1,5 +0,0 @@
1
- import React from "react";
2
- import { ReactTestRenderer } from "react-test-renderer";
3
- import type { Ibdd_in } from "../../../Types";
4
- export type IInput<P, S> = typeof React.Component<P, S>;
5
- export type I = Ibdd_in<IInput<any, any>, ReactTestRenderer, ReactTestRenderer, ReactTestRenderer, unknown, unknown, (r: ReactTestRenderer) => ReactTestRenderer>;
@@ -1,3 +0,0 @@
1
- import { IPartialInterface } from "../../../Types";
2
- import { I } from ".";
3
- export declare const testInterface: IPartialInterface<I>;
@@ -1,4 +0,0 @@
1
- import { ITestImplementation, ITestSpecification, OT } from "../../../Types.js";
2
- import { IInput, I } from "./index.js";
3
- declare const _default: <O extends OT, IProps, IState, M = {}>(testImplementations: ITestImplementation<I, O, M>, testSpecifications: ITestSpecification<I, O>, testInput: IInput<IProps, IState>) => Promise<import("../../../lib/core.js").default<I, O, M>>;
4
- export default _default;
@@ -1,4 +0,0 @@
1
- import { ITestImplementation, ITestSpecification, OT } from "../../../Types.js";
2
- import { IInput, I } from "./index.js";
3
- declare const _default: <O extends OT, M = {}>(testImplementations: ITestImplementation<I, O, M>, testSpecifications: ITestSpecification<I, O>, testInput: IInput<any, any>) => Promise<import("../../../lib/core.js").default<I, O, M>>;
4
- export default _default;
@@ -1,4 +0,0 @@
1
- import { O } from "../../../../examples/react/component/test";
2
- import { I } from "..";
3
- import { ITestImplementation } from "../../../../Types";
4
- export declare const testImplementation: ITestImplementation<I, O>;
@@ -1,3 +0,0 @@
1
- import { O } from "../../../../examples/react/component/test";
2
- declare const _default: Promise<import("../../../../lib/core").default<import("..").I, O, {}>>;
3
- export default _default;
@@ -1,4 +0,0 @@
1
- import { O } from "../../../../examples/react/component/test";
2
- import { IProps } from "../../../../examples/react/component";
3
- declare const _default: Promise<import("../../../../lib/core").default<import("..").I, O, IProps>>;
4
- export default _default;
@@ -1,3 +0,0 @@
1
- import { O } from "../../../../examples/react/component/test";
2
- declare const _default: Promise<import("../../../../lib/core").default<import("..").I, O, {}>>;
3
- export default _default;
@@ -1,4 +0,0 @@
1
- import { ITestImplementation, ITestSpecification, OT } from "../../../Types.js";
2
- import { IInput, I } from "./index.js";
3
- declare const _default: <O extends OT, IProps, IState, M = {}>(testImplementations: ITestImplementation<I, O, M>, testSpecifications: ITestSpecification<I, O>, testInput: IInput<any, any>) => Promise<import("../../../lib/core.js").default<I, O, M>>;
4
- export default _default;
@@ -1,8 +0,0 @@
1
- import React from "react";
2
- import { ITestSpecification, ITestImplementation, Ibdd_in, Ibdd_out } from "../../../Types";
3
- export type IInput = React.FC;
4
- export type IWhenShape = unknown;
5
- export type IThenShape = unknown;
6
- export type ISpec<I extends Ibdd_in<unknown, unknown, unknown, unknown, unknown, unknown, unknown>, O extends Ibdd_out<Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>>> = ITestSpecification<I, O>;
7
- declare const _default: <I extends Ibdd_in<unknown, unknown, unknown, unknown, unknown, unknown, unknown>, O extends Ibdd_out<Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>>>(testImplementations: ITestImplementation<I, O>, testSpecifications: ISpec<I, O>, testInput: IInput) => Promise<import("../../../lib/core.js").default<I, O, unknown>>;
8
- export default _default;
@@ -1,9 +0,0 @@
1
- import React from "react";
2
- import renderer from "react-test-renderer";
3
- import { ITestSpecification, ITestImplementation, Ibdd_in, Ibdd_out } from "../../../Types";
4
- export type IInput = React.FC;
5
- export type IWhenShape = unknown;
6
- export type IThenShape = unknown;
7
- export type ISpec<I extends Ibdd_in<unknown, unknown, renderer.ReactTestRenderer, unknown, unknown, unknown, unknown>, O extends Ibdd_out<Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>>> = ITestSpecification<I, O>;
8
- declare const _default: <I extends Ibdd_in<unknown, unknown, renderer.ReactTestRenderer, unknown, unknown, unknown, unknown>, O extends Ibdd_out<Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>>>(testImplementations: ITestImplementation<I, O>, testSpecifications: ISpec<I, O>, testInput: IInput) => Promise<import("../../../lib/core").default<I, O, unknown>>;
9
- export default _default;
@@ -1,11 +0,0 @@
1
- import renderer, { ReactTestRenderer } from "react-test-renderer";
2
- import { Ibdd_in, IPartialInterface } from "../../../Types";
3
- export type IWhenShape = any;
4
- export type IThenShape = void;
5
- export type InitialState = unknown;
6
- export type IInput = (props?: any) => JSX.Element;
7
- export type ISelection = renderer.ReactTestRenderer;
8
- export type IStore = renderer.ReactTestRenderer;
9
- export type ISubject = renderer.ReactTestRenderer;
10
- export type I = Ibdd_in<(props?: any) => JSX.Element, ReactTestRenderer, ReactTestRenderer, ReactTestRenderer, unknown, IWhenShape, IThenShape>;
11
- export declare const testInterface: IPartialInterface<I>;
@@ -1,4 +0,0 @@
1
- import { Ibdd_out, ITestImplementation, ITestSpecification } from "../../../Types.js";
2
- import { I, IInput } from "./index.js";
3
- declare const _default: <II extends I, O extends Ibdd_out<Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>>>(testImplementations: ITestImplementation<II, O>, testSpecifications: ITestSpecification<II, O>, testInput: IInput, testInterface2?: Partial<import("../../../Types.js").ITestInterface<I>>) => Promise<import("../../../lib/core.js").default<I, O, unknown>>;
4
- export default _default;
@@ -1,4 +0,0 @@
1
- import { Ibdd_out, ITestImplementation, ITestSpecification } from "../../../Types.js";
2
- import { I, IInput } from "./index.js";
3
- declare const _default: <II extends I, O extends Ibdd_out<Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>>>(testImplementations: ITestImplementation<II, O>, testSpecifications: ITestSpecification<II, O>, testInput: IInput, testInterface2?: Partial<import("../../../Types.js").ITestInterface<I>>) => Promise<import("../../../lib/core.js").default<I, O, unknown>>;
4
- export default _default;
@@ -1,4 +0,0 @@
1
- import { Ibdd_out, ITestImplementation, ITestSpecification } from "../../../Types.js";
2
- import { I, IInput } from "./index.js";
3
- declare const _default: <II extends I, O extends Ibdd_out<Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>>>(testImplementations: ITestImplementation<II, O>, testSpecifications: ITestSpecification<II, O>, testInput: IInput, testInterface2?: Partial<import("../../../Types.js").ITestInterface<I>>) => Promise<import("../../../lib/core.js").default<I, O, unknown>>;
4
- export default _default;
@@ -1,15 +0,0 @@
1
- import renderer from "react-test-renderer";
2
- import { Ibdd_in, Ibdd_out, ITestImplementation, ITestSpecification } from "../../../Types";
3
- export type IWhenShape = any;
4
- export type IThenShape = any;
5
- export type InitialState = unknown;
6
- export type IInput = Promise<JSX.Element>;
7
- export type ISelection = renderer.ReactTestRenderer;
8
- export type IStore = renderer.ReactTestRenderer;
9
- export type ISubject = renderer.ReactTestRenderer;
10
- export type ITestImpl<I extends Ibdd_in<renderer.ReactTestRenderer, renderer.ReactTestRenderer, renderer.ReactTestRenderer, renderer.ReactTestRenderer, unknown, unknown, unknown>, O extends Ibdd_out<Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>>> = ITestImplementation<I, O>;
11
- export type ITestSpec<I extends Ibdd_in<renderer.ReactTestRenderer, renderer.ReactTestRenderer, renderer.ReactTestRenderer, renderer.ReactTestRenderer, unknown, unknown, unknown>, O extends Ibdd_out<Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>>> = ITestSpecification<I, O>;
12
- export declare const testInterface: {
13
- beforeEach: (CComponent: any) => Promise<unknown>;
14
- andWhen: (renderer: renderer.ReactTestRenderer, whenCB: () => (any: any) => any) => Promise<renderer.ReactTestRenderer>;
15
- };
@@ -1,5 +0,0 @@
1
- import { Ibdd_in, Ibdd_out } from "../../../Types";
2
- import { ITestImpl, ITestSpec } from "../../react/jsx";
3
- import { IInput } from ".";
4
- declare const _default: <I extends Ibdd_in<unknown, unknown, unknown, unknown, unknown, unknown, unknown>, O extends Ibdd_out<Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>>>(testImplementations: ITestImpl<I, O>, testSpecifications: ITestSpec<I, O>, testInput: IInput) => Promise<import("../../../lib/core").default<I, O, unknown>>;
5
- export default _default;
@@ -1,5 +0,0 @@
1
- import { Ibdd_in, Ibdd_out } from "../../../Types";
2
- import { ITestImpl, ITestSpec } from "../../react/jsx";
3
- import { IInput } from "./index";
4
- declare const _default: <I extends Ibdd_in<unknown, unknown, unknown, unknown, unknown, unknown, unknown>, O extends Ibdd_out<Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>>>(testImplementations: ITestImpl<I, O>, testSpecifications: ITestSpec<I, O>, testInput: IInput) => Promise<import("../../../lib/core").default<I, O, unknown>>;
5
- export default _default;
@@ -1,13 +0,0 @@
1
- import React from "react";
2
- export type IProps = {
3
- foo: string;
4
- children: [];
5
- };
6
- export type IState = {
7
- count: number;
8
- };
9
- export declare class ClassicalComponent extends React.Component<IProps, IState> {
10
- constructor(props: any);
11
- render(): JSX.Element;
12
- }
13
- export default ClassicalComponent;
@@ -1,17 +0,0 @@
1
- import { ITestSpecification, IT } from "../../../Types";
2
- import { Ibdd_out } from "../../../Types";
3
- import { IProps, IState } from ".";
4
- export type O = Ibdd_out<{
5
- Default: [string];
6
- }, {
7
- AnEmptyState: [];
8
- }, {
9
- IClickTheButton: [];
10
- IClickTheHeader: [];
11
- }, {
12
- ThePropsIs: [IProps];
13
- TheStatusIs: [IState];
14
- }, {
15
- AnEmptyState: any;
16
- }>;
17
- export declare const specification: ITestSpecification<IT, O>;
@@ -1,28 +0,0 @@
1
- import React from "react";
2
-
3
- import { Ibdd_in, IPartialInterface } from "../../../Types";
4
-
5
- export type I = Ibdd_in<
6
- typeof React.Component,
7
- React.CElement<any, any>,
8
- React.CElement<any, any>,
9
- React.CElement<any, any>,
10
- unknown,
11
- () => (s: React.CElement<any, any>) => any,
12
- unknown
13
- >;
14
-
15
- export const reactInterfacer = (
16
- testInput: I["iinput"]
17
- ): IPartialInterface<I> => {
18
- return {
19
- beforeEach: async () => {
20
- return new Promise((resolve, rej) => {
21
- resolve(React.createElement(testInput, {}, []));
22
- });
23
- },
24
- andWhen: function (s, whenCB) {
25
- return whenCB()(s);
26
- },
27
- };
28
- };
@@ -1,17 +0,0 @@
1
- import Testeranto from "../../../Node.js";
2
- import { ITestImplementation, ITestSpecification, OT } from "../../../Types";
3
-
4
- import { reactInterfacer, I } from "./index.js";
5
-
6
- export default <O extends OT, M>(
7
- testImplementations: ITestImplementation<I, O, M>,
8
- testSpecifications: ITestSpecification<I, O>,
9
- testInput: I["iinput"]
10
- ) => {
11
- return Testeranto<I, O, M>(
12
- testInput,
13
- testSpecifications,
14
- testImplementations,
15
- reactInterfacer(testInput)
16
- );
17
- };
@@ -1,17 +0,0 @@
1
- import Testeranto from "../../../Pure.js";
2
- import { ITestImplementation, ITestSpecification, OT } from "../../../Types";
3
-
4
- import { reactInterfacer, I } from "./index.js";
5
-
6
- export default <O extends OT, M>(
7
- testImplementations: ITestImplementation<I, O, M>,
8
- testSpecifications: ITestSpecification<I, O>,
9
- testInput: I["iinput"]
10
- ) => {
11
- return Testeranto<I, O, M>(
12
- testInput,
13
- testSpecifications,
14
- testImplementations,
15
- reactInterfacer(testInput)
16
- );
17
- };
@@ -1,17 +0,0 @@
1
- import Testeranto from "../../../Web.js";
2
- import { ITestImplementation, ITestSpecification, OT } from "../../../Types";
3
-
4
- import { reactInterfacer, I } from "./index.js";
5
-
6
- export default <O extends OT, M>(
7
- testImplementations: ITestImplementation<I, O, M>,
8
- testSpecifications: ITestSpecification<I, O>,
9
- testInput: I["iinput"]
10
- ) => {
11
- return Testeranto<I, O, M>(
12
- testInput,
13
- testSpecifications,
14
- testImplementations,
15
- reactInterfacer(testInput)
16
- );
17
- };
@@ -1,75 +0,0 @@
1
- import { CElement } from "react";
2
- import React from "react";
3
-
4
- import { Ibdd_in, IPartialInterface } from "../../../Types";
5
-
6
- export type I = Ibdd_in<
7
- () => JSX.Element,
8
- CElement<any, any>,
9
- CElement<any, any>,
10
- CElement<any, any>,
11
- any,
12
- () => (s: React.CElement<any, any>) => any,
13
- any
14
- >;
15
-
16
- export const testInterface: IPartialInterface<any> = {
17
- andWhen: async (s, whenCB) => {
18
- await whenCB(s());
19
- return new Promise((resolve, rej) => {
20
- resolve(React.createElement(s));
21
- });
22
- },
23
- butThen: async (subject, thenCB) => {
24
- await thenCB(subject());
25
- return new Promise((resolve, rej) => {
26
- resolve(React.createElement(subject));
27
- });
28
- },
29
- };
30
-
31
- // export type IWhenShape = any;
32
- // export type IThenShape = any;
33
- // export type InitialState = unknown;
34
- // export type IInput = () => JSX.Element;
35
- // export type ISelection = CElement<any, any>;
36
- // export type IStore = CElement<any, any>;
37
- // export type ISubject = CElement<any, any>;
38
-
39
- // export type ITestImpl<
40
- // I extends Ibdd_in<
41
- // unknown,
42
- // unknown,
43
- // unknown,
44
- // unknown,
45
- // unknown,
46
- // unknown,
47
- // unknown
48
- // >,
49
- // O extends Ibdd_out<
50
- // Record<string, any>,
51
- // Record<string, any>,
52
- // Record<string, any>,
53
- // Record<string, any>,
54
- // Record<string, any>
55
- // >
56
- // > = ITestImplementation<I, O>;
57
-
58
- // export type ITestSpec<
59
- // I extends Ibdd_in<
60
- // unknown,
61
- // unknown,
62
- // unknown,
63
- // unknown,
64
- // unknown,
65
- // unknown,
66
- // unknown
67
- // >,
68
- // O extends Ibdd_out<
69
- // Record<string, any>,
70
- // Record<string, any>,
71
- // Record<string, any>,
72
- // Record<string, any>,
73
- // Record<string, any>
74
- // >
75
- // > = ITestSpecification<I, O>;
@@ -1,23 +0,0 @@
1
- import Testeranto from "../../../Node.js";
2
- import {
3
- IPartialInterface,
4
- ITestImplementation,
5
- ITestSpecification,
6
- OT,
7
- } from "../../../Types";
8
-
9
- import { testInterface as baseInterface, I } from "./index.js";
10
-
11
- export default <O extends OT, M = {}>(
12
- testImplementations: ITestImplementation<I, O, M>,
13
- testSpecifications: ITestSpecification<I, O>,
14
- testInput: I["iinput"],
15
- testInterface: IPartialInterface<I> = baseInterface
16
- ) => {
17
- return Testeranto<I, O, M>(
18
- testInput,
19
- testSpecifications,
20
- testImplementations,
21
- testInterface
22
- );
23
- };
@@ -1,23 +0,0 @@
1
- import Testeranto from "../../../Pure.js";
2
- import {
3
- IPartialInterface,
4
- ITestImplementation,
5
- ITestSpecification,
6
- OT,
7
- } from "../../../Types";
8
-
9
- import { testInterface as baseInterface, I } from "./index.js";
10
-
11
- export default <O extends OT, M = {}>(
12
- testImplementations: ITestImplementation<I, O, M>,
13
- testSpecifications: ITestSpecification<I, O>,
14
- testInput: I["iinput"],
15
- testInterface: IPartialInterface<I> = baseInterface
16
- ) => {
17
- return Testeranto<I, O, M>(
18
- testInput,
19
- testSpecifications,
20
- testImplementations,
21
- testInterface
22
- );
23
- };
@@ -1,24 +0,0 @@
1
- import Testeranto from "../../../Web.js";
2
-
3
- import {
4
- IPartialInterface,
5
- ITestImplementation,
6
- ITestSpecification,
7
- OT,
8
- } from "../../../Types";
9
-
10
- import { testInterface as baseInterface, I } from "./index.js";
11
-
12
- export default <O extends OT, M = {}>(
13
- testImplementations: ITestImplementation<I, O, M>,
14
- testSpecifications: ITestSpecification<I, O>,
15
- testInput: I["iinput"],
16
- testInterface: IPartialInterface<I> = baseInterface
17
- ) => {
18
- return Testeranto<I, O, M>(
19
- testInput,
20
- testSpecifications,
21
- testImplementations,
22
- testInterface
23
- );
24
- };