testeranto 0.128.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.
- package/.aider.chat.history.md +137197 -0
- package/.aider.input.history +334 -0
- package/.aider.tags.cache.v3/18/8b/7dfca822129dad10b5cacadf7728.val +0 -0
- package/.aider.tags.cache.v3/{ec/c0/161c249c35be853cc40cf11f9267.val → 62/f5/8af72140d93c58db2f6aa5bf3f1f.val} +0 -0
- package/.aider.tags.cache.v3/8d/fa/12860238755bcfab9af8a93c52ab.val +0 -0
- package/.aider.tags.cache.v3/{b7/e6/5be87b62aeaf2bc244ff41c1b61a.val → a7/97/6d37fce350ad2d588f36729db0cd.val} +0 -0
- package/.aider.tags.cache.v3/{e3/e6/3501625caf5d5eb171f0d248462e.val → ad/3c/10f2ab1397f6d544e613d2a6acaf.val} +0 -0
- package/.aider.tags.cache.v3/cache.db +0 -0
- package/.aider.tags.cache.v3/cache.db-shm +0 -0
- package/.aider.tags.cache.v3/cache.db-wal +0 -0
- package/.aider.tags.cache.v3/dd/5b/0ade824b0841c7c11e9352c5d2ca.val +0 -0
- package/README.md +560 -19
- package/bundle.js +8 -75
- package/dist/common/src/Init.js +6 -1
- package/dist/common/src/Node.js +6 -4
- package/dist/common/src/NodeSidecar.js +15 -0
- package/dist/common/src/PM/PM_WithEslintAndTsc.js +187 -0
- package/dist/common/src/PM/__tests__/nodeSidecar.testeranto.js +109 -0
- package/dist/common/src/PM/__tests__/pureSidecar.testeranto.js +94 -0
- package/dist/common/src/PM/__tests__/webSidecar.testeranto.js +94 -0
- package/dist/common/src/PM/base.js +33 -16
- package/dist/common/src/PM/main.js +488 -422
- package/dist/common/src/PM/node.js +44 -19
- package/dist/common/src/PM/nodeSidecar.js +65 -0
- package/dist/common/src/PM/pure.js +55 -47
- package/dist/common/src/PM/pureSidecar.js +48 -0
- package/dist/common/src/PM/sidecar.js +11 -0
- package/dist/common/src/PM/web.js +24 -6
- package/dist/common/src/PM/webSidecar.js +47 -0
- package/dist/common/src/PureSidecar.js +13 -0
- package/dist/common/src/SP__Polygon.test.js +10 -0
- package/dist/common/src/WebSidecar.js +14 -0
- package/dist/common/src/build.js +63 -10
- package/dist/common/src/defaultConfig.js +1 -0
- package/dist/common/src/esbuildConfigs/consoleDetectorPlugin.js +27 -0
- package/dist/common/src/esbuildConfigs/pure.js +15 -1
- package/dist/common/src/esbuildConfigs/web.js +10 -1
- package/dist/common/src/{SubPackages/react-dom/jsx/index.js → lib/Sidecar.js} +4 -0
- package/dist/common/src/lib/abstractBase.js +7 -5
- package/dist/common/src/lib/basebuilder.js +1 -3
- package/dist/common/src/lib/classBuilder.js +4 -17
- package/dist/common/src/lib/core.js +11 -6
- package/dist/common/src/lib/index.js +13 -4
- package/dist/common/src/lib/pmProxy.js +1 -1
- package/dist/common/src/mothership/index.js +16 -0
- package/dist/common/src/mothership/test.js +65 -0
- package/dist/common/src/utils/queue.js +36 -0
- package/dist/common/src/utils.js +34 -5
- package/dist/common/testeranto.config.js +77 -39
- package/dist/common/tsconfig.common.tsbuildinfo +1 -1
- package/dist/module/src/Init.js +6 -1
- package/dist/module/src/Node.js +6 -4
- package/dist/module/src/NodeSidecar.js +11 -0
- package/dist/module/src/PM/PM_WithEslintAndTsc.js +180 -0
- package/dist/module/src/PM/__tests__/nodeSidecar.testeranto.js +104 -0
- package/dist/module/src/PM/__tests__/pureSidecar.testeranto.js +89 -0
- package/dist/module/src/PM/__tests__/webSidecar.testeranto.js +89 -0
- package/dist/module/src/PM/base.js +33 -16
- package/dist/module/src/PM/main.js +489 -423
- package/dist/module/src/PM/node.js +44 -19
- package/dist/module/src/PM/nodeSidecar.js +58 -0
- package/dist/module/src/PM/pure.js +55 -44
- package/dist/module/src/PM/pureSidecar.js +41 -0
- package/dist/module/src/PM/sidecar.js +7 -0
- package/dist/module/src/PM/web.js +24 -6
- package/dist/module/src/PM/webSidecar.js +40 -0
- package/dist/module/src/Project.js +154 -75
- package/dist/module/src/PureSidecar.js +9 -0
- package/dist/module/src/ReportClient.js +132 -97
- package/dist/module/src/SP__Polygon.test.js +8 -0
- package/dist/module/src/TestReport.js +32 -14
- package/dist/module/src/WebSidecar.js +10 -0
- package/dist/module/src/build.js +63 -10
- package/dist/module/src/defaultConfig.js +1 -0
- package/dist/module/src/esbuildConfigs/consoleDetectorPlugin.js +24 -0
- package/dist/module/src/esbuildConfigs/pure.js +15 -1
- package/dist/module/src/esbuildConfigs/web.js +10 -1
- package/dist/module/src/lib/Sidecar.js +2 -0
- package/dist/module/src/lib/abstractBase.js +7 -5
- package/dist/module/src/lib/basebuilder.js +1 -3
- package/dist/module/src/lib/classBuilder.js +4 -17
- package/dist/module/src/lib/core.js +11 -6
- package/dist/module/src/lib/index.js +12 -4
- package/dist/module/src/lib/pmProxy.js +1 -1
- package/dist/module/src/mothership/index.js +11 -0
- package/dist/module/src/mothership/test.js +60 -0
- package/dist/module/src/utils/queue.js +32 -0
- package/dist/module/src/utils.js +34 -5
- package/dist/module/testeranto.config.js +77 -36
- package/dist/module/tsconfig.module.tsbuildinfo +1 -1
- package/dist/prebuild/Project.js +3288 -385
- package/dist/prebuild/ReportClient.js +0 -24638
- package/dist/prebuild/TestReport.js +14 -8
- package/dist/prebuild/build.mjs +159 -15
- package/dist/prebuild/init-docs.mjs +2 -5
- package/dist/prebuild/mothership/index.mjs +17 -0
- package/dist/prebuild/run.mjs +696 -404
- package/dist/types/src/NodeSidecar.d.ts +6 -0
- package/dist/types/src/PM/PM_WithEslintAndTsc.d.ts +23 -0
- package/dist/types/src/PM/__tests__/nodeSidecar.testeranto.d.ts +20 -0
- package/dist/types/src/PM/__tests__/pureSidecar.testeranto.d.ts +20 -0
- package/dist/types/src/PM/__tests__/webSidecar.testeranto.d.ts +20 -0
- package/dist/types/src/PM/base.d.ts +6 -5
- package/dist/types/src/PM/index.d.ts +5 -3
- package/dist/types/src/PM/main.d.ts +23 -26
- package/dist/types/src/PM/node.d.ts +8 -6
- package/dist/types/src/PM/nodeSidecar.d.ts +13 -0
- package/dist/types/src/PM/pure.d.ts +4 -3
- package/dist/types/src/PM/pureSidecar.d.ts +11 -0
- package/dist/types/src/PM/sidecar.d.ts +8 -0
- package/dist/types/src/PM/web.d.ts +18 -8
- package/dist/types/src/PM/webSidecar.d.ts +11 -0
- package/dist/types/src/PureSidecar.d.ts +8 -0
- package/dist/types/src/Types.d.ts +109 -43
- package/dist/types/src/WebSidecar.d.ts +8 -0
- package/dist/types/src/esbuildConfigs/consoleDetectorPlugin.d.ts +2 -0
- package/dist/types/src/lib/Sidecar.d.ts +5 -0
- package/dist/types/src/lib/abstractBase.d.ts +6 -6
- package/dist/types/src/lib/classBuilder.d.ts +7 -1
- package/dist/types/src/lib/core.d.ts +7 -1
- package/dist/types/src/lib/index.d.ts +10 -4
- package/dist/types/src/lib/types.d.ts +12 -2
- package/dist/types/src/mothership/index.d.ts +2 -0
- package/dist/types/src/mothership/test.d.ts +21 -0
- package/dist/types/src/utils/queue.d.ts +11 -0
- package/dist/types/src/utils.d.ts +4 -7
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +19 -105
- package/src/Init.ts +6 -5
- package/src/Node.ts +7 -4
- package/src/NodeSidecar.ts +22 -0
- package/src/PM/PM_WithEslintAndTsc.ts +284 -0
- package/src/PM/__tests__/nodeSidecar.testeranto.ts +173 -0
- package/src/PM/__tests__/pureSidecar.testeranto.ts +157 -0
- package/src/PM/__tests__/webSidecar.testeranto.ts +157 -0
- package/src/PM/base.ts +38 -17
- package/src/PM/index.ts +9 -3
- package/src/PM/main.ts +617 -578
- package/src/PM/node.ts +67 -23
- package/src/PM/nodeSidecar.ts +73 -0
- package/src/PM/pure.ts +68 -58
- package/src/PM/pureSidecar.ts +56 -0
- package/src/PM/sidecar.ts +48 -0
- package/src/PM/web.ts +42 -11
- package/src/PM/webSidecar.ts +55 -0
- package/src/Project.tsx +312 -109
- package/src/Pure.ts +0 -2
- package/src/PureSidecar.ts +14 -0
- package/src/ReportClient.tsx +164 -170
- package/src/SP__Polygon.test.ts +13 -0
- package/src/TestReport.tsx +77 -6
- package/src/Types.ts +227 -122
- package/src/WebSidecar.ts +14 -0
- package/src/build.ts +101 -14
- package/src/defaultConfig.ts +1 -0
- package/src/esbuildConfigs/README.md +46 -0
- package/src/esbuildConfigs/consoleDetectorPlugin.ts +29 -0
- package/src/esbuildConfigs/pure.ts +22 -1
- package/src/esbuildConfigs/web.ts +13 -0
- package/src/lib/Sidecar.ts +6 -0
- package/src/lib/TEST_ADAPTER_RENAME.md +48 -0
- package/src/lib/abstractBase.ts +12 -9
- package/src/lib/basebuilder.ts +5 -4
- package/src/lib/classBuilder.ts +15 -18
- package/src/lib/core.ts +24 -11
- package/src/lib/index.ts +38 -18
- package/src/lib/pmProxy.ts +3 -1
- package/src/lib/types.ts +15 -2
- package/src/mothership/index.ts +15 -0
- package/src/mothership/test.ts +137 -0
- package/src/run.ts +0 -1
- package/src/utils/queue.ts +41 -0
- package/src/utils.ts +41 -15
- package/testeranto/bundles/node/mothership/chunk-PG6KUKNP.mjs +44 -0
- package/testeranto/bundles/node/mothership/chunk-V2EQEXU2.mjs +1032 -0
- package/testeranto/bundles/node/mothership/metafile.json +389 -0
- package/testeranto/bundles/node/mothership/src/PM/__tests__/nodeSidecar.testeranto.mjs +1219 -0
- package/testeranto/bundles/node/mothership/src/PM/__tests__/pureSidecar.testeranto.mjs +156 -0
- package/testeranto/bundles/node/mothership/src/PM/__tests__/sidecar.testeranto.mjs +1199 -0
- package/testeranto/bundles/node/mothership/src/PM/__tests__/webSidecar.testeranto.mjs +156 -0
- package/testeranto/bundles/node/mothership/src/mothership/test.mjs +24411 -0
- package/testeranto/bundles/pure/mothership/metafile.json +8 -0
- package/testeranto/bundles/web/mothership/metafile.json +8 -0
- package/testeranto/index.html +4 -4
- package/testeranto/reports/mothership/config.json +25 -0
- package/testeranto/reports/{redux → mothership}/index.html +8 -8
- package/testeranto/reports/mothership/src/PM/__tests__/nodeSidecar.testeranto/node/console_log.txt +0 -0
- package/testeranto/reports/mothership/src/PM/__tests__/nodeSidecar.testeranto/node/index.html +20 -0
- package/testeranto/reports/mothership/src/PM/__tests__/nodeSidecar.testeranto/node/lint_errors.json +1564 -0
- package/testeranto/reports/mothership/src/PM/__tests__/nodeSidecar.testeranto/node/log.txt +0 -0
- package/testeranto/reports/mothership/src/PM/__tests__/nodeSidecar.testeranto/node/prompt.txt +22 -0
- package/testeranto/reports/mothership/src/PM/__tests__/nodeSidecar.testeranto/node/type_errors.txt +35 -0
- package/testeranto/reports/mothership/src/PM/__tests__/pureSidecar.testeranto/node/index.html +20 -0
- package/testeranto/reports/mothership/src/PM/__tests__/pureSidecar.testeranto/node/lint_errors.json +80 -0
- package/testeranto/reports/mothership/src/PM/__tests__/pureSidecar.testeranto/node/prompt.txt +12 -0
- package/testeranto/reports/mothership/src/PM/__tests__/pureSidecar.testeranto/node/type_errors.txt +26 -0
- package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/bdd_errors.txt +1 -0
- package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/console_log.txt +0 -0
- package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/index.html +20 -0
- package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/lint_errors.json +1564 -0
- package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/log.txt +0 -0
- package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/prompt.txt +22 -0
- package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/tests.json +56 -0
- package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/type_errors.txt +29 -0
- package/testeranto/reports/mothership/src/PM/__tests__/webSidecar.testeranto/node/index.html +20 -0
- package/testeranto/reports/mothership/src/PM/__tests__/webSidecar.testeranto/node/lint_errors.json +80 -0
- package/testeranto/reports/mothership/src/PM/__tests__/webSidecar.testeranto/node/prompt.txt +12 -0
- package/testeranto/reports/mothership/src/PM/__tests__/webSidecar.testeranto/node/type_errors.txt +26 -0
- package/testeranto/reports/mothership/src/mothership/test/node/bdd_errors.txt +1 -0
- package/testeranto/reports/mothership/src/mothership/test/node/console_log.txt +4 -0
- package/testeranto/reports/mothership/src/mothership/test/node/index.html +20 -0
- package/testeranto/reports/mothership/src/mothership/test/node/lint_errors.json +1 -0
- package/testeranto/reports/mothership/src/mothership/test/node/log.txt +0 -0
- package/testeranto/reports/mothership/src/mothership/test/node/prompt.txt +12 -0
- package/testeranto/reports/mothership/src/mothership/test/node/tests.json +24 -0
- package/testeranto/reports/mothership/src/mothership/test/node/type_errors.txt +18 -0
- package/testeranto/reports/mothership/summary.json +9 -0
- package/testeranto.config.ts +82 -44
- package/tsc.log +78 -81
- package/dist/common/src/SubPackages/react/component/index.js +0 -20
- package/dist/common/src/SubPackages/react/component/node.js +0 -10
- package/dist/common/src/SubPackages/react/component/pure.js +0 -10
- package/dist/common/src/SubPackages/react/component/web.js +0 -10
- package/dist/common/src/SubPackages/react/jsx/index.js +0 -64
- package/dist/common/src/SubPackages/react/jsx/node.js +0 -10
- package/dist/common/src/SubPackages/react/jsx/pure.js +0 -10
- package/dist/common/src/SubPackages/react/jsx/web.js +0 -10
- package/dist/common/src/SubPackages/react-dom/component/dynamic.js +0 -61
- package/dist/common/src/SubPackages/react-dom/component/node.js +0 -10
- package/dist/common/src/SubPackages/react-dom/component/pure.js +0 -10
- package/dist/common/src/SubPackages/react-dom/component/static.js +0 -26
- package/dist/common/src/SubPackages/react-dom/component/web.js +0 -16
- package/dist/common/src/SubPackages/react-dom/jsx/dynamic.js +0 -31
- package/dist/common/src/SubPackages/react-dom/jsx/node.js +0 -10
- package/dist/common/src/SubPackages/react-dom/jsx/pure.js +0 -10
- package/dist/common/src/SubPackages/react-dom/jsx/static.js +0 -59
- package/dist/common/src/SubPackages/react-dom/jsx/web.js +0 -16
- package/dist/common/src/SubPackages/react-test-renderer/MemoExoticComponent/node.js +0 -54
- package/dist/common/src/SubPackages/react-test-renderer/component/index.js +0 -15
- package/dist/common/src/SubPackages/react-test-renderer/component/interface.js +0 -70
- package/dist/common/src/SubPackages/react-test-renderer/component/node.js +0 -8
- package/dist/common/src/SubPackages/react-test-renderer/component/pure.js +0 -8
- package/dist/common/src/SubPackages/react-test-renderer/component/test/implementation.js +0 -57
- package/dist/common/src/SubPackages/react-test-renderer/component/test/node.js +0 -10
- package/dist/common/src/SubPackages/react-test-renderer/component/test/pure.js +0 -10
- package/dist/common/src/SubPackages/react-test-renderer/component/test/web.js +0 -10
- package/dist/common/src/SubPackages/react-test-renderer/component/web.js +0 -8
- package/dist/common/src/SubPackages/react-test-renderer/fc/node.js +0 -60
- package/dist/common/src/SubPackages/react-test-renderer/fc/web.js +0 -60
- package/dist/common/src/SubPackages/react-test-renderer/jsx/index.js +0 -67
- package/dist/common/src/SubPackages/react-test-renderer/jsx/node.js +0 -10
- package/dist/common/src/SubPackages/react-test-renderer/jsx/pure.js +0 -10
- package/dist/common/src/SubPackages/react-test-renderer/jsx/web.js +0 -10
- package/dist/common/src/SubPackages/react-test-renderer/jsx-promised/index.js +0 -52
- package/dist/common/src/SubPackages/react-test-renderer/jsx-promised/node.js +0 -10
- package/dist/common/src/SubPackages/react-test-renderer/jsx-promised/web.js +0 -10
- package/dist/common/src/examples/react/component/index.js +0 -33
- package/dist/common/src/examples/react/component/test.js +0 -36
- package/dist/module/src/SubPackages/react/component/index.js +0 -13
- package/dist/module/src/SubPackages/react/component/node.js +0 -5
- package/dist/module/src/SubPackages/react/component/pure.js +0 -5
- package/dist/module/src/SubPackages/react/component/web.js +0 -5
- package/dist/module/src/SubPackages/react/jsx/index.js +0 -58
- package/dist/module/src/SubPackages/react/jsx/node.js +0 -5
- package/dist/module/src/SubPackages/react/jsx/pure.js +0 -5
- package/dist/module/src/SubPackages/react/jsx/web.js +0 -5
- package/dist/module/src/SubPackages/react-dom/component/dynamic.js +0 -54
- package/dist/module/src/SubPackages/react-dom/component/node.js +0 -5
- package/dist/module/src/SubPackages/react-dom/component/pure.js +0 -5
- package/dist/module/src/SubPackages/react-dom/component/static.js +0 -22
- package/dist/module/src/SubPackages/react-dom/component/web.js +0 -11
- package/dist/module/src/SubPackages/react-dom/jsx/dynamic.js +0 -27
- package/dist/module/src/SubPackages/react-dom/jsx/node.js +0 -5
- package/dist/module/src/SubPackages/react-dom/jsx/pure.js +0 -5
- package/dist/module/src/SubPackages/react-dom/jsx/static.js +0 -53
- package/dist/module/src/SubPackages/react-dom/jsx/web.js +0 -11
- package/dist/module/src/SubPackages/react-test-renderer/MemoExoticComponent/node.js +0 -16
- package/dist/module/src/SubPackages/react-test-renderer/component/index.js +0 -14
- package/dist/module/src/SubPackages/react-test-renderer/component/interface.js +0 -31
- package/dist/module/src/SubPackages/react-test-renderer/component/node.js +0 -3
- package/dist/module/src/SubPackages/react-test-renderer/component/pure.js +0 -3
- package/dist/module/src/SubPackages/react-test-renderer/component/test/implementation.js +0 -54
- package/dist/module/src/SubPackages/react-test-renderer/component/test/node.js +0 -5
- package/dist/module/src/SubPackages/react-test-renderer/component/test/pure.js +0 -5
- package/dist/module/src/SubPackages/react-test-renderer/component/test/web.js +0 -5
- package/dist/module/src/SubPackages/react-test-renderer/component/web.js +0 -3
- package/dist/module/src/SubPackages/react-test-renderer/fc/node.js +0 -22
- package/dist/module/src/SubPackages/react-test-renderer/fc/web.js +0 -22
- package/dist/module/src/SubPackages/react-test-renderer/jsx/index.js +0 -28
- package/dist/module/src/SubPackages/react-test-renderer/jsx/node.js +0 -5
- package/dist/module/src/SubPackages/react-test-renderer/jsx/pure.js +0 -5
- package/dist/module/src/SubPackages/react-test-renderer/jsx/web.js +0 -5
- package/dist/module/src/SubPackages/react-test-renderer/jsx-promised/index.js +0 -16
- package/dist/module/src/SubPackages/react-test-renderer/jsx-promised/node.js +0 -5
- package/dist/module/src/SubPackages/react-test-renderer/jsx-promised/web.js +0 -5
- package/dist/module/src/examples/react/component/index.js +0 -26
- package/dist/module/src/examples/react/component/test.js +0 -32
- package/dist/prebuild/ReportClient.css +0 -11342
- package/dist/tsconfig.tsbuildinfo +0 -1
- package/dist/types/src/SubPackages/react/component/index.d.ts +0 -4
- package/dist/types/src/SubPackages/react/component/node.d.ts +0 -4
- package/dist/types/src/SubPackages/react/component/pure.d.ts +0 -4
- package/dist/types/src/SubPackages/react/component/web.d.ts +0 -4
- package/dist/types/src/SubPackages/react/jsx/index.d.ts +0 -5
- package/dist/types/src/SubPackages/react/jsx/node.d.ts +0 -4
- package/dist/types/src/SubPackages/react/jsx/pure.d.ts +0 -4
- package/dist/types/src/SubPackages/react/jsx/web.d.ts +0 -4
- package/dist/types/src/SubPackages/react-dom/component/dynamic.d.ts +0 -20
- package/dist/types/src/SubPackages/react-dom/component/node.d.ts +0 -4
- package/dist/types/src/SubPackages/react-dom/component/pure.d.ts +0 -4
- package/dist/types/src/SubPackages/react-dom/component/static.d.ts +0 -9
- package/dist/types/src/SubPackages/react-dom/component/web.d.ts +0 -4
- package/dist/types/src/SubPackages/react-dom/jsx/dynamic.d.ts +0 -5
- package/dist/types/src/SubPackages/react-dom/jsx/index.d.ts +0 -6
- package/dist/types/src/SubPackages/react-dom/jsx/node.d.ts +0 -4
- package/dist/types/src/SubPackages/react-dom/jsx/pure.d.ts +0 -4
- package/dist/types/src/SubPackages/react-dom/jsx/static.d.ts +0 -5
- package/dist/types/src/SubPackages/react-dom/jsx/web.d.ts +0 -5
- package/dist/types/src/SubPackages/react-test-renderer/MemoExoticComponent/node.d.ts +0 -6
- package/dist/types/src/SubPackages/react-test-renderer/component/index.d.ts +0 -5
- package/dist/types/src/SubPackages/react-test-renderer/component/interface.d.ts +0 -3
- package/dist/types/src/SubPackages/react-test-renderer/component/node.d.ts +0 -4
- package/dist/types/src/SubPackages/react-test-renderer/component/pure.d.ts +0 -4
- package/dist/types/src/SubPackages/react-test-renderer/component/test/implementation.d.ts +0 -4
- package/dist/types/src/SubPackages/react-test-renderer/component/test/node.d.ts +0 -3
- package/dist/types/src/SubPackages/react-test-renderer/component/test/pure.d.ts +0 -4
- package/dist/types/src/SubPackages/react-test-renderer/component/test/web.d.ts +0 -3
- package/dist/types/src/SubPackages/react-test-renderer/component/web.d.ts +0 -4
- package/dist/types/src/SubPackages/react-test-renderer/fc/node.d.ts +0 -8
- package/dist/types/src/SubPackages/react-test-renderer/fc/web.d.ts +0 -9
- package/dist/types/src/SubPackages/react-test-renderer/jsx/index.d.ts +0 -11
- package/dist/types/src/SubPackages/react-test-renderer/jsx/node.d.ts +0 -4
- package/dist/types/src/SubPackages/react-test-renderer/jsx/pure.d.ts +0 -4
- package/dist/types/src/SubPackages/react-test-renderer/jsx/web.d.ts +0 -4
- package/dist/types/src/SubPackages/react-test-renderer/jsx-promised/index.d.ts +0 -15
- package/dist/types/src/SubPackages/react-test-renderer/jsx-promised/node.d.ts +0 -5
- package/dist/types/src/SubPackages/react-test-renderer/jsx-promised/web.d.ts +0 -5
- package/dist/types/src/examples/react/component/index.d.ts +0 -13
- package/dist/types/src/examples/react/component/test.d.ts +0 -17
- package/src/SubPackages/react/component/index.ts +0 -28
- package/src/SubPackages/react/component/node.ts +0 -17
- package/src/SubPackages/react/component/pure.ts +0 -17
- package/src/SubPackages/react/component/web.ts +0 -17
- package/src/SubPackages/react/jsx/index.ts +0 -75
- package/src/SubPackages/react/jsx/node.ts +0 -23
- package/src/SubPackages/react/jsx/pure.ts +0 -23
- package/src/SubPackages/react/jsx/web.ts +0 -24
- package/src/SubPackages/react-dom/component/dynamic.ts +0 -107
- package/src/SubPackages/react-dom/component/node.ts +0 -17
- package/src/SubPackages/react-dom/component/pure.ts +0 -17
- package/src/SubPackages/react-dom/component/static.ts +0 -41
- package/src/SubPackages/react-dom/component/web.ts +0 -32
- package/src/SubPackages/react-dom/jsx/dynamic.ts +0 -46
- package/src/SubPackages/react-dom/jsx/index.ts +0 -6
- package/src/SubPackages/react-dom/jsx/node.ts +0 -18
- package/src/SubPackages/react-dom/jsx/pure.ts +0 -18
- package/src/SubPackages/react-dom/jsx/static.ts +0 -87
- package/src/SubPackages/react-dom/jsx/web.ts +0 -26
- package/src/SubPackages/react-test-renderer/MemoExoticComponent/node.ts +0 -54
- package/src/SubPackages/react-test-renderer/component/index.ts +0 -32
- package/src/SubPackages/react-test-renderer/component/interface.ts +0 -43
- package/src/SubPackages/react-test-renderer/component/node.ts +0 -18
- package/src/SubPackages/react-test-renderer/component/pure.ts +0 -18
- package/src/SubPackages/react-test-renderer/component/test/implementation.ts +0 -63
- package/src/SubPackages/react-test-renderer/component/test/node.ts +0 -14
- package/src/SubPackages/react-test-renderer/component/test/pure.ts +0 -14
- package/src/SubPackages/react-test-renderer/component/test/web.ts +0 -14
- package/src/SubPackages/react-test-renderer/component/web.ts +0 -18
- package/src/SubPackages/react-test-renderer/fc/node.ts +0 -83
- package/src/SubPackages/react-test-renderer/fc/web.ts +0 -80
- package/src/SubPackages/react-test-renderer/jsx/index.ts +0 -61
- package/src/SubPackages/react-test-renderer/jsx/node.ts +0 -31
- package/src/SubPackages/react-test-renderer/jsx/pure.ts +0 -31
- package/src/SubPackages/react-test-renderer/jsx/web.ts +0 -32
- package/src/SubPackages/react-test-renderer/jsx-promised/index.ts +0 -73
- package/src/SubPackages/react-test-renderer/jsx-promised/node.ts +0 -36
- package/src/SubPackages/react-test-renderer/jsx-promised/web.ts +0 -36
- package/src/examples/react/component/index.tsx +0 -35
- package/src/examples/react/component/test.ts +0 -83
- package/testeranto/bundles/node/redux/metafile.json +0 -559
- package/testeranto/bundles/pure/redux/metafile.json +0 -554
- package/testeranto/bundles/web/redux/metafile.json +0 -504
- package/testeranto/bundles/web/redux/test/web.html +0 -19
- package/testeranto/reports/redux/config.json +0 -38
- package/testeranto/reports/redux/summary.json +0 -20
- /package/dist/{module/src/SubPackages/react-dom/jsx/index.js → types/src/SP__Polygon.test.d.ts} +0 -0
package/.aider.input.history
CHANGED
|
@@ -94,3 +94,337 @@
|
|
|
94
94
|
|
|
95
95
|
# 2025-04-08 13:13:35.658911
|
|
96
96
|
+a
|
|
97
|
+
|
|
98
|
+
# 2025-05-03 07:07:16.736774
|
|
99
|
+
+y
|
|
100
|
+
|
|
101
|
+
# 2025-05-03 07:08:42.358458
|
|
102
|
+
+a
|
|
103
|
+
|
|
104
|
+
# 2025-05-03 07:10:01.569260
|
|
105
|
+
+quit
|
|
106
|
+
|
|
107
|
+
# 2025-07-10 02:45:49.032020
|
|
108
|
+
+/Users/adam/Code/testeranto/dist/prebuild/run.mjs:614
|
|
109
|
+
+ this.summary[src].typeErrors = "?";
|
|
110
|
+
+ ^
|
|
111
|
+
+
|
|
112
|
+
+
|
|
113
|
+
+TypeError: Cannot set properties of undefined (setting 'typeErrors')
|
|
114
|
+
+ at PM_Main.PM_Main.typeCheckIsRunning (/Users/adam/Code/testeranto/dist/prebuild/run.mjs:614:36)
|
|
115
|
+
+ at PM_Main.PM_Main.tscCheck (/Users/adam/Code/testeranto/dist/prebuild/run.mjs:472:12)
|
|
116
|
+
+ at <anonymous> (/Users/adam/Code/testeranto/dist/prebuild/run.mjs:1554:16)
|
|
117
|
+
|
|
118
|
+
# 2025-07-10 02:46:08.605435
|
|
119
|
+
+
|
|
120
|
+
+ this.summary[src].typeErrors = "?";
|
|
121
|
+
+ ^
|
|
122
|
+
+
|
|
123
|
+
+
|
|
124
|
+
+TypeError: Cannot set properties of undefined (setting 'typeErrors')
|
|
125
|
+
+ at PM_Main.PM_Main.typeCheckIsRunning (/Users/adam/Code/testeranto/dist/prebuild/run.mjs:614:36)
|
|
126
|
+
+ at PM_Main.PM_Main.tscCheck (/Users/adam/Code/testeranto/dist/prebuild/run.mjs:472:12)
|
|
127
|
+
+ at <anonymous> (/Users/adam/Code/testeranto/dist/prebuild/run.mjs:1554:16)
|
|
128
|
+
|
|
129
|
+
# 2025-07-10 02:46:33.871641
|
|
130
|
+
+d
|
|
131
|
+
|
|
132
|
+
# 2025-07-10 02:46:40.486248
|
|
133
|
+
+a
|
|
134
|
+
|
|
135
|
+
# 2025-07-10 02:47:11.734632
|
|
136
|
+
+y
|
|
137
|
+
|
|
138
|
+
# 2025-07-10 02:50:26.670181
|
|
139
|
+
+Retrieving /Users/adam/Code/spacetrash_v8/tsconfig.json
|
|
140
|
+
+error TS18003: No inputs were found in config file '/Users/adam/Code/spacetrash_v8/tsconfig.json'. Specified 'include' paths were '[]' and 'exclude' paths were '["/Users/adam/Code/spacetrash_v8/testeranto/reports/rectangle/node_modules/pixi.js/lib/rendering/renderers/gl/WebGLRenderer/web/type_errors.txt"]'.
|
|
141
|
+
+
|
|
142
|
+
+eslint < ./node_modules/pixi.js/lib/rendering/renderers/gl/WebGLRenderer.mjs
|
|
143
|
+
+node:fs:593
|
|
144
|
+
+ handleErrorFromBinding(ctx);
|
|
145
|
+
+ ^
|
|
146
|
+
+
|
|
147
|
+
+Error: ENOENT: no such file or directory, open 'testeranto/reports/rectangle/node_modules/pixi.js/lib/environment-browser/browserAll/web/type_errors.txt'
|
|
148
|
+
+ at Object.openSync (node:fs:593:3)
|
|
149
|
+
+ at Object.writeFileSync (node:fs:2325:35)
|
|
150
|
+
+ at PM_Main.PM_Main.tscCheck (/Users/adam/Code/testeranto/dist/prebuild/run.mjs:511:11)
|
|
151
|
+
|
|
152
|
+
# 2025-07-10 03:01:44.875560
|
|
153
|
+
+testeranto is trying to test files which are not test files. In this log, only ./src/spacetrash/game/7-WithLoad.test.ts belongs.
|
|
154
|
+
+
|
|
155
|
+
+checkForShutdown
|
|
156
|
+
+🕕 runTimeError ./node_modules/pixi.js/lib/environment-browser/browserAll.mjs
|
|
157
|
+
+🕕 runTimeError ./node_modules/pixi.js/lib/environment-webworker/webworkerAll.mjs
|
|
158
|
+
+🕕 runTimeError ./node_modules/pixi.js/lib/rendering/renderers/gpu/WebGPURenderer.mjs
|
|
159
|
+
+🕕 runTimeError ./node_modules/pixi.js/lib/rendering/renderers/gl/WebGLRenderer.mjs
|
|
160
|
+
+🕕 staticErrors ./src/spacetrash/game/7-WithLoad.test.ts
|
|
161
|
+
+🕕 staticErrors ./node_modules/pixi.js/lib/environment-browser/browserAll.mjs
|
|
162
|
+
+🕕 staticErrors ./node_modules/pixi.js/lib/environment-webworker/webworkerAll.mjs
|
|
163
|
+
+🕕 staticErrors ./node_modules/pixi.js/lib/rendering/renderers/gpu/WebGPURenderer.mjs
|
|
164
|
+
+🕕 staticErrors ./node_modules/pixi.js/lib/rendering/renderers/gl/WebGLRenderer.mjs
|
|
165
|
+
+Shutting down forcefully...
|
|
166
|
+
|
|
167
|
+
# 2025-07-10 03:05:11.303413
|
|
168
|
+
+that is not the right solution. Observe
|
|
169
|
+
+
|
|
170
|
+
+Object.keys(this.summary).forEach((k) => {
|
|
171
|
+
+ if (this.summary[k].staticErrors === "?") {
|
|
172
|
+
+ console.log(ansiC.blue(ansiC.inverse(`🕕 staticErrors ${k}`)));
|
|
173
|
+
+ inflight = true;
|
|
174
|
+
+ }
|
|
175
|
+
+ });
|
|
176
|
+
+
|
|
177
|
+
+`this.summary` should only contain test files. It is not suffecient to merely filter out non-test files. We need to ensure that these non-test files never make it into this.summary
|
|
178
|
+
|
|
179
|
+
# 2025-07-10 11:06:40.056051
|
|
180
|
+
+/add README.md
|
|
181
|
+
|
|
182
|
+
# 2025-07-10 11:07:07.982914
|
|
183
|
+
+take a moment to understand the README.md and then tell me if you understand the purpose of this project
|
|
184
|
+
|
|
185
|
+
# 2025-07-10 11:07:53.586800
|
|
186
|
+
+yes
|
|
187
|
+
|
|
188
|
+
# 2025-07-10 11:10:11.586347
|
|
189
|
+
+/add src/Types.ts
|
|
190
|
+
|
|
191
|
+
# 2025-07-10 11:10:28.723687
|
|
192
|
+
+take a moment to understand these types and tell me what you think
|
|
193
|
+
|
|
194
|
+
# 2025-07-10 11:12:25.549168
|
|
195
|
+
+2
|
|
196
|
+
|
|
197
|
+
# 2025-07-10 11:17:16.224510
|
|
198
|
+
+Breaking down complex types into smaller units
|
|
199
|
+
|
|
200
|
+
# 2025-07-10 11:30:08.397791
|
|
201
|
+
+there are type errors in tsc.log. can you fix them
|
|
202
|
+
|
|
203
|
+
# 2025-07-10 11:30:09.846098
|
|
204
|
+
+y
|
|
205
|
+
|
|
206
|
+
# 2025-07-10 11:31:52.014928
|
|
207
|
+
+a
|
|
208
|
+
|
|
209
|
+
# 2025-07-10 11:36:00.833912
|
|
210
|
+
+y
|
|
211
|
+
|
|
212
|
+
# 2025-07-10 11:52:57.050470
|
|
213
|
+
+Testeranto is a difficult project for most people to understand, especially the complex types. what do you think would help developers understand testeranto and convince them to adopt it?
|
|
214
|
+
|
|
215
|
+
# 2025-07-10 11:54:06.244899
|
|
216
|
+
+n
|
|
217
|
+
|
|
218
|
+
# 2025-07-10 11:54:27.414608
|
|
219
|
+
+Add visual diagrams of the architecture flow. Implement as mermaid diagrams and put it in the readme
|
|
220
|
+
|
|
221
|
+
# 2025-07-10 12:01:18.696336
|
|
222
|
+
+replace the block Runtime Comparison with a markdown table. Put runtimes vertically and in another column, describe when this runtime would be appropriate. Node allows for full io and built-in node modules. the browser allows access to the dom and the ability to record screenshots. the pure runtime imports the test dynamically into the main thread, so it runs within node, but without access to io and without the builtin node modules (like fs and crypto)
|
|
223
|
+
|
|
224
|
+
# 2025-07-10 12:02:04.998331
|
|
225
|
+
+n
|
|
226
|
+
|
|
227
|
+
# 2025-07-10 12:03:53.847256
|
|
228
|
+
+you have given an incorrect instruction for running the tests. The correct way to the run the tests is to "yarn t-build YOUR_TESTS dev" in one tab and "yarn t-run YOUR_TESTS dev" in another
|
|
229
|
+
|
|
230
|
+
# 2025-07-10 12:05:21.110873
|
|
231
|
+
+update the other example CLI commands. The correct way to initialize the project is "yarn t-init"
|
|
232
|
+
|
|
233
|
+
# 2025-07-10 12:07:50.236426
|
|
234
|
+
+combine the sections "Runtime Comparison" and
|
|
235
|
+
|
|
236
|
+
# 2025-07-10 12:08:24.060343
|
|
237
|
+
+in the README, combing the sections "Platforms" and "Runtime Comparison" into a single section
|
|
238
|
+
|
|
239
|
+
# 2025-07-10 12:08:39.736436
|
|
240
|
+
+y
|
|
241
|
+
|
|
242
|
+
# 2025-07-10 12:09:23.736390
|
|
243
|
+
+n
|
|
244
|
+
|
|
245
|
+
# 2025-07-10 12:12:21.902609
|
|
246
|
+
+in the section "Core Concepts", do your best to illuminate these abstract concepts. I want to be sure that you understand the type system and I want it to be clear to humans as well.
|
|
247
|
+
|
|
248
|
+
# 2025-07-10 12:13:57.226053
|
|
249
|
+
+lets see some more mermaid diagrams
|
|
250
|
+
|
|
251
|
+
# 2025-07-10 12:22:36.680799
|
|
252
|
+
+I have made some changes to that file. But I want you to make a change: the pattern for cli commands is this "yarn t-build YOUR_TESTS dev|once" and "yarn t-run YOUR_TESTS dev|once"
|
|
253
|
+
|
|
254
|
+
# 2025-07-10 12:27:36.176488
|
|
255
|
+
+I want you to combine the 2 mermaid diagrams "Type Safety Benefits" and "Type Safety Benefits". visually show how a testernanto test is the combination of a specification, an implementation, and an interface. Show how t-build builds tests continuously and t-run runs those built tests as they change. When the tests are complete, the aider implemts fixes based on the reports generated by the tests. Emphasize that this a rapid development loop.
|
|
256
|
+
|
|
257
|
+
# 2025-07-10 12:29:34.636618
|
|
258
|
+
+those colors are terrible. Can you choose a pleasing color scheme? You should google Solarized-Dark for inspiration
|
|
259
|
+
|
|
260
|
+
# 2025-07-10 12:34:33.789733
|
|
261
|
+
+in the section "Core Test Flow" alter the diagram to empasize that testeranto, as a project, has 4 main components- 1) the Platform (this part looks good but remove the labels on the arrows 2) a test builder 3) a test runner and 4) integration with aider. In the system, visually emphasize the point that a testeranto TEST (not the project, but an implemented test) has 3 major components- 1) specification 2) implementation and 3) interface
|
|
262
|
+
|
|
263
|
+
# 2025-07-10 12:38:21.306141
|
|
264
|
+
+the layout is not good, try to arrange it in a more pleasing way. try to emphasize that the test runner, the test build and the ai integration are 3 main pillars of the project. Group the Test Components under Test Builder. remove labels on the arrow edges. Remove the header Core Test Flow
|
|
265
|
+
|
|
266
|
+
# 2025-07-10 12:46:22.462010
|
|
267
|
+
+in the section Development Workflow, alter the diagram: emphasize that t-build produces builds of tests, not type errors. t-run runs 3 kinds of checks: 1) BDD tests 2) eslint static analysis and 3) TS type checking. Emphasize that t-run produces reports for all 3 of these checks. Emphasize t-run creates a prompt, which describes the BDD failures, eslint violations and ts type problems, and the files which were changed. Emphasize that Aider uses that prompt to fix the BDD tests, eslint violations and type problems. Emphasize that aider can update the subject of the test, as well as the test itself- the interface, the implementation and the specification.
|
|
268
|
+
|
|
269
|
+
# 2025-07-10 12:49:24.151179
|
|
270
|
+
+I accidentally closed that file without saving. Would you repeat only the very last change?
|
|
271
|
+
|
|
272
|
+
# 2025-07-10 12:54:18.858216
|
|
273
|
+
+remove the block "Test Subject" and group the 3 kinds of tests under t-run, replacing Comprhensive Reports. For the Developer Worklfow, use Solarized Dark and for Testeranto System, use solarized-light. Remove the Test Subject block. Add a human actor to the developer workflow, showing how the human and aider both collaborate to write code.
|
|
274
|
+
|
|
275
|
+
# 2025-07-10 12:57:25.680769
|
|
276
|
+
+Make the developer Workflow and Testeranto Sytem blocks the same height. Arrange TesterantoSystem to the right of Developer Workflow. Change the background colors becuase the light labels do not stand out visually. Make sure the forground elements stand out against the background color.
|
|
277
|
+
|
|
278
|
+
# 2025-07-10 12:59:51.287713
|
|
279
|
+
+colors are great but the arrangement is bad. Both sections should be the same size, emphasizing their complementary nature
|
|
280
|
+
|
|
281
|
+
# 2025-07-10 13:02:04.357122
|
|
282
|
+
+that arrangment is still pretty bad. Both blocks should be arranged as 2 matching columns OR two matching rows. Emphasis on symetry
|
|
283
|
+
|
|
284
|
+
# 2025-07-10 13:04:02.237629
|
|
285
|
+
+make Testeranto System the same height as Developer Workflow, while maintaing the arrangement of the 2. The side by side columns are good but both sections should be the same height
|
|
286
|
+
|
|
287
|
+
# 2025-07-10 13:06:27.139755
|
|
288
|
+
+move the Aider Fixes to the block Testeranto System and rename the label as just "aider". The developer should be able to edit the specifications ,interface andimplementation- the 3 DO NOT flow serially, they are parallel and they all feed into t-build
|
|
289
|
+
|
|
290
|
+
# 2025-07-10 13:10:25.457423
|
|
291
|
+
+give the aider block styling similar to the Developer block, but some other color, not the same shade, and give it some AI themed emojis to match- maybe a robot emoji? try to arrange the developer and aider blocks to the right in a complementary way. the arrows from aider ought to point to the 3 test constructs, not the developer.
|
|
292
|
+
|
|
293
|
+
# 2025-07-10 13:13:19.120797
|
|
294
|
+
+the arrangement is still really bad. Many arrows cross over each other. Arrange the AI assietant block to the right of Testeranto Sytem and aobve Developer workflow
|
|
295
|
+
|
|
296
|
+
# 2025-07-10 13:47:19.616308
|
|
297
|
+
+try again with that arrangement. Use the "block-beta" mermaid construct to achieve a 2 column layout
|
|
298
|
+
|
|
299
|
+
# 2025-07-10 15:25:25.643683
|
|
300
|
+
+n
|
|
301
|
+
|
|
302
|
+
# 2025-07-10 15:26:00.580813
|
|
303
|
+
+Now that you understand testeranto, i want you to apply what you have learned .Find a piece of untested in this repo and create a testeranto test for it.
|
|
304
|
+
|
|
305
|
+
# 2025-07-10 15:26:21.835491
|
|
306
|
+
+a
|
|
307
|
+
|
|
308
|
+
# 2025-07-10 15:27:59.242856
|
|
309
|
+
+no. I want you to make a test which uses the testeranto library. checkout src/mothership/index.ts for an example of such a test
|
|
310
|
+
|
|
311
|
+
# 2025-07-10 15:28:20.827812
|
|
312
|
+
+no. I want you to make a test which uses the testeranto library. checkout src/mothership/test.ts as an example
|
|
313
|
+
|
|
314
|
+
# 2025-07-10 15:28:23.085839
|
|
315
|
+
+y
|
|
316
|
+
|
|
317
|
+
# 2025-07-10 15:29:23.859436
|
|
318
|
+
+/run npm test src/PM/__tests__/sidecar.testeranto.ts
|
|
319
|
+
|
|
320
|
+
# 2025-07-10 15:29:23.859602
|
|
321
|
+
+/run npm test src/PM/__tests__/sidecar.testeranto.ts
|
|
322
|
+
|
|
323
|
+
# 2025-07-10 15:29:28.388744
|
|
324
|
+
+y
|
|
325
|
+
|
|
326
|
+
# 2025-07-10 15:35:23.426298
|
|
327
|
+
+n
|
|
328
|
+
|
|
329
|
+
# 2025-07-10 15:40:05.564046
|
|
330
|
+
+refactor that test to not use jest
|
|
331
|
+
|
|
332
|
+
# 2025-07-10 15:45:05.787416
|
|
333
|
+
+rename this file. It is a test of PM_Node_Sidecar and we have 2 other similar classes. Rename this file to distinguish it from the other 2, and then make testeranto tests for pureSidecar and webSidecar.
|
|
334
|
+
|
|
335
|
+
# 2025-07-10 15:46:44.594911
|
|
336
|
+
+y
|
|
337
|
+
|
|
338
|
+
# 2025-07-10 15:46:58.037569
|
|
339
|
+
+d
|
|
340
|
+
|
|
341
|
+
# 2025-07-10 15:48:04.572879
|
|
342
|
+
+rename sidecar.testeranto.ts to nodeSidecar.testeranto.ts. Be careful to avoid ambigous naming, we have many similar looking classes
|
|
343
|
+
|
|
344
|
+
# 2025-07-10 15:49:47.894714
|
|
345
|
+
+that change was not made. try again
|
|
346
|
+
|
|
347
|
+
# 2025-07-10 22:04:37.691018
|
|
348
|
+
+/add src/Types.ts
|
|
349
|
+
|
|
350
|
+
# 2025-07-10 22:05:22.781794
|
|
351
|
+
+these types are at the heart of testeranto, but it's hard to understand. Is there any way you can make them simpler?
|
|
352
|
+
|
|
353
|
+
# 2025-07-10 22:15:16.005627
|
|
354
|
+
+/add tsc.log
|
|
355
|
+
|
|
356
|
+
# 2025-07-10 22:15:23.114274
|
|
357
|
+
+can you fix these type errors?
|
|
358
|
+
|
|
359
|
+
# 2025-07-10 22:16:30.797602
|
|
360
|
+
+y
|
|
361
|
+
|
|
362
|
+
# 2025-07-10 22:16:39.424744
|
|
363
|
+
+a
|
|
364
|
+
|
|
365
|
+
# 2025-07-10 22:17:08.977359
|
|
366
|
+
+aa
|
|
367
|
+
|
|
368
|
+
# 2025-07-10 22:17:14.077236
|
|
369
|
+
+all
|
|
370
|
+
|
|
371
|
+
# 2025-07-10 22:18:05.628645
|
|
372
|
+
+y
|
|
373
|
+
|
|
374
|
+
# 2025-07-10 22:18:05.635279
|
|
375
|
+
+/run tsc --noEmit
|
|
376
|
+
|
|
377
|
+
# 2025-07-10 22:18:05.635455
|
|
378
|
+
+/run tsc --noEmit
|
|
379
|
+
|
|
380
|
+
# 2025-07-10 22:18:10.337977
|
|
381
|
+
+y
|
|
382
|
+
|
|
383
|
+
# 2025-07-10 22:19:53.268321
|
|
384
|
+
+test6 in SP__Polygon.test.ts is malformed. The arguements must be
|
|
385
|
+
|
|
386
|
+
# 2025-07-10 22:21:00.802410
|
|
387
|
+
+test6 in SP__Polygon.test.ts is malformed. The arguements must be 1) a list of features, as strings 2) a list of When clauses 3) a list of Then clauses 4) values passed to the Given. These clauses are provided as arguments. Make sure to use this pattern from now on
|
|
388
|
+
|
|
389
|
+
# 2025-07-10 22:21:43.072579
|
|
390
|
+
+y
|
|
391
|
+
|
|
392
|
+
# 2025-07-10 22:23:24.004017
|
|
393
|
+
+/run tsc --noEmit # to verify the fixes
|
|
394
|
+
|
|
395
|
+
# 2025-07-10 22:23:24.004474
|
|
396
|
+
+/run tsc --noEmit # to verify the fixes
|
|
397
|
+
|
|
398
|
+
# 2025-07-10 22:23:27.598174
|
|
399
|
+
+y
|
|
400
|
+
|
|
401
|
+
# 2025-07-10 22:25:25.318349
|
|
402
|
+
+n
|
|
403
|
+
|
|
404
|
+
# 2025-07-10 22:25:58.540718
|
|
405
|
+
+What do you think could improve the project Testeranto?
|
|
406
|
+
|
|
407
|
+
# 2025-07-10 22:26:27.029314
|
|
408
|
+
+a
|
|
409
|
+
|
|
410
|
+
# 2025-07-10 22:43:34.660385
|
|
411
|
+
+test8 in SP_polygon.test is still broken
|
|
412
|
+
|
|
413
|
+
# 2025-07-10 22:50:28.997973
|
|
414
|
+
+There are 3 fundemantal constructs that make up a testerranto test- a specification, and implementation and a interface. I don't like the word "interface" because it is too vague and also it is a js keyword. Given what you know about the codebase, what alternative name would you give this construct? It should be named for it's function as an intermediary between the-thing-being-tested and the bdd tests themseleves. It's function is to "wrap" you code with the right "hooks" so that the BDD tests can run against it.
|
|
415
|
+
|
|
416
|
+
# 2025-07-10 22:51:34.364622
|
|
417
|
+
+Can you show me evidence that "Test adapters" is a well known pattern in software engineering?
|
|
418
|
+
|
|
419
|
+
# 2025-07-10 22:53:37.866182
|
|
420
|
+
+not right now. Make a file that acts as a todo list and record your reasoning and observations there. We will fix this at a later time, as it will be quite a large change
|
|
421
|
+
|
|
422
|
+
# 2025-07-10 22:54:03.164963
|
|
423
|
+
+y
|
|
424
|
+
|
|
425
|
+
# 2025-07-10 23:10:05.259318
|
|
426
|
+
+new feature: an esbuild plugin that scans the contents of files for references to console, console.log, console.error etc. If it detects any attempt to acce
|
|
427
|
+
+. s IO, the esbuild plugin should throw a warning. Create this plugin in the folder src/esbuildConfigs and alongside it, a README file describing the plugin, and its reasoning. The reasoning is this: The Pure runtime does not allow access to IO. If a dev wants to use IO, they need to use the Node runtime instead. Under the Pure runtime, calls to console.log will not work.
|
|
428
|
+
|
|
429
|
+
# 2025-07-10 23:10:57.966247
|
|
430
|
+
+y
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|