testeranto 0.114.1 → 0.125.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.
- package/.aider.chat.history.md +97001 -0
- package/.aider.conf.yml +5 -0
- package/.aider.input.history +9 -0
- package/.aider.tags.cache.v3/b7/e6/5be87b62aeaf2bc244ff41c1b61a.val +0 -0
- package/.aider.tags.cache.v3/cache.db +0 -0
- package/.aider.tags.cache.v3/e3/e6/3501625caf5d5eb171f0d248462e.val +0 -0
- package/.aider.tags.cache.v3/ec/c0/161c249c35be853cc40cf11f9267.val +0 -0
- package/README.md +15 -1
- package/bundle.js +1 -1
- package/dist/common/src/Init.js +31 -0
- package/dist/common/src/Node.js +49 -0
- package/dist/common/src/PM/base.js +230 -0
- package/dist/common/src/PM/main.js +1026 -0
- package/dist/common/src/PM/node.js +161 -0
- package/dist/common/{PM/node.js → src/PM/pure.js} +27 -18
- package/dist/common/{PM → src/PM}/web.js +14 -47
- package/dist/common/{Node.js → src/Pure.js} +11 -9
- package/dist/common/{SubPackages/react/component/web.js → src/SubPackages/react/component/index.js} +5 -4
- package/dist/common/src/SubPackages/react/component/node.js +10 -0
- package/dist/common/src/SubPackages/react/component/pure.js +10 -0
- package/dist/common/{SubPackages/react/jsx → src/SubPackages/react/component}/web.js +2 -2
- package/dist/common/src/SubPackages/react/jsx/index.js +64 -0
- package/dist/common/src/SubPackages/react/jsx/pure.js +10 -0
- package/dist/common/src/SubPackages/react/jsx/web.js +10 -0
- package/dist/common/{SubPackages/react-dom/component/web.js → src/SubPackages/react-dom/component/dynamic.js} +8 -14
- package/dist/common/src/SubPackages/react-dom/component/node.js +10 -0
- package/dist/common/src/SubPackages/react-dom/component/pure.js +10 -0
- package/dist/common/src/SubPackages/react-dom/component/static.js +26 -0
- package/dist/common/src/SubPackages/react-dom/component/web.js +16 -0
- package/dist/common/src/SubPackages/react-dom/jsx/dynamic.js +31 -0
- package/dist/common/src/SubPackages/react-dom/jsx/node.js +10 -0
- package/dist/common/src/SubPackages/react-dom/jsx/pure.js +10 -0
- package/dist/common/src/SubPackages/react-dom/jsx/static.js +59 -0
- package/dist/common/src/SubPackages/react-dom/jsx/web.js +16 -0
- package/dist/common/src/SubPackages/react-test-renderer/component/index.js +15 -0
- package/dist/common/src/SubPackages/react-test-renderer/component/pure.js +8 -0
- package/dist/common/src/SubPackages/react-test-renderer/component/test/implementation.js +57 -0
- package/dist/common/src/SubPackages/react-test-renderer/component/test/node.js +10 -0
- package/dist/common/src/SubPackages/react-test-renderer/component/test/pure.js +10 -0
- package/dist/common/src/SubPackages/react-test-renderer/component/test/web.js +10 -0
- package/dist/common/src/SubPackages/react-test-renderer/jsx/pure.js +10 -0
- package/dist/common/{Web.js → src/Web.js} +1 -4
- package/dist/common/src/build.js +223 -0
- package/dist/common/{defaultConfig.js → src/defaultConfig.js} +1 -3
- package/dist/common/{esbuildConfigs → src/esbuildConfigs}/index.js +1 -1
- package/dist/common/{esbuildConfigs → src/esbuildConfigs}/inputFilesPlugin.js +7 -3
- package/dist/common/{esbuildConfigs → src/esbuildConfigs}/node.js +7 -4
- package/dist/common/src/esbuildConfigs/pure.js +41 -0
- package/dist/common/{esbuildConfigs → src/esbuildConfigs}/web.js +8 -5
- package/dist/common/src/examples/react/component/index.js +33 -0
- package/dist/common/src/examples/react/component/test.js +36 -0
- package/dist/common/src/init-docs.js +9 -0
- package/dist/common/{lib → src/lib}/abstractBase.js +99 -95
- package/dist/common/{lib → src/lib}/basebuilder.js +24 -20
- package/dist/common/{lib → src/lib}/classBuilder.js +8 -5
- package/dist/common/{lib → src/lib}/core.js +10 -60
- package/dist/common/{lib → src/lib}/index.js +7 -2
- package/dist/common/{run.js → src/run.js} +12 -4
- package/dist/common/src/utils.js +65 -0
- package/dist/common/testeranto.config.js +41 -0
- package/dist/common/tsconfig.common.tsbuildinfo +1 -1
- package/dist/module/src/Init.js +26 -0
- package/dist/module/src/Node.js +42 -0
- package/dist/module/src/PM/base.js +223 -0
- package/dist/module/src/PM/main.js +986 -0
- package/dist/module/src/PM/node.js +154 -0
- package/dist/module/{PM/node.js → src/PM/pure.js} +25 -16
- package/dist/module/{PM → src/PM}/web.js +14 -47
- package/dist/module/src/Project.js +120 -0
- package/dist/module/{Node.js → src/Pure.js} +9 -7
- package/dist/module/{ReportClient.js → src/ReportClient.js} +1 -1
- package/dist/module/{SubPackages/react/component/web.js → src/SubPackages/react/component/index.js} +3 -4
- package/dist/module/src/SubPackages/react/component/node.js +5 -0
- package/dist/module/src/SubPackages/react/component/pure.js +5 -0
- package/dist/module/{SubPackages/react/jsx → src/SubPackages/react/component}/web.js +3 -3
- package/dist/module/src/SubPackages/react/jsx/index.js +58 -0
- package/dist/module/{SubPackages → src/SubPackages}/react/jsx/node.js +1 -1
- package/dist/module/src/SubPackages/react/jsx/pure.js +5 -0
- package/dist/module/src/SubPackages/react/jsx/web.js +5 -0
- package/dist/module/{SubPackages/react-dom/component/web.js → src/SubPackages/react-dom/component/dynamic.js} +5 -13
- package/dist/module/src/SubPackages/react-dom/component/node.js +5 -0
- package/dist/module/src/SubPackages/react-dom/component/pure.js +5 -0
- package/dist/module/src/SubPackages/react-dom/component/static.js +22 -0
- package/dist/module/src/SubPackages/react-dom/component/web.js +11 -0
- package/dist/module/{SubPackages/react-dom/jsx/node.js → src/SubPackages/react-dom/jsx/dynamic.js} +3 -7
- package/dist/module/src/SubPackages/react-dom/jsx/node.js +5 -0
- package/dist/module/src/SubPackages/react-dom/jsx/pure.js +5 -0
- package/dist/module/src/SubPackages/react-dom/jsx/static.js +53 -0
- package/dist/module/src/SubPackages/react-dom/jsx/web.js +11 -0
- package/dist/module/src/SubPackages/react-test-renderer/component/index.js +14 -0
- package/dist/module/src/SubPackages/react-test-renderer/component/pure.js +3 -0
- package/dist/module/src/SubPackages/react-test-renderer/component/test/implementation.js +54 -0
- package/dist/module/src/SubPackages/react-test-renderer/component/test/node.js +5 -0
- package/dist/module/src/SubPackages/react-test-renderer/component/test/pure.js +5 -0
- package/dist/module/src/SubPackages/react-test-renderer/component/test/web.js +5 -0
- package/dist/module/src/SubPackages/react-test-renderer/jsx/pure.js +5 -0
- package/dist/module/{TestReport.js → src/TestReport.js} +26 -14
- package/dist/module/{Web.js → src/Web.js} +1 -4
- package/dist/module/src/build.js +185 -0
- package/dist/module/{defaultConfig.js → src/defaultConfig.js} +1 -3
- package/dist/module/{esbuildConfigs → src/esbuildConfigs}/index.js +1 -1
- package/dist/module/{esbuildConfigs → src/esbuildConfigs}/inputFilesPlugin.js +7 -3
- package/dist/module/{esbuildConfigs → src/esbuildConfigs}/node.js +7 -4
- package/dist/module/src/esbuildConfigs/pure.js +36 -0
- package/dist/module/{esbuildConfigs → src/esbuildConfigs}/web.js +8 -5
- package/dist/module/src/examples/react/component/index.js +26 -0
- package/dist/module/src/examples/react/component/test.js +32 -0
- package/dist/module/src/init-docs.js +4 -0
- package/dist/module/{lib → src/lib}/abstractBase.js +99 -95
- package/dist/module/{lib → src/lib}/basebuilder.js +24 -20
- package/dist/module/{lib → src/lib}/classBuilder.js +8 -5
- package/dist/module/{lib → src/lib}/core.js +10 -60
- package/dist/module/{lib → src/lib}/index.js +7 -2
- package/dist/module/{run.js → src/run.js} +12 -4
- package/dist/module/src/utils.js +53 -0
- package/dist/module/testeranto.config.js +39 -0
- package/dist/module/tsconfig.module.tsbuildinfo +1 -1
- package/dist/prebuild/Project.css +11367 -0
- package/dist/prebuild/Project.js +24643 -0
- package/dist/prebuild/ReportClient.js +1 -1
- package/dist/prebuild/TestReport.js +13 -12
- package/dist/prebuild/build.mjs +217 -106
- package/dist/prebuild/init-docs.mjs +29 -83
- package/dist/prebuild/run.mjs +803 -686
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/src/Init.d.ts +2 -0
- package/dist/types/src/Node.d.ts +9 -0
- package/dist/types/src/PM/base.d.ts +34 -0
- package/dist/types/{PM → src/PM}/index.d.ts +21 -22
- package/dist/types/src/PM/main.d.ts +47 -0
- package/dist/types/src/PM/node.d.ts +38 -0
- package/dist/types/{PM/node.d.ts → src/PM/pure.d.ts} +16 -17
- package/dist/types/{PM → src/PM}/web.d.ts +10 -15
- package/dist/types/src/Pure.d.ts +9 -0
- package/dist/types/src/SubPackages/react/component/index.d.ts +4 -0
- package/dist/types/src/SubPackages/react/component/node.d.ts +4 -0
- package/dist/types/src/SubPackages/react/component/pure.d.ts +4 -0
- package/dist/types/src/SubPackages/react/component/web.d.ts +4 -0
- package/dist/types/src/SubPackages/react/jsx/index.d.ts +5 -0
- package/dist/types/src/SubPackages/react/jsx/node.d.ts +4 -0
- package/dist/types/src/SubPackages/react/jsx/pure.d.ts +4 -0
- package/dist/types/src/SubPackages/react/jsx/web.d.ts +4 -0
- package/dist/types/src/SubPackages/react-dom/component/dynamic.d.ts +20 -0
- package/dist/types/src/SubPackages/react-dom/component/node.d.ts +4 -0
- package/dist/types/src/SubPackages/react-dom/component/pure.d.ts +4 -0
- package/dist/types/src/SubPackages/react-dom/component/static.d.ts +9 -0
- package/dist/types/src/SubPackages/react-dom/component/web.d.ts +4 -0
- package/dist/types/src/SubPackages/react-dom/jsx/dynamic.d.ts +5 -0
- package/dist/types/src/SubPackages/react-dom/jsx/node.d.ts +4 -0
- package/dist/types/src/SubPackages/react-dom/jsx/pure.d.ts +4 -0
- package/dist/types/src/SubPackages/react-dom/jsx/static.d.ts +5 -0
- package/dist/types/src/SubPackages/react-dom/jsx/web.d.ts +5 -0
- package/dist/types/{SubPackages → src/SubPackages}/react-test-renderer/MemoExoticComponent/node.d.ts +1 -1
- package/dist/types/src/SubPackages/react-test-renderer/component/index.d.ts +5 -0
- package/dist/types/src/SubPackages/react-test-renderer/component/interface.d.ts +3 -0
- package/dist/types/src/SubPackages/react-test-renderer/component/node.d.ts +4 -0
- package/dist/types/src/SubPackages/react-test-renderer/component/pure.d.ts +4 -0
- package/dist/types/src/SubPackages/react-test-renderer/component/test/implementation.d.ts +4 -0
- package/dist/types/src/SubPackages/react-test-renderer/component/test/node.d.ts +3 -0
- package/dist/types/src/SubPackages/react-test-renderer/component/test/pure.d.ts +4 -0
- package/dist/types/src/SubPackages/react-test-renderer/component/test/web.d.ts +3 -0
- package/dist/types/src/SubPackages/react-test-renderer/component/web.d.ts +4 -0
- package/dist/types/{SubPackages → src/SubPackages}/react-test-renderer/fc/node.d.ts +1 -1
- package/dist/types/{SubPackages → src/SubPackages}/react-test-renderer/fc/web.d.ts +1 -1
- package/dist/types/src/SubPackages/react-test-renderer/jsx/index.d.ts +11 -0
- package/dist/types/src/SubPackages/react-test-renderer/jsx/node.d.ts +4 -0
- package/dist/types/src/SubPackages/react-test-renderer/jsx/pure.d.ts +4 -0
- package/dist/types/src/SubPackages/react-test-renderer/jsx/web.d.ts +4 -0
- package/dist/types/{SubPackages → src/SubPackages}/react-test-renderer/jsx-promised/node.d.ts +1 -1
- package/dist/types/{SubPackages → src/SubPackages}/react-test-renderer/jsx-promised/web.d.ts +1 -1
- package/dist/types/src/Types.d.ts +88 -0
- package/dist/types/src/Web.d.ts +9 -0
- package/dist/types/src/defaultConfig.d.ts +3 -0
- package/dist/types/src/esbuildConfigs/index.d.ts +4 -0
- package/dist/types/{esbuildConfigs → src/esbuildConfigs}/inputFilesPlugin.d.ts +2 -1
- package/dist/types/src/esbuildConfigs/node.d.ts +4 -0
- package/dist/types/src/esbuildConfigs/pure.d.ts +4 -0
- package/dist/types/src/esbuildConfigs/web.d.ts +4 -0
- package/dist/types/src/examples/react/component/index.d.ts +13 -0
- package/dist/types/src/examples/react/component/test.d.ts +17 -0
- package/dist/types/{lib → src/lib}/abstractBase.d.ts +47 -34
- package/dist/types/{lib → src/lib}/basebuilder.d.ts +7 -9
- package/dist/types/src/lib/classBuilder.d.ts +9 -0
- package/dist/types/src/lib/core.d.ts +7 -0
- package/dist/types/{lib → src/lib}/index.d.ts +14 -36
- package/dist/types/src/lib/types.d.ts +15 -0
- package/dist/types/src/utils.d.ts +18 -0
- package/dist/types/testeranto.config.d.ts +3 -0
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/eslint.config.mjs +111 -0
- package/package.json +33 -12
- package/src/Init.ts +29 -75
- package/src/Node.ts +42 -46
- package/src/PM/base.ts +299 -0
- package/src/PM/index.ts +28 -21
- package/src/PM/main.ts +569 -819
- package/src/PM/node.ts +88 -44
- package/src/PM/pure.ts +209 -0
- package/src/PM/web.ts +19 -121
- package/src/Project.tsx +200 -0
- package/src/Pure.ts +69 -0
- package/src/ReportClient.tsx +8 -3
- package/src/SubPackages/react/component/index.ts +28 -0
- package/src/SubPackages/react/component/node.ts +12 -82
- package/src/SubPackages/react/component/pure.ts +17 -0
- package/src/SubPackages/react/component/web.ts +12 -81
- package/src/SubPackages/react/jsx/index.ts +56 -52
- package/src/SubPackages/react/jsx/node.ts +12 -29
- package/src/SubPackages/react/jsx/pure.ts +23 -0
- package/src/SubPackages/react/jsx/web.ts +17 -36
- package/src/SubPackages/react-dom/component/dynamic.ts +107 -0
- package/src/SubPackages/react-dom/component/node.ts +11 -116
- package/src/SubPackages/react-dom/component/pure.ts +17 -0
- package/src/SubPackages/react-dom/component/static.ts +41 -0
- package/src/SubPackages/react-dom/component/web.ts +7 -113
- package/src/SubPackages/react-dom/jsx/dynamic.ts +46 -0
- package/src/SubPackages/react-dom/jsx/node.ts +10 -58
- package/src/SubPackages/react-dom/jsx/pure.ts +18 -0
- package/src/SubPackages/react-dom/jsx/static.ts +87 -0
- package/src/SubPackages/react-dom/jsx/web.ts +7 -135
- package/src/SubPackages/react-test-renderer/component/index.ts +27 -51
- package/src/SubPackages/react-test-renderer/component/interface.ts +7 -5
- package/src/SubPackages/react-test-renderer/component/node.ts +7 -25
- package/src/SubPackages/react-test-renderer/component/pure.ts +18 -0
- package/src/SubPackages/react-test-renderer/component/test/implementation.ts +63 -0
- package/src/SubPackages/react-test-renderer/component/test/node.ts +14 -0
- package/src/SubPackages/react-test-renderer/component/test/pure.ts +14 -0
- package/src/SubPackages/react-test-renderer/component/test/web.ts +14 -0
- package/src/SubPackages/react-test-renderer/component/web.ts +7 -23
- package/src/SubPackages/react-test-renderer/jsx/index.ts +13 -46
- package/src/SubPackages/react-test-renderer/jsx/node.ts +9 -15
- package/src/SubPackages/react-test-renderer/jsx/pure.ts +31 -0
- package/src/SubPackages/react-test-renderer/jsx/web.ts +9 -14
- package/src/TestReport.tsx +37 -19
- package/src/Types.ts +114 -140
- package/src/Web.ts +13 -48
- package/src/build.ts +153 -143
- package/src/defaultConfig.ts +3 -5
- package/src/esbuildConfigs/index.ts +3 -3
- package/src/esbuildConfigs/inputFilesPlugin.ts +9 -7
- package/src/esbuildConfigs/node.ts +10 -6
- package/src/esbuildConfigs/pure.ts +72 -0
- package/src/esbuildConfigs/web.ts +11 -7
- package/src/examples/react/component/index.tsx +35 -0
- package/src/examples/react/component/test.ts +83 -0
- package/src/init-docs.ts +2 -15
- package/src/lib/abstractBase.ts +188 -260
- package/src/lib/basebuilder.ts +47 -48
- package/src/lib/classBuilder.ts +28 -35
- package/src/lib/core.ts +35 -102
- package/src/lib/index.ts +37 -65
- package/src/lib/types.ts +23 -98
- package/src/run.ts +18 -5
- package/src/utils.ts +73 -40
- package/testeranto/Project.css +11367 -0
- package/testeranto/Project.js +24643 -0
- package/testeranto/ReportClient.css +11367 -0
- package/testeranto/ReportClient.js +24641 -0
- package/testeranto/TestReport.css +11367 -0
- package/testeranto/TestReport.js +27485 -0
- package/testeranto/bundles/node/react/metafile.json +627 -0
- package/testeranto/bundles/node/react/src/SubPackages/react-test-renderer/component/test/node.mjs +24687 -0
- package/testeranto/bundles/pure/react/metafile.json +8 -0
- package/testeranto/bundles/pure/react/src/SubPackages/react-test-renderer/component/test/pure.mjs +24625 -0
- package/testeranto/bundles/web/react/metafile.json +8 -0
- package/testeranto/bundles/web/react/src/SubPackages/react-test-renderer/component/test/web.html +19 -0
- package/testeranto/bundles/web/react/src/SubPackages/react-test-renderer/component/test/web.mjs +21290 -0
- package/testeranto/index.html +28 -0
- package/testeranto/reports/react/config.json +22 -0
- package/testeranto/reports/react/index.html +24 -0
- package/testeranto/reports/react/src/SubPackages/react-test-renderer/component/test/node/node/console_log.txt +0 -0
- package/testeranto/reports/react/src/SubPackages/react-test-renderer/component/test/pure/pure/bdd_errors.txt +1 -0
- package/testeranto/reports/react/src/SubPackages/react-test-renderer/component/test/pure/pure/featurePrompt.txt +0 -0
- package/testeranto/reports/react/src/SubPackages/react-test-renderer/component/test/pure/pure/lint_errors.json +3381 -0
- package/testeranto/reports/react/src/SubPackages/react-test-renderer/component/test/pure/pure/littleBoard.html +20 -0
- package/testeranto/reports/react/src/SubPackages/react-test-renderer/component/test/pure/pure/log.txt +40 -0
- package/testeranto/reports/react/src/SubPackages/react-test-renderer/component/test/pure/pure/prompt.txt +24 -0
- package/testeranto/reports/react/src/SubPackages/react-test-renderer/component/test/pure/pure/tests.json +132 -0
- package/testeranto/reports/react/src/SubPackages/react-test-renderer/component/test/pure/pure/type_errors.txt +17 -0
- package/testeranto/reports/react/src/SubPackages/react-test-renderer/component/test/web/web/bdd_errors.txt +1 -0
- package/testeranto/reports/react/src/SubPackages/react-test-renderer/component/test/web/web/console_log.txt +1 -0
- package/testeranto/reports/react/src/SubPackages/react-test-renderer/component/test/web/web/lint_errors.json +2947 -0
- package/testeranto/reports/react/src/SubPackages/react-test-renderer/component/test/web/web/littleBoard.html +20 -0
- package/testeranto/reports/react/src/SubPackages/react-test-renderer/component/test/web/web/log.txt +40 -0
- package/testeranto/reports/react/src/SubPackages/react-test-renderer/component/test/web/web/prompt.txt +23 -0
- package/testeranto/reports/react/src/SubPackages/react-test-renderer/component/test/web/web/tests.json +132 -0
- package/testeranto/reports/react/src/SubPackages/react-test-renderer/component/test/web/web/type_errors.txt +18 -0
- package/testeranto/reports/react/summary.json +8 -0
- package/testeranto.config.ts +45 -0
- package/tsc.log +53 -76
- package/type-fix.txt +2 -0
- package/dist/common/Init.js +0 -68
- package/dist/common/PM/main.js +0 -1176
- package/dist/common/SubPackages/react/component/node.js +0 -19
- package/dist/common/SubPackages/react/jsx/index.js +0 -21
- package/dist/common/SubPackages/react-dom/component/node.js +0 -88
- package/dist/common/SubPackages/react-dom/jsx/node.js +0 -39
- package/dist/common/SubPackages/react-dom/jsx/web.js +0 -128
- package/dist/common/SubPackages/react-test-renderer/component/index.js +0 -2
- package/dist/common/build.js +0 -222
- package/dist/common/init-docs.js +0 -53
- package/dist/common/puppeteerConfiger.js +0 -24
- package/dist/common/utils.js +0 -43
- package/dist/module/Init.js +0 -63
- package/dist/module/PM/main.js +0 -1136
- package/dist/module/SubPackages/react/component/node.js +0 -14
- package/dist/module/SubPackages/react/jsx/index.js +0 -15
- package/dist/module/SubPackages/react-dom/component/node.js +0 -80
- package/dist/module/SubPackages/react-dom/jsx/web.js +0 -90
- package/dist/module/SubPackages/react-test-renderer/component/index.js +0 -1
- package/dist/module/build.js +0 -184
- package/dist/module/init-docs.js +0 -15
- package/dist/module/puppeteerConfiger.js +0 -19
- package/dist/module/utils.js +0 -29
- package/dist/types/Init.d.ts +0 -2
- package/dist/types/Node.d.ts +0 -12
- package/dist/types/PM/main.d.ts +0 -66
- package/dist/types/SubPackages/react/component/node.d.ts +0 -7
- package/dist/types/SubPackages/react/component/web.d.ts +0 -7
- package/dist/types/SubPackages/react/jsx/index.d.ts +0 -12
- package/dist/types/SubPackages/react/jsx/node.d.ts +0 -4
- package/dist/types/SubPackages/react/jsx/web.d.ts +0 -4
- package/dist/types/SubPackages/react-dom/component/node.d.ts +0 -11
- package/dist/types/SubPackages/react-dom/component/web.d.ts +0 -20
- package/dist/types/SubPackages/react-dom/jsx/node.d.ts +0 -7
- package/dist/types/SubPackages/react-dom/jsx/web.d.ts +0 -5
- package/dist/types/SubPackages/react-test-renderer/component/index.d.ts +0 -13
- package/dist/types/SubPackages/react-test-renderer/component/interface.d.ts +0 -9
- package/dist/types/SubPackages/react-test-renderer/component/node.d.ts +0 -4
- package/dist/types/SubPackages/react-test-renderer/component/web.d.ts +0 -4
- package/dist/types/SubPackages/react-test-renderer/jsx/index.d.ts +0 -16
- package/dist/types/SubPackages/react-test-renderer/jsx/node.d.ts +0 -9
- package/dist/types/SubPackages/react-test-renderer/jsx/web.d.ts +0 -9
- package/dist/types/Types.d.ts +0 -61
- package/dist/types/Web.d.ts +0 -9
- package/dist/types/defaultConfig.d.ts +0 -3
- package/dist/types/esbuildConfigs/index.d.ts +0 -4
- package/dist/types/esbuildConfigs/node.d.ts +0 -4
- package/dist/types/esbuildConfigs/web.d.ts +0 -4
- package/dist/types/lib/classBuilder.d.ts +0 -7
- package/dist/types/lib/core.d.ts +0 -7
- package/dist/types/lib/types.d.ts +0 -14
- package/dist/types/puppeteerConfiger.d.ts +0 -4
- package/dist/types/utils.d.ts +0 -15
- package/src/puppeteerConfiger.ts +0 -26
- /package/dist/common/{PM → src/PM}/index.js +0 -0
- /package/dist/common/{ReportServer.js → src/ReportServer.js} +0 -0
- /package/dist/common/{SubPackages → src/SubPackages}/react/jsx/node.js +0 -0
- /package/dist/common/{SubPackages → src/SubPackages}/react-dom/jsx/index.js +0 -0
- /package/dist/common/{SubPackages → src/SubPackages}/react-test-renderer/MemoExoticComponent/node.js +0 -0
- /package/dist/common/{SubPackages → src/SubPackages}/react-test-renderer/component/interface.js +0 -0
- /package/dist/common/{SubPackages → src/SubPackages}/react-test-renderer/component/node.js +0 -0
- /package/dist/common/{SubPackages → src/SubPackages}/react-test-renderer/component/web.js +0 -0
- /package/dist/common/{SubPackages → src/SubPackages}/react-test-renderer/fc/node.js +0 -0
- /package/dist/common/{SubPackages → src/SubPackages}/react-test-renderer/fc/web.js +0 -0
- /package/dist/common/{SubPackages → src/SubPackages}/react-test-renderer/jsx/index.js +0 -0
- /package/dist/common/{SubPackages → src/SubPackages}/react-test-renderer/jsx/node.js +0 -0
- /package/dist/common/{SubPackages → src/SubPackages}/react-test-renderer/jsx/web.js +0 -0
- /package/dist/common/{SubPackages → src/SubPackages}/react-test-renderer/jsx-promised/index.js +0 -0
- /package/dist/common/{SubPackages → src/SubPackages}/react-test-renderer/jsx-promised/node.js +0 -0
- /package/dist/common/{SubPackages → src/SubPackages}/react-test-renderer/jsx-promised/web.js +0 -0
- /package/dist/common/{Types.js → src/Types.js} +0 -0
- /package/dist/common/{esbuildConfigs → src/esbuildConfigs}/eslint-formatter-testeranto.js +0 -0
- /package/dist/common/{esbuildConfigs → src/esbuildConfigs}/featuresPlugin.js +0 -0
- /package/dist/common/{lib → src/lib}/types.js +0 -0
- /package/dist/common/{web.html.js → src/web.html.js} +0 -0
- /package/dist/module/{Footer.js → src/Footer.js} +0 -0
- /package/dist/module/{PM → src/PM}/index.js +0 -0
- /package/dist/module/{ReportServer.js → src/ReportServer.js} +0 -0
- /package/dist/module/{SubPackages → src/SubPackages}/react-dom/jsx/index.js +0 -0
- /package/dist/module/{SubPackages → src/SubPackages}/react-test-renderer/MemoExoticComponent/node.js +0 -0
- /package/dist/module/{SubPackages → src/SubPackages}/react-test-renderer/component/interface.js +0 -0
- /package/dist/module/{SubPackages → src/SubPackages}/react-test-renderer/component/node.js +0 -0
- /package/dist/module/{SubPackages → src/SubPackages}/react-test-renderer/component/web.js +0 -0
- /package/dist/module/{SubPackages → src/SubPackages}/react-test-renderer/fc/node.js +0 -0
- /package/dist/module/{SubPackages → src/SubPackages}/react-test-renderer/fc/web.js +0 -0
- /package/dist/module/{SubPackages → src/SubPackages}/react-test-renderer/jsx/index.js +0 -0
- /package/dist/module/{SubPackages → src/SubPackages}/react-test-renderer/jsx/node.js +0 -0
- /package/dist/module/{SubPackages → src/SubPackages}/react-test-renderer/jsx/web.js +0 -0
- /package/dist/module/{SubPackages → src/SubPackages}/react-test-renderer/jsx-promised/index.js +0 -0
- /package/dist/module/{SubPackages → src/SubPackages}/react-test-renderer/jsx-promised/node.js +0 -0
- /package/dist/module/{SubPackages → src/SubPackages}/react-test-renderer/jsx-promised/web.js +0 -0
- /package/dist/module/{Types.js → src/Types.js} +0 -0
- /package/dist/module/{esbuildConfigs → src/esbuildConfigs}/eslint-formatter-testeranto.js +0 -0
- /package/dist/module/{esbuildConfigs → src/esbuildConfigs}/featuresPlugin.js +0 -0
- /package/dist/module/{lib → src/lib}/types.js +0 -0
- /package/dist/module/{web.html.js → src/web.html.js} +0 -0
- /package/dist/types/{ReportServer.d.ts → src/ReportServer.d.ts} +0 -0
- /package/dist/types/{SubPackages → src/SubPackages}/react-dom/jsx/index.d.ts +0 -0
- /package/dist/types/{SubPackages → src/SubPackages}/react-test-renderer/jsx-promised/index.d.ts +0 -0
- /package/dist/types/{build.d.ts → src/build.d.ts} +0 -0
- /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/eslint-formatter-testeranto.d.ts +0 -0
- /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/featuresPlugin.d.ts +0 -0
- /package/dist/types/{init-docs.d.ts → src/init-docs.d.ts} +0 -0
- /package/dist/types/{run.d.ts → src/run.d.ts} +0 -0
- /package/dist/types/{web.html.d.ts → src/web.html.d.ts} +0 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import Testeranto from "./lib/core.js";
|
|
2
|
+
import { ITTestResourceRequest } from "./lib/index.js";
|
|
3
|
+
import type { INodeTestInterface, IT, ITestImplementation, ITestInterface, ITestSpecification, OT } from "./Types.js";
|
|
4
|
+
export declare class NodeTesteranto<I extends IT, O extends OT, M> extends Testeranto<I, O, M> {
|
|
5
|
+
constructor(input: I["iinput"], testSpecification: ITestSpecification<I, O>, testImplementation: ITestImplementation<I, O, M>, testResourceRequirement: ITTestResourceRequest, testInterface: Partial<ITestInterface<I>>);
|
|
6
|
+
receiveTestResourceConfig(partialTestResource: string): Promise<import("./lib/index.js").IFinalResults>;
|
|
7
|
+
}
|
|
8
|
+
declare const testeranto: <I extends IT, O extends OT, M>(input: I["iinput"], testSpecification: ITestSpecification<I, O>, testImplementation: ITestImplementation<I, O, M>, testInterface: Partial<INodeTestInterface<I>>, testResourceRequirement?: ITTestResourceRequest) => Promise<Testeranto<I, O, M>>;
|
|
9
|
+
export default testeranto;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { Browser, Page, ScreenshotOptions } from "puppeteer-core";
|
|
2
|
+
import { PassThrough } from "stream";
|
|
3
|
+
import { ITLog } from "../lib/index.js";
|
|
4
|
+
import { IBuiltConfig } from "../Types.js";
|
|
5
|
+
export declare abstract class PM_Base {
|
|
6
|
+
browser: Browser;
|
|
7
|
+
configs: IBuiltConfig;
|
|
8
|
+
constructor(configs: IBuiltConfig);
|
|
9
|
+
customclose(): void;
|
|
10
|
+
waitForSelector(p: string, s: string): any;
|
|
11
|
+
closePage(p: any): any;
|
|
12
|
+
newPage(): Promise<Page>;
|
|
13
|
+
goto(p: any, url: string): any;
|
|
14
|
+
$(selector: string, p: string): Promise<boolean>;
|
|
15
|
+
pages(): Promise<string[]>;
|
|
16
|
+
screencast(ssOpts: ScreenshotOptions, testName: string, page: Page): Promise<Uint8Array<ArrayBufferLike>>;
|
|
17
|
+
customScreenShot(ssOpts: ScreenshotOptions, testName: string, page: Page): Promise<Uint8Array<ArrayBufferLike>>;
|
|
18
|
+
end(uid: number): Promise<boolean>;
|
|
19
|
+
existsSync(destFolder: string): boolean;
|
|
20
|
+
mkdirSync(fp: string): Promise<string | false | undefined>;
|
|
21
|
+
writeFileSync(filepath: string, contents: string, testName: string): Promise<boolean>;
|
|
22
|
+
createWriteStream(filepath: string, testName: string): Promise<number>;
|
|
23
|
+
testArtiFactoryfileWriter(tLog: ITLog, callback: (Promise: any) => void): (fPath: any, value: string | Buffer | PassThrough) => void;
|
|
24
|
+
write(uid: number, contents: string): Promise<boolean>;
|
|
25
|
+
page(): string | undefined;
|
|
26
|
+
click(selector: string, page: Page): Promise<void>;
|
|
27
|
+
focusOn(selector: string, p: string): Promise<void>;
|
|
28
|
+
typeInto(value: string, p: string): Promise<void>;
|
|
29
|
+
getValue(value: string, p: string): void;
|
|
30
|
+
getAttribute(selector: string, attribute: string, p: string): void;
|
|
31
|
+
isDisabled(selector: string, p: string): void;
|
|
32
|
+
screencastStop(s: string): Promise<void>;
|
|
33
|
+
doInPage(p: string, cb: (p: Page) => unknown): Promise<void>;
|
|
34
|
+
}
|
|
@@ -1,34 +1,33 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Page } from "puppeteer-core";
|
|
2
2
|
import { ScreenRecorderOptions } from "puppeteer-core/lib/esm/puppeteer";
|
|
3
3
|
import { ITLog, ITTestResourceConfiguration } from "../lib";
|
|
4
4
|
export declare abstract class PM {
|
|
5
5
|
server: any;
|
|
6
6
|
testResourceConfiguration: ITTestResourceConfiguration;
|
|
7
|
+
abstract start(): Promise<void>;
|
|
8
|
+
abstract stop(): Promise<void>;
|
|
7
9
|
abstract testArtiFactoryfileWriter(tLog: ITLog, callback: (Promise: any) => void): any;
|
|
8
|
-
abstract
|
|
9
|
-
abstract writeFileSync(fp: string, contents: string): any;
|
|
10
|
-
abstract mkdirSync(a: string): any;
|
|
11
|
-
abstract existsSync(fp: string): boolean;
|
|
12
|
-
abstract write(accessObject: {
|
|
13
|
-
uid: number;
|
|
14
|
-
}, contents: string): boolean;
|
|
15
|
-
abstract end(accessObject: {
|
|
16
|
-
uid: number;
|
|
17
|
-
}): boolean;
|
|
18
|
-
abstract customScreenShot(opts: object, page?: string): any;
|
|
19
|
-
abstract screencast(opts: ScreenRecorderOptions, p?: any): any;
|
|
20
|
-
abstract screencastStop(s: string): any;
|
|
21
|
-
abstract page(): string | undefined;
|
|
10
|
+
abstract $(selector: string): any;
|
|
22
11
|
abstract click(selector: string): any;
|
|
12
|
+
abstract closePage(p: any): any;
|
|
13
|
+
abstract createWriteStream(filepath: string, testName: string): Promise<string>;
|
|
14
|
+
abstract customclose(): any;
|
|
15
|
+
abstract customScreenShot(opts: object, page?: string): any;
|
|
16
|
+
abstract end(uid: number): Promise<boolean>;
|
|
17
|
+
abstract existsSync(fp: string): Promise<boolean>;
|
|
23
18
|
abstract focusOn(selector: string): any;
|
|
24
|
-
abstract typeInto(value: string): any;
|
|
25
|
-
abstract getValue(value: string): any;
|
|
26
19
|
abstract getAttribute(selector: string, attribute: string): any;
|
|
27
|
-
abstract
|
|
28
|
-
abstract $(selector: string): any;
|
|
29
|
-
abstract newPage(): CdpPage;
|
|
20
|
+
abstract getValue(value: string): any;
|
|
30
21
|
abstract goto(p: any, url: string): any;
|
|
31
|
-
abstract
|
|
22
|
+
abstract isDisabled(selector: string): Promise<boolean>;
|
|
23
|
+
abstract mkdirSync(a: string): any;
|
|
24
|
+
abstract newPage(): Promise<string>;
|
|
25
|
+
abstract page(): Promise<string | undefined>;
|
|
26
|
+
abstract pages(): Promise<string[]>;
|
|
27
|
+
abstract screencast(o: ScreenRecorderOptions, p: Page | string): any;
|
|
28
|
+
abstract screencastStop(s: string): any;
|
|
29
|
+
abstract typeInto(selector: string, value: string): any;
|
|
32
30
|
abstract waitForSelector(p: any, sel: string): any;
|
|
33
|
-
abstract
|
|
31
|
+
abstract write(uid: number, contents: string): Promise<boolean>;
|
|
32
|
+
abstract writeFileSync(f: string, c: string, t: string): Promise<boolean>;
|
|
34
33
|
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Page } from "puppeteer-core/lib/esm/puppeteer";
|
|
2
|
+
import fs from "fs";
|
|
3
|
+
import { IRunnables } from "../lib/index.js";
|
|
4
|
+
import { ISummary } from "../utils";
|
|
5
|
+
import { IBuiltConfig, IRunTime, ITestTypes } from "../Types.js";
|
|
6
|
+
import { PM_Base } from "./base.js";
|
|
7
|
+
export declare class PM_Main extends PM_Base {
|
|
8
|
+
name: string;
|
|
9
|
+
ports: Record<number, boolean>;
|
|
10
|
+
queue: any[];
|
|
11
|
+
mode: "once" | "dev";
|
|
12
|
+
bigBoard: ISummary;
|
|
13
|
+
webMetafileWatcher: fs.FSWatcher;
|
|
14
|
+
nodeMetafileWatcher: fs.FSWatcher;
|
|
15
|
+
importMetafileWatcher: fs.FSWatcher;
|
|
16
|
+
constructor(configs: IBuiltConfig, name: string, mode: "once" | "dev");
|
|
17
|
+
mapping(): [string, (...a: any[]) => any][];
|
|
18
|
+
start(): Promise<void>;
|
|
19
|
+
stop(): Promise<void>;
|
|
20
|
+
getRunnables: (tests: ITestTypes[], testName: string, payload?: {
|
|
21
|
+
nodeEntryPoints: {};
|
|
22
|
+
webEntryPoints: {};
|
|
23
|
+
importEntryPoints: {};
|
|
24
|
+
}) => IRunnables;
|
|
25
|
+
metafileOutputs(platform: IRunTime): Promise<void>;
|
|
26
|
+
tscCheck: ({ entrypoint, addableFiles, platform, }: {
|
|
27
|
+
platform: IRunTime;
|
|
28
|
+
entrypoint: string;
|
|
29
|
+
addableFiles: string[];
|
|
30
|
+
}) => Promise<void>;
|
|
31
|
+
eslintCheck: (entrypoint: string, platform: IRunTime, addableFiles: string[]) => Promise<void>;
|
|
32
|
+
makePrompt: (entryPoint: string, addableFiles: string[], platform: IRunTime) => Promise<void>;
|
|
33
|
+
checkForShutdown: () => void;
|
|
34
|
+
typeCheckIsRunning: (src: string) => void;
|
|
35
|
+
typeCheckIsNowDone: (src: string, failures: number) => void;
|
|
36
|
+
lintIsRunning: (src: string) => void;
|
|
37
|
+
lintIsNowDone: (src: string, failures: number) => void;
|
|
38
|
+
bddTestIsRunning: (src: string) => void;
|
|
39
|
+
bddTestIsNowDone: (src: string, failures: number) => void;
|
|
40
|
+
launchPure: (src: string, dest: string) => Promise<void>;
|
|
41
|
+
launchNode: (src: string, dest: string) => Promise<void>;
|
|
42
|
+
launchWebSideCar: (src: string, dest: string, testConfig: ITestTypes) => Promise<Page>;
|
|
43
|
+
launchNodeSideCar: (src: string, dest: string, testConfig: ITestTypes) => Promise<void>;
|
|
44
|
+
launchWeb: (src: string, dest: string) => Promise<void>;
|
|
45
|
+
receiveFeatures: (features: string[], destFolder: string, srcTest: string, platform: IRunTime) => void;
|
|
46
|
+
writeBigBoard: () => void;
|
|
47
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import net from "net";
|
|
2
|
+
import { ScreencastOptions } from "puppeteer-core";
|
|
3
|
+
import { PassThrough } from "stream";
|
|
4
|
+
import { ITLog, ITTestResourceConfiguration } from "../lib";
|
|
5
|
+
import { PM } from ".";
|
|
6
|
+
export declare class PM_Node extends PM {
|
|
7
|
+
testResourceConfiguration: ITTestResourceConfiguration;
|
|
8
|
+
client: net.Socket;
|
|
9
|
+
constructor(t: ITTestResourceConfiguration);
|
|
10
|
+
start(): Promise<void>;
|
|
11
|
+
stop(): Promise<void>;
|
|
12
|
+
send<I>(command: string, ...argz: any[]): Promise<I>;
|
|
13
|
+
pages(): Promise<string[]>;
|
|
14
|
+
waitForSelector(p: string, s: string): any;
|
|
15
|
+
closePage(p: any): Promise<unknown>;
|
|
16
|
+
goto(page: string, url: string): Promise<unknown>;
|
|
17
|
+
newPage(): Promise<string>;
|
|
18
|
+
$(selector: string): Promise<unknown>;
|
|
19
|
+
isDisabled(selector: string): Promise<boolean>;
|
|
20
|
+
getAttribute(selector: string, attribute: string): Promise<unknown>;
|
|
21
|
+
getValue(selector: string): Promise<unknown>;
|
|
22
|
+
focusOn(selector: string): Promise<unknown>;
|
|
23
|
+
typeInto(selector: string): Promise<unknown>;
|
|
24
|
+
page(): Promise<string | undefined>;
|
|
25
|
+
click(selector: string): Promise<unknown>;
|
|
26
|
+
screencast(opts: ScreencastOptions, page: string): Promise<unknown>;
|
|
27
|
+
screencastStop(p: string): Promise<unknown>;
|
|
28
|
+
customScreenShot(opts: ScreencastOptions, page?: string): Promise<unknown>;
|
|
29
|
+
existsSync(destFolder: string): Promise<boolean>;
|
|
30
|
+
mkdirSync(): Promise<unknown>;
|
|
31
|
+
write(uid: number, contents: string): Promise<boolean>;
|
|
32
|
+
writeFileSync(filepath: string, contents: string): Promise<boolean>;
|
|
33
|
+
createWriteStream(filepath: string): Promise<string>;
|
|
34
|
+
end(uid: any): Promise<boolean>;
|
|
35
|
+
customclose(): Promise<unknown>;
|
|
36
|
+
testArtiFactoryfileWriter(tLog: ITLog, callback: (Promise: any) => void): (fPath: any, value: string | Buffer | PassThrough) => void;
|
|
37
|
+
startPuppeteer(options?: any): any;
|
|
38
|
+
}
|
|
@@ -1,38 +1,37 @@
|
|
|
1
1
|
import { ScreencastOptions } from "puppeteer-core";
|
|
2
|
+
import { CdpPage } from "puppeteer-core/lib/esm/puppeteer";
|
|
2
3
|
import { PassThrough } from "stream";
|
|
3
4
|
import { ITLog, ITTestResourceConfiguration } from "../lib";
|
|
4
|
-
import { PM } from "
|
|
5
|
-
import { CdpPage } from "puppeteer-core/lib/esm/puppeteer";
|
|
5
|
+
import { PM } from ".";
|
|
6
6
|
type PuppetMasterServer = Record<string, Promise<any>>;
|
|
7
|
-
export declare class
|
|
7
|
+
export declare class PM_Pure extends PM {
|
|
8
8
|
server: PuppetMasterServer;
|
|
9
9
|
testResourceConfiguration: ITTestResourceConfiguration;
|
|
10
10
|
constructor(t: ITTestResourceConfiguration);
|
|
11
|
+
start(): Promise<void>;
|
|
12
|
+
stop(): Promise<void>;
|
|
13
|
+
pages(): any;
|
|
11
14
|
waitForSelector(p: string, s: string): any;
|
|
12
15
|
closePage(p: any): string;
|
|
13
16
|
goto(cdpPage: CdpPage, url: string): any;
|
|
14
|
-
newPage():
|
|
17
|
+
newPage(): any;
|
|
15
18
|
$(selector: string): boolean;
|
|
16
19
|
isDisabled(selector: string): Promise<boolean>;
|
|
17
|
-
getAttribute(selector: string, attribute: string):
|
|
18
|
-
getValue(selector: string):
|
|
19
|
-
focusOn(selector: string):
|
|
20
|
-
typeInto(value: string):
|
|
20
|
+
getAttribute(selector: string, attribute: string): any;
|
|
21
|
+
getValue(selector: string): any;
|
|
22
|
+
focusOn(selector: string): any;
|
|
23
|
+
typeInto(selector: string, value: string): any;
|
|
21
24
|
page(): any;
|
|
22
25
|
click(selector: string): string | undefined;
|
|
23
|
-
screencast(opts: ScreencastOptions, page:
|
|
26
|
+
screencast(opts: ScreencastOptions, page: string): any;
|
|
24
27
|
screencastStop(p: string): any;
|
|
25
|
-
customScreenShot(opts: ScreencastOptions,
|
|
26
|
-
existsSync(destFolder: string): boolean
|
|
28
|
+
customScreenShot(opts: ScreencastOptions, page: string): any;
|
|
29
|
+
existsSync(destFolder: string): Promise<boolean>;
|
|
27
30
|
mkdirSync(): any;
|
|
28
|
-
write(
|
|
29
|
-
uid: number;
|
|
30
|
-
}, contents: string): any;
|
|
31
|
+
write(uid: number, contents: string): any;
|
|
31
32
|
writeFileSync(filepath: string, contents: string): any;
|
|
32
33
|
createWriteStream(filepath: string): any;
|
|
33
|
-
end(
|
|
34
|
-
uid: number;
|
|
35
|
-
}): any;
|
|
34
|
+
end(uid: number): any;
|
|
36
35
|
customclose(): void;
|
|
37
36
|
testArtiFactoryfileWriter(tLog: ITLog, callback: (Promise: any) => void): (fPath: any, value: string | Buffer | PassThrough) => void;
|
|
38
37
|
startPuppeteer(options?: any): any;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { PassThrough } from "stream";
|
|
2
|
-
import { ITLog, ITTestResourceConfiguration } from "../lib";
|
|
3
|
-
import { PM } from "./index.js";
|
|
4
2
|
import { ScreencastOptions, ScreenshotOptions } from "puppeteer-core";
|
|
5
|
-
import { CdpPage } from "puppeteer-core/lib/esm/puppeteer";
|
|
6
|
-
|
|
7
|
-
export declare class PM_Web
|
|
8
|
-
|
|
3
|
+
import { CdpPage, Page } from "puppeteer-core/lib/esm/puppeteer";
|
|
4
|
+
import { ITLog, ITTestResourceConfiguration } from "../lib";
|
|
5
|
+
export declare class PM_Web {
|
|
6
|
+
testResourceConfiguration: ITTestResourceConfiguration;
|
|
9
7
|
constructor(t: ITTestResourceConfiguration);
|
|
8
|
+
start(): Promise<void>;
|
|
9
|
+
stop(): Promise<void>;
|
|
10
10
|
waitForSelector(p: string, s: string): any;
|
|
11
|
-
screencast(opts: ScreencastOptions): any;
|
|
11
|
+
screencast(opts: ScreencastOptions, page: Page): any;
|
|
12
12
|
screencastStop(recorder: string): any;
|
|
13
13
|
closePage(p: any): string;
|
|
14
14
|
goto(p: any, url: string): any;
|
|
@@ -21,18 +21,13 @@ export declare class PM_Web extends PM {
|
|
|
21
21
|
typeInto(value: string): any;
|
|
22
22
|
page(): string | undefined;
|
|
23
23
|
click(selector: string): any;
|
|
24
|
-
customScreenShot(opts: ScreenshotOptions): any;
|
|
24
|
+
customScreenShot(opts: ScreenshotOptions, page: Page): any;
|
|
25
25
|
existsSync(destFolder: string): boolean;
|
|
26
26
|
mkdirSync(x: any): any;
|
|
27
|
-
write(
|
|
28
|
-
uid: number;
|
|
29
|
-
}, contents: string): any;
|
|
27
|
+
write(uid: number, contents: string): Promise<boolean>;
|
|
30
28
|
writeFileSync(filepath: string, contents: string): any;
|
|
31
29
|
createWriteStream(filepath: string): any;
|
|
32
|
-
end(
|
|
33
|
-
uid: number;
|
|
34
|
-
}): any;
|
|
30
|
+
end(uid: number): boolean;
|
|
35
31
|
customclose(): void;
|
|
36
32
|
testArtiFactoryfileWriter(tLog: ITLog, callback: (Promise: any) => void): (fPath: any, value: string | Buffer | PassThrough) => void;
|
|
37
33
|
}
|
|
38
|
-
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import Testeranto from "./lib/core.js";
|
|
2
|
+
import { ITTestResourceRequest } from "./lib/index.js";
|
|
3
|
+
import type { INodeTestInterface, IT, ITestImplementation, ITestInterface, ITestSpecification, OT } from "./Types.js";
|
|
4
|
+
export declare class PureTesteranto<I extends IT, O extends OT, M> extends Testeranto<I, O, M> {
|
|
5
|
+
constructor(input: I["iinput"], testSpecification: ITestSpecification<I, O>, testImplementation: ITestImplementation<I, O, M>, testResourceRequirement: ITTestResourceRequest, testInterface: Partial<ITestInterface<I>>);
|
|
6
|
+
receiveTestResourceConfig(partialTestResource: string): Promise<import("./lib/index.js").IFinalResults>;
|
|
7
|
+
}
|
|
8
|
+
declare const _default: <I extends IT, O extends OT, M>(input: I["iinput"], testSpecification: ITestSpecification<I, O>, testImplementation: ITestImplementation<I, O, M>, testInterface: Partial<INodeTestInterface<I>>, testResourceRequirement?: ITTestResourceRequest) => Promise<Testeranto<I, O, M>>;
|
|
9
|
+
export default _default;
|
|
@@ -0,0 +1,4 @@
|
|
|
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>;
|
|
@@ -0,0 +1,4 @@
|
|
|
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;
|
|
@@ -0,0 +1,4 @@
|
|
|
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;
|
|
@@ -0,0 +1,4 @@
|
|
|
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;
|
|
@@ -0,0 +1,5 @@
|
|
|
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>;
|
|
@@ -0,0 +1,4 @@
|
|
|
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;
|
|
@@ -0,0 +1,4 @@
|
|
|
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;
|
|
@@ -0,0 +1,4 @@
|
|
|
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;
|
|
@@ -0,0 +1,20 @@
|
|
|
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>;
|
|
@@ -0,0 +1,4 @@
|
|
|
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;
|
|
@@ -0,0 +1,4 @@
|
|
|
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;
|
|
@@ -0,0 +1,9 @@
|
|
|
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 {};
|
|
@@ -0,0 +1,4 @@
|
|
|
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;
|
|
@@ -0,0 +1,5 @@
|
|
|
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>;
|
|
@@ -0,0 +1,4 @@
|
|
|
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;
|
|
@@ -0,0 +1,4 @@
|
|
|
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;
|
|
@@ -0,0 +1,5 @@
|
|
|
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>;
|
|
@@ -0,0 +1,5 @@
|
|
|
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;
|
package/dist/types/{SubPackages → src/SubPackages}/react-test-renderer/MemoExoticComponent/node.d.ts
RENAMED
|
@@ -2,5 +2,5 @@ import React from "react";
|
|
|
2
2
|
import renderer from "react-test-renderer";
|
|
3
3
|
import { Ibdd_in, Ibdd_out, ITestImplementation, ITestSpecification } from "../../../Types";
|
|
4
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>>;
|
|
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
6
|
export default _default;
|
|
@@ -0,0 +1,5 @@
|
|
|
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>;
|
|
@@ -0,0 +1,4 @@
|
|
|
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;
|
|
@@ -0,0 +1,4 @@
|
|
|
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;
|
|
@@ -0,0 +1,4 @@
|
|
|
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;
|
|
@@ -4,5 +4,5 @@ export type IInput = React.FC;
|
|
|
4
4
|
export type IWhenShape = unknown;
|
|
5
5
|
export type IThenShape = unknown;
|
|
6
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>>;
|
|
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
8
|
export default _default;
|
|
@@ -5,5 +5,5 @@ export type IInput = React.FC;
|
|
|
5
5
|
export type IWhenShape = unknown;
|
|
6
6
|
export type IThenShape = unknown;
|
|
7
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>>;
|
|
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
9
|
export default _default;
|
|
@@ -0,0 +1,11 @@
|
|
|
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>;
|
|
@@ -0,0 +1,4 @@
|
|
|
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;
|
|
@@ -0,0 +1,4 @@
|
|
|
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;
|
|
@@ -0,0 +1,4 @@
|
|
|
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;
|
package/dist/types/{SubPackages → src/SubPackages}/react-test-renderer/jsx-promised/node.d.ts
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Ibdd_in, Ibdd_out } from "../../../Types";
|
|
2
2
|
import { ITestImpl, ITestSpec } from "../../react/jsx";
|
|
3
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>>;
|
|
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
5
|
export default _default;
|
package/dist/types/{SubPackages → src/SubPackages}/react-test-renderer/jsx-promised/web.d.ts
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Ibdd_in, Ibdd_out } from "../../../Types";
|
|
2
2
|
import { ITestImpl, ITestSpec } from "../../react/jsx";
|
|
3
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>>;
|
|
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
5
|
export default _default;
|