testeranto 0.172.0 → 0.177.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/README.md +2 -4
- package/dist/common/src/PM/base.js +5 -1
- package/dist/common/src/PM/main.js +57 -54
- package/dist/common/src/PM/node.js +4 -1
- package/dist/common/src/PM/pure.js +4 -1
- package/dist/common/src/PM/web.js +6 -3
- package/dist/common/src/Pure.js +0 -4
- package/dist/common/src/Pure.test.js +1 -1
- package/dist/common/src/ReportServer.js +2 -126
- package/dist/common/src/ReportServer.test.ts/index.js +78 -0
- package/dist/common/src/ReportServerLib.js +141 -0
- package/dist/common/src/components/pure/ProjectPageView.test/implementation.js +1 -1
- package/dist/common/src/esbuildConfigs/node.js +1 -3
- package/dist/common/src/lib/BaseSuite.js +13 -11
- package/dist/common/src/lib/abstractBase.js +39 -40
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +10 -9
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.specification.js +7 -7
- package/dist/common/src/lib/basebuilder.js +13 -2
- package/dist/common/src/lib/core.js +1 -0
- package/dist/common/src/lib/pmProxy.js +215 -201
- package/dist/common/src/lib/pmProxy.test/adapter.js +2 -2
- package/dist/common/src/lib/pmProxy.test/implementation.js +1 -1
- package/dist/common/testeranto.config.js +47 -32
- package/dist/common/tsconfig.common.tsbuildinfo +1 -1
- package/dist/module/src/PM/base.js +5 -1
- package/dist/module/src/PM/main.js +22 -19
- package/dist/module/src/PM/node.js +4 -1
- package/dist/module/src/PM/pure.js +4 -1
- package/dist/module/src/PM/web.js +6 -3
- package/dist/module/src/Pure.js +0 -4
- package/dist/module/src/Pure.test.js +1 -1
- package/dist/module/src/ReportServer.js +2 -123
- package/dist/module/src/ReportServer.test.ts/index.js +73 -0
- package/dist/module/src/ReportServerLib.js +134 -0
- package/dist/module/src/TestPage.js +29 -17
- package/dist/module/src/components/pure/ProjectPageView.test/implementation.js +1 -1
- package/dist/module/src/components/pure/TestPageView.js +29 -17
- package/dist/module/src/esbuildConfigs/node.js +1 -3
- package/dist/module/src/lib/BaseSuite.js +13 -11
- package/dist/module/src/lib/abstractBase.js +39 -40
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +10 -9
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.specification.js +7 -7
- package/dist/module/src/lib/basebuilder.js +13 -2
- package/dist/module/src/lib/core.js +1 -0
- package/dist/module/src/lib/pmProxy.js +215 -201
- package/dist/module/src/lib/pmProxy.test/adapter.js +2 -2
- package/dist/module/src/lib/pmProxy.test/implementation.js +1 -1
- package/dist/module/testeranto.config.js +47 -32
- package/dist/module/tsconfig.module.tsbuildinfo +1 -1
- package/dist/prebuild/App.js +3 -3
- package/dist/prebuild/ReportServer.mjs +21 -9
- package/dist/prebuild/build.mjs +1 -1
- package/dist/prebuild/run.mjs +27 -20
- package/dist/types/src/PM/base.d.ts +1 -1
- package/dist/types/src/PM/node.d.ts +1 -1
- package/dist/types/src/PM/pure.d.ts +1 -1
- package/dist/types/src/PM/web.d.ts +1 -1
- package/dist/types/src/ReportServer.test.ts/index.d.ts +29 -0
- package/dist/types/src/ReportServerLib.d.ts +1 -0
- package/dist/types/src/Types.d.ts +0 -1
- package/dist/types/src/components/pure/ProjectPageView.test/index.d.ts +2 -1
- package/dist/types/src/lib/BaseSuite.d.ts +2 -0
- package/dist/types/src/lib/abstractBase.d.ts +5 -7
- package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.types.d.ts +7 -4
- package/dist/types/src/lib/pmProxy.d.ts +3 -3
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/PM/base.ts +7 -5
- package/src/PM/main.ts +26 -21
- package/src/PM/node.ts +6 -1
- package/src/PM/pure.ts +6 -1
- package/src/PM/web.ts +7 -3
- package/src/Pure.test.ts +6 -6
- package/src/Pure.ts +0 -8
- package/src/ReportServer.test.ts/index.ts +194 -0
- package/src/ReportServer.ts +2 -132
- package/src/ReportServerLib.ts +147 -0
- package/src/TestPage.tsx +65 -5
- package/src/Types.ts +0 -1
- package/src/components/pure/ProjectPageView.test/implementation.tsx +1 -1
- package/src/components/pure/TestPageView.tsx +65 -5
- package/src/esbuildConfigs/node.ts +1 -1
- package/src/lib/BaseSuite.ts +16 -21
- package/src/lib/abstractBase.ts +59 -48
- package/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts +22 -10
- package/src/lib/baseBuilder.test/baseBuilder.test.specification.ts +9 -9
- package/src/lib/baseBuilder.test/baseBuilder.test.types.ts +7 -4
- package/src/lib/basebuilder.ts +13 -4
- package/src/lib/core.ts +1 -0
- package/src/lib/pmProxy.test/adapter.ts +2 -2
- package/src/lib/pmProxy.test/implementation.ts +3 -3
- package/src/lib/pmProxy.test/types.ts +0 -2
- package/src/lib/pmProxy.ts +135 -80
- package/testeranto/App.js +3 -3
- package/testeranto/bundles/node/core/metafile.json +8 -0
- package/testeranto/bundles/pure/core/metafile.json +8 -0
- package/testeranto/bundles/web/core/metafile.json +15086 -0
- package/testeranto/bundles/web/{allTests → core}/src/components/pure/ProjectPageView.test/index.html +1 -1
- package/testeranto/bundles/web/{allTests → core}/src/components/pure/ProjectPageView.test/index.mjs +4109 -1642
- package/testeranto/projects.json +1 -1
- package/testeranto/reports/core/config.json +24 -0
- package/testeranto/reports/{allTests → core}/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +6 -1
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/logs.txt +59 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/message.txt +2 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/prompt.txt +27 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/suite-0/given-basicRender/then-0/butThen/happyPath.png +0 -0
- package/testeranto/reports/{allTests → core}/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +15 -33
- package/testeranto/reports/core/summary.json +9 -0
- package/testeranto.config.ts +49 -32
- package/tsc.log +78 -92
- package/testeranto/bundles/node/allTests/chunk-3EUGBAOM.mjs +0 -113
- package/testeranto/bundles/node/allTests/chunk-E75CSRER.mjs +0 -800
- package/testeranto/bundles/node/allTests/chunk-M6DO7VMB.mjs +0 -252
- package/testeranto/bundles/node/allTests/metafile.json +0 -1229
- package/testeranto/bundles/node/allTests/src/lib/BaseSuite.test/node.test.mjs +0 -323
- package/testeranto/bundles/node/allTests/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +0 -223
- package/testeranto/bundles/node/allTests/src/lib/classBuilder.test/classBuilder.test.mjs +0 -411
- package/testeranto/bundles/node/allTests/src/lib/core.test/core.test.mjs +0 -528
- package/testeranto/bundles/node/allTests/src/lib/pmProxy.test/index.mjs +0 -4752
- package/testeranto/bundles/pure/allTests/chunk-KHDVEHF7.mjs +0 -185
- package/testeranto/bundles/pure/allTests/chunk-VMUSFSZM.mjs +0 -797
- package/testeranto/bundles/pure/allTests/metafile.json +0 -1054
- package/testeranto/bundles/pure/allTests/src/Pure.test.mjs +0 -429
- package/testeranto/bundles/pure/allTests/src/lib/BaseSuite.test/pure.test.mjs +0 -425
- package/testeranto/bundles/pure/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +0 -381
- package/testeranto/bundles/web/allTests/chunk-HPYA4YZC.mjs +0 -2283
- package/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs +0 -997
- package/testeranto/bundles/web/allTests/metafile.json +0 -25
- package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.html +0 -19
- package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs +0 -440
- package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web.html +0 -19
- package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +0 -244
- package/testeranto/reports/allTests/config.json +0 -104
- package/testeranto/reports/allTests/src/Pure.test/pure/lint_errors.txt +0 -0
- package/testeranto/reports/allTests/src/Pure.test/pure/message.txt +0 -2
- package/testeranto/reports/allTests/src/Pure.test/pure/prompt.txt +0 -13
- package/testeranto/reports/allTests/src/Pure.test/pure/type_errors.txt +0 -101
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/bdd_errors.txt +0 -1
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/logs.txt +0 -50
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/message.txt +0 -2
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/prompt.txt +0 -17
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/tests.json +0 -32
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/bdd_errors.txt +0 -1
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/lint_errors.txt +0 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/logs.txt +0 -52
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/prompt.txt +0 -13
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/tests.json +0 -31
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/type_errors.txt +0 -111
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/bdd_errors.txt +0 -1
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/lint_errors.txt +0 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/prompt.txt +0 -14
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/tests.json +0 -31
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +0 -111
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/bdd_errors.txt +0 -1
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/lint_errors.txt +0 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/logs.txt +0 -108
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/prompt.txt +0 -14
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/tests.json +0 -31
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/type_errors.txt +0 -111
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/bdd_errors.txt +0 -1
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.txt +0 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/logs.txt +0 -35
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/prompt.txt +0 -16
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +0 -77
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +0 -62
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.txt +0 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/prompt.txt +0 -18
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +0 -62
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/bdd_errors.txt +0 -1
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/lint_errors.txt +0 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/logs.txt +0 -69
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +0 -16
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +0 -77
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +0 -62
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/bdd_errors.txt +0 -1
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/lint_errors.txt +0 -0
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/logs.txt +0 -700
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/prompt.txt +0 -16
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/tests.json +0 -164
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt +0 -138
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/lint_errors.txt +0 -21
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/logs.txt +0 -7
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/prompt.txt +0 -18
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/type_errors.txt +0 -63
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/bdd_errors.txt +0 -1
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/lint_errors.txt +0 -20
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/logs.txt +0 -31
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/prompt.txt +0 -16
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/tests.json +0 -134
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/type_errors.txt +0 -76
- package/testeranto/reports/allTests/summary.json +0 -79
- package/testeranto/reportsnode_build_errors +0 -20
- package/testeranto/reportspure_build_errors +0 -343
- package/testeranto/reportsweb_build_errors +0 -25
package/testeranto/projects.json
CHANGED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"tests": [
|
|
3
|
+
[
|
|
4
|
+
"src/components/pure/ProjectPageView.test/index.ts",
|
|
5
|
+
"web",
|
|
6
|
+
{
|
|
7
|
+
"ports": 0
|
|
8
|
+
},
|
|
9
|
+
[]
|
|
10
|
+
]
|
|
11
|
+
],
|
|
12
|
+
"clearScreen": false,
|
|
13
|
+
"debugger": false,
|
|
14
|
+
"externals": [],
|
|
15
|
+
"importPlugins": [],
|
|
16
|
+
"minify": false,
|
|
17
|
+
"nodePlugins": [],
|
|
18
|
+
"ports": [
|
|
19
|
+
"3333"
|
|
20
|
+
],
|
|
21
|
+
"src": "",
|
|
22
|
+
"webPlugins": [],
|
|
23
|
+
"buildDir": "/Users/adam/Code/testeranto/testeranto/bundles/core"
|
|
24
|
+
}
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
src/PM/web.ts
|
|
2
|
+
139:15 Use the rest parameters instead of 'arguments'. (prefer-rest-params)
|
|
3
|
+
|
|
1
4
|
src/components/TestStatusBadge.tsx
|
|
2
5
|
13:16 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
|
|
3
6
|
- undefined (fix)
|
|
@@ -10,4 +13,6 @@ src/components/pure/ProjectPageView.test/implementation.tsx
|
|
|
10
13
|
1:18 'expect' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
11
14
|
45:18 'container' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
12
15
|
45:29 'html' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
13
|
-
|
|
16
|
+
|
|
17
|
+
src/lib/abstractBase.ts
|
|
18
|
+
179:9 Unsafe usage of ThrowStatement. (no-unsafe-finally)
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools
|
|
2
|
+
You might need to use a local HTTP server (instead of file://): https://reactjs.org/link/react-devtools-faq font-weight:bold
|
|
3
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":25697,"columnNumber":24}
|
|
4
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":25697,"columnNumber":24},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":25717,"columnNumber":8},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":10,"columnNumber":49},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":25733,"columnNumber":23},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":10,"columnNumber":49},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":25745,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":10,"columnNumber":49},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":28648,"columnNumber":28}]
|
|
5
|
+
%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools
|
|
6
|
+
You might need to use a local HTTP server (instead of file://): https://reactjs.org/link/react-devtools-faq font-weight:bold
|
|
7
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":25697,"columnNumber":24}
|
|
8
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":25697,"columnNumber":24},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":25717,"columnNumber":8},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":10,"columnNumber":49},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":25733,"columnNumber":23},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":10,"columnNumber":49},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":25745,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":10,"columnNumber":49},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28648,"columnNumber":28}]
|
|
9
|
+
mark14
|
|
10
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28348,"columnNumber":18}
|
|
11
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28348,"columnNumber":18},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28630,"columnNumber":34},{"url":"pptr:evaluate;file%3A%2F%2F%2FUsers%2Fadam%2FCode%2Ftesteranto%2Fsrc%2FPM%2Fmain.ts%3A9%3A6374","lineNumber":3,"columnNumber":35}]
|
|
12
|
+
mark17
|
|
13
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28322,"columnNumber":16}
|
|
14
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28322,"columnNumber":16},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28349,"columnNumber":34},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28630,"columnNumber":34},{"url":"pptr:evaluate;file%3A%2F%2F%2FUsers%2Fadam%2FCode%2Ftesteranto%2Fsrc%2FPM%2Fmain.ts%3A9%3A6374","lineNumber":3,"columnNumber":35}]
|
|
15
|
+
beforeAll - setting up test environment
|
|
16
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28666,"columnNumber":14}
|
|
17
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28666,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28570,"columnNumber":94},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28521,"columnNumber":31},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28323,"columnNumber":31},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28349,"columnNumber":34},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28630,"columnNumber":34},{"url":"pptr:evaluate;file%3A%2F%2F%2FUsers%2Fadam%2FCode%2Ftesteranto%2Fsrc%2FPM%2Fmain.ts%3A9%3A6374","lineNumber":3,"columnNumber":35}]
|
|
18
|
+
Created React root
|
|
19
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28676,"columnNumber":16}
|
|
20
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28676,"columnNumber":16},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28570,"columnNumber":94},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28521,"columnNumber":31},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28323,"columnNumber":31},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28349,"columnNumber":34},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28630,"columnNumber":34},{"url":"pptr:evaluate;file%3A%2F%2F%2FUsers%2Fadam%2FCode%2Ftesteranto%2Fsrc%2FPM%2Fmain.ts%3A9%3A6374","lineNumber":3,"columnNumber":35}]
|
|
21
|
+
mark800
|
|
22
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28584,"columnNumber":18}
|
|
23
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28584,"columnNumber":18},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28158,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28529,"columnNumber":31}]
|
|
24
|
+
beforeEach - initializing with: JSHandle@object
|
|
25
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28685,"columnNumber":14}
|
|
26
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28685,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28585,"columnNumber":29},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28158,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28529,"columnNumber":31}]
|
|
27
|
+
beforeEach - initializing test with values: JSHandle@array
|
|
28
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28686,"columnNumber":14}
|
|
29
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28686,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28585,"columnNumber":29},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28158,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28529,"columnNumber":31}]
|
|
30
|
+
Rendering test component...
|
|
31
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28705,"columnNumber":18}
|
|
32
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28705,"columnNumber":18},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28688,"columnNumber":21},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28585,"columnNumber":29},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28158,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28529,"columnNumber":31}]
|
|
33
|
+
Component mounted successfully
|
|
34
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28695,"columnNumber":24}
|
|
35
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28695,"columnNumber":24},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28658,"columnNumber":18},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":21186,"columnNumber":33},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":22137,"columnNumber":16},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":22126,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":22077,"columnNumber":10},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":23510,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":23434,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":22962,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":22875,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":4352,"columnNumber":41},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":4331,"columnNumber":21},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":4539,"columnNumber":28}]
|
|
36
|
+
butThen
|
|
37
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28718,"columnNumber":14}
|
|
38
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28718,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28606,"columnNumber":35},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28278,"columnNumber":16},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28180,"columnNumber":33}]
|
|
39
|
+
[Test] Verifying render output
|
|
40
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":32896,"columnNumber":14}
|
|
41
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":32896,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28282,"columnNumber":28},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28719,"columnNumber":13},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28606,"columnNumber":35},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28278,"columnNumber":16},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28180,"columnNumber":33}]
|
|
42
|
+
Then addArtifact suite-0/given-basicRender/then-0/butThen/happyPath.png
|
|
43
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28264,"columnNumber":12}
|
|
44
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28264,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":27874,"columnNumber":8},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":27831,"columnNumber":40},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":32898,"columnNumber":15}]
|
|
45
|
+
afterEach
|
|
46
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28722,"columnNumber":14}
|
|
47
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28722,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28595,"columnNumber":37},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28594,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28201,"columnNumber":19}]
|
|
48
|
+
mark800
|
|
49
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28584,"columnNumber":18}
|
|
50
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28584,"columnNumber":18},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28158,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28529,"columnNumber":31}]
|
|
51
|
+
beforeEach - initializing with: JSHandle@object
|
|
52
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28685,"columnNumber":14}
|
|
53
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28685,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28585,"columnNumber":29},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28158,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28529,"columnNumber":31}]
|
|
54
|
+
beforeEach - initializing test with values: JSHandle@array
|
|
55
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28686,"columnNumber":14}
|
|
56
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28686,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28585,"columnNumber":29},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28158,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28529,"columnNumber":31}]
|
|
57
|
+
Rendering test component...
|
|
58
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28705,"columnNumber":18}
|
|
59
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28705,"columnNumber":18},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28688,"columnNumber":21},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28585,"columnNumber":29},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28158,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1754595811457","lineNumber":28529,"columnNumber":31}]
|
package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/message.txt
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
|
|
2
|
+
Fix the failing tests described in testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/tests.json and testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/logs.txt. Focus on the bdd tests before all other concerns. You may add any debugging you think is necessary.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
|
|
2
|
+
/add src/components/pure/ProjectPageView.test/index.ts
|
|
3
|
+
/add src/Web.ts
|
|
4
|
+
/add src/PM/web.ts
|
|
5
|
+
/add src/PM/index.ts
|
|
6
|
+
/add src/lib/core.ts
|
|
7
|
+
/add src/lib/index.ts
|
|
8
|
+
/add src/lib/abstractBase.ts
|
|
9
|
+
/add src/lib/pmProxy.ts
|
|
10
|
+
/add src/lib/classBuilder.ts
|
|
11
|
+
/add src/lib/basebuilder.ts
|
|
12
|
+
/add src/lib/BaseSuite.ts
|
|
13
|
+
/add src/components/pure/ProjectPageView.test/implementation.tsx
|
|
14
|
+
/add src/components/pure/ProjectPageView.test/specification.ts
|
|
15
|
+
/add src/components/pure/ProjectPageView.tsx
|
|
16
|
+
/add src/NavBar.tsx
|
|
17
|
+
/add src/components/TestStatusBadge.tsx
|
|
18
|
+
|
|
19
|
+
/read node_modules/testeranto/docs/index.md
|
|
20
|
+
/read node_modules/testeranto/docs/style.md
|
|
21
|
+
/read node_modules/testeranto/docs/testing.ai.txt
|
|
22
|
+
/read node_modules/testeranto/src/CoreTypes.ts
|
|
23
|
+
|
|
24
|
+
/read testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/tests.json
|
|
25
|
+
/read testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/logs.txt
|
|
26
|
+
/read testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/type_errors.txt
|
|
27
|
+
/read testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt
|
|
Binary file
|
|
@@ -2,36 +2,6 @@
|
|
|
2
2
|
/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic.ts (104,26): Argument of type 'CElement<any, TesterantoComponent>' is not assignable to parameter of type 'ReactNode'.
|
|
3
3
|
Property 'children' is missing in type 'ComponentElement<any, TesterantoComponent>' but required in type 'ReactPortal'.
|
|
4
4
|
/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react/component/index.ts (3,44): Cannot find module '../../../Types' or its corresponding type declarations.
|
|
5
|
-
/Users/adam/Code/testeranto/node_modules/testeranto/src/lib/abstractBase.ts (222,17): Catch clause variable type annotation must be 'any' or 'unknown' if specified.
|
|
6
|
-
/Users/adam/Code/testeranto/node_modules/testeranto/src/lib/basebuilder.ts (79,15): This expression is not callable.
|
|
7
|
-
Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
|
|
8
|
-
Type 'void' has no call signatures.
|
|
9
|
-
/Users/adam/Code/testeranto/node_modules/testeranto/src/lib/classBuilder.ts (86,18): A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
10
|
-
/Users/adam/Code/testeranto/node_modules/testeranto/src/lib/classBuilder.ts (101,28): A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
11
|
-
/Users/adam/Code/testeranto/node_modules/testeranto/src/lib/core.ts (46,7): Argument of type 'Omit<{ suites: import("/Users/adam/Code/testeranto/node_modules/testeranto/src/Types").TestSuiteImplementation<O>; givens: import("/Users/adam/Code/testeranto/node_modules/testeranto/src/Types").TestGivenImplementation<I, O>; whens: import("/Users/adam/Code/testeranto/node_modules/testeranto/src/Types").TestWhenImpl...' is not assignable to parameter of type 'Omit<{ suites: import("/Users/adam/Code/testeranto/node_modules/testeranto/src/Types").TestSuiteImplementation<O>; givens: import("/Users/adam/Code/testeranto/node_modules/testeranto/src/Types").TestGivenImplementation<I, O>; whens: import("/Users/adam/Code/testeranto/node_modules/testeranto/src/Types").TestWhenImpl...'.
|
|
12
|
-
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }' is not assignable to type '{ suites: Record<string, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'.
|
|
13
|
-
Types of property 'suites' are incompatible.
|
|
14
|
-
Type 'Record<string, any>' is not assignable to type 'Record<string, never>'.
|
|
15
|
-
'string' index signatures are incompatible.
|
|
16
|
-
Type 'any' is not assignable to type 'never'.
|
|
17
|
-
/Users/adam/Code/testeranto/node_modules/testeranto/src/lib/index.ts (16,3): Type '(subject: T["isubject"], initialValues: T["iinitialValues"], x: unknown, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<T["isubject"]>' is not assignable to type '(subject: T["isubject"], initializer: (c?: any) => T["given"], testResource: ITTestResourceConfiguration, initialValues: any, pm: IPM) => Promise<...>'.
|
|
18
|
-
Types of parameters 'initialValues' and 'initializer' are incompatible.
|
|
19
|
-
Type '(c?: any) => T["given"]' is not assignable to type 'T["iinitialValues"]'.
|
|
20
|
-
'T["iinitialValues"]' could be instantiated with an arbitrary type which could be unrelated to '(c?: any) => T["given"]'.
|
|
21
|
-
/Users/adam/Code/testeranto/node_modules/testeranto/src/lib/index.ts (18,20): Type '"iinitialValues"' cannot be used to index type 'T'.
|
|
22
|
-
/Users/adam/Code/testeranto/node_modules/testeranto/src/lib/index.ts (40,13): This expression is not callable.
|
|
23
|
-
Type 'unknown' has no call signatures.
|
|
24
|
-
/Users/adam/Code/testeranto/node_modules/testeranto/src/lib/index.ts (52,3): Type '{ assertThis?: ((x: T["then"]) => any) | undefined; andWhen?: ((store: T["istore"], whenCB: T["when"], testResource: ITTestResourceConfiguration, pm: IPM) => Promise<T["istore"]>) | undefined; ... 4 more ...; beforeEach?: ((subject: T["isubject"], initializer: (c?: any) => T["given"], testResource: ITTestResourceCon...' is not assignable to type 'ITestAdapter<T>'.
|
|
25
|
-
Types of property 'assertThis' are incompatible.
|
|
26
|
-
Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
27
|
-
Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
28
|
-
/Users/adam/Code/testeranto/node_modules/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
|
|
29
|
-
/Users/adam/Code/testeranto/node_modules/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
|
|
30
|
-
/Users/adam/Code/testeranto/node_modules/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
|
|
31
|
-
/Users/adam/Code/testeranto/node_modules/testeranto/src/Web.ts (40,7): Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.
|
|
32
|
-
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
|
|
33
|
-
/Users/adam/Code/testeranto/node_modules/testeranto/src/Web.ts (48,14): Expected 0 arguments, but got 1.
|
|
34
|
-
/Users/adam/Code/testeranto/node_modules/testeranto/src/Web.ts (67,14): Expected 0 arguments, but got 1.
|
|
35
5
|
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/implementation.tsx (45,9): Type '({ container, html }: { container: any; html: any; }, pm: any) => Promise<void>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
36
6
|
Target signature provides too few arguments. Expected 2 or more, but got 1.
|
|
37
7
|
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/implementation.tsx (74,9): Type '({ container }: { container: any; }, pm: any) => Promise<{ container: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
@@ -43,8 +13,18 @@
|
|
|
43
13
|
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.tsx (219,26): 'testData' is of type 'unknown'.
|
|
44
14
|
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.tsx (220,28): 'testData' is of type 'unknown'.
|
|
45
15
|
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.tsx (298,24): Type '{ testName: string; testsExist: boolean; runTimeErrors: number; }' is missing the following properties from type 'TestStatusBadgeProps': typeErrors, staticErrors
|
|
46
|
-
/Users/adam/Code/testeranto/src/lib/abstractBase.ts (
|
|
47
|
-
/Users/adam/Code/testeranto/src/lib/
|
|
16
|
+
/Users/adam/Code/testeranto/src/lib/abstractBase.ts (312,39): Expected 1 arguments, but got 2.
|
|
17
|
+
/Users/adam/Code/testeranto/src/lib/basebuilder.ts (80,15): This expression is not callable.
|
|
18
|
+
Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
|
|
19
|
+
Type 'void' has no call signatures.
|
|
20
|
+
/Users/adam/Code/testeranto/src/lib/classBuilder.ts (86,18): A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
21
|
+
/Users/adam/Code/testeranto/src/lib/classBuilder.ts (101,28): A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
22
|
+
/Users/adam/Code/testeranto/src/lib/core.ts (46,7): Argument of type 'Omit<{ suites: import("/Users/adam/Code/testeranto/src/Types").TestSuiteImplementation<O>; givens: import("/Users/adam/Code/testeranto/src/Types").TestGivenImplementation<I, O>; whens: import("/Users/adam/Code/testeranto/src/Types").TestWhenImplementation<...>; thens: import("/Users/adam/Code/testeranto/src/Types")....' is not assignable to parameter of type 'Omit<{ suites: import("/Users/adam/Code/testeranto/src/Types").TestSuiteImplementation<O>; givens: import("/Users/adam/Code/testeranto/src/Types").TestGivenImplementation<I, O>; whens: import("/Users/adam/Code/testeranto/src/Types").TestWhenImplementation<...>; thens: import("/Users/adam/Code/testeranto/src/Types")....'.
|
|
23
|
+
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }' is not assignable to type '{ suites: Record<string, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'.
|
|
24
|
+
Types of property 'suites' are incompatible.
|
|
25
|
+
Type 'Record<string, any>' is not assignable to type 'Record<string, never>'.
|
|
26
|
+
'string' index signatures are incompatible.
|
|
27
|
+
Type 'any' is not assignable to type 'never'.
|
|
48
28
|
/Users/adam/Code/testeranto/src/lib/index.ts (16,3): Type '(subject: T["isubject"], initialValues: T["iinitialValues"], x: unknown, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<T["isubject"]>' is not assignable to type '(subject: T["isubject"], initializer: (c?: any) => T["given"], testResource: ITTestResourceConfiguration, initialValues: any, pm: IPM) => Promise<...>'.
|
|
49
29
|
Types of parameters 'initialValues' and 'initializer' are incompatible.
|
|
50
30
|
Type '(c?: any) => T["given"]' is not assignable to type 'T["iinitialValues"]'.
|
|
@@ -65,4 +45,6 @@
|
|
|
65
45
|
Type 'string' is not assignable to type '`${string}.webm`'.
|
|
66
46
|
/Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
|
|
67
47
|
/Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
|
|
68
|
-
/Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
|
|
48
|
+
/Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
|
|
49
|
+
/Users/adam/Code/testeranto/src/Web.ts (43,7): Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.
|
|
50
|
+
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"src/components/pure/ProjectPageView.test/index.ts": {
|
|
3
|
+
"typeErrors": 26,
|
|
4
|
+
"staticErrors": 4,
|
|
5
|
+
"runTimeErrors": "?",
|
|
6
|
+
"prompt": "aider --model deepseek/deepseek-chat --load testeranto/core/reports/web/src/components/pure/ProjectPageView.test/index/prompt.txt",
|
|
7
|
+
"failingFeatures": {}
|
|
8
|
+
}
|
|
9
|
+
}
|
package/testeranto.config.ts
CHANGED
|
@@ -1,8 +1,26 @@
|
|
|
1
1
|
import { IProject } from "./src/Types";
|
|
2
2
|
|
|
3
|
+
// TODO- this config file is horrible. I need to redo how config files are handled.
|
|
4
|
+
|
|
3
5
|
const config: IProject = {
|
|
4
6
|
projects: {
|
|
5
|
-
|
|
7
|
+
// staticSite: {
|
|
8
|
+
// tests: [["src/ReportServer.test.ts/index.ts", "node", { ports: 1 }, []]],
|
|
9
|
+
// clearScreen: false,
|
|
10
|
+
// debugger: false,
|
|
11
|
+
// externals: [],
|
|
12
|
+
// featureIngestor: function (s: string): Promise<string> {
|
|
13
|
+
// throw new Error("Function not implemented.");
|
|
14
|
+
// },
|
|
15
|
+
// importPlugins: [],
|
|
16
|
+
// minify: false,
|
|
17
|
+
// nodePlugins: [],
|
|
18
|
+
// ports: ["3334"],
|
|
19
|
+
// src: "",
|
|
20
|
+
// webPlugins: [],
|
|
21
|
+
// },
|
|
22
|
+
|
|
23
|
+
core: {
|
|
6
24
|
tests: [
|
|
7
25
|
[
|
|
8
26
|
"src/components/pure/ProjectPageView.test/index.ts",
|
|
@@ -11,38 +29,38 @@ const config: IProject = {
|
|
|
11
29
|
[],
|
|
12
30
|
],
|
|
13
31
|
|
|
14
|
-
["src/lib/BaseSuite.test/node.test.ts", "node", { ports: 0 }, []],
|
|
15
|
-
["src/lib/BaseSuite.test/pure.test.ts", "pure", { ports: 0 }, []],
|
|
16
|
-
["src/lib/BaseSuite.test/web.test.ts", "web", { ports: 0 }, []],
|
|
32
|
+
// ["src/lib/BaseSuite.test/node.test.ts", "node", { ports: 0 }, []],
|
|
33
|
+
// ["src/lib/BaseSuite.test/pure.test.ts", "pure", { ports: 0 }, []],
|
|
34
|
+
// ["src/lib/BaseSuite.test/web.test.ts", "web", { ports: 0 }, []],
|
|
17
35
|
|
|
18
|
-
["src/Pure.test.ts", "pure", { ports: 0 }, []],
|
|
19
|
-
["src/lib/pmProxy.test/index.ts", "node", { ports: 0 }, []],
|
|
20
|
-
["src/lib/core.test/core.test.ts", "node", { ports: 0 }, []],
|
|
21
|
-
[
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
],
|
|
36
|
+
// ["src/Pure.test.ts", "pure", { ports: 0 }, []],
|
|
37
|
+
// ["src/lib/pmProxy.test/index.ts", "node", { ports: 0 }, []],
|
|
38
|
+
// ["src/lib/core.test/core.test.ts", "node", { ports: 0 }, []],
|
|
39
|
+
// [
|
|
40
|
+
// "src/lib/classBuilder.test/classBuilder.test.ts",
|
|
41
|
+
// "node",
|
|
42
|
+
// { ports: 0 },
|
|
43
|
+
// [],
|
|
44
|
+
// ],
|
|
27
45
|
|
|
28
|
-
[
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
],
|
|
34
|
-
[
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
],
|
|
40
|
-
[
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
],
|
|
46
|
+
// [
|
|
47
|
+
// "src/lib/baseBuilder.test/baseBuilder.test.node.ts",
|
|
48
|
+
// "node",
|
|
49
|
+
// { ports: 0 },
|
|
50
|
+
// [],
|
|
51
|
+
// ],
|
|
52
|
+
// [
|
|
53
|
+
// "src/lib/baseBuilder.test/baseBuilder.test.pure.ts",
|
|
54
|
+
// "pure",
|
|
55
|
+
// { ports: 0 },
|
|
56
|
+
// [],
|
|
57
|
+
// ],
|
|
58
|
+
// [
|
|
59
|
+
// "src/lib/baseBuilder.test/baseBuilder.test.web.ts",
|
|
60
|
+
// "web",
|
|
61
|
+
// { ports: 0 },
|
|
62
|
+
// [],
|
|
63
|
+
// ],
|
|
46
64
|
|
|
47
65
|
// ["src/mothership/test.ts", "node", { ports: 0 }, []],
|
|
48
66
|
// ["./src/lib/abstractBase/index.ts", "node", { ports: 0 }, []],
|
|
@@ -74,6 +92,5 @@ const config: IProject = {
|
|
|
74
92
|
webPlugins: [],
|
|
75
93
|
},
|
|
76
94
|
},
|
|
77
|
-
reportDomain: "https://adamwong246.github.io/testeranto",
|
|
78
95
|
};
|
|
79
96
|
export default config;
|