testeranto 0.140.2 → 0.146.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 +11006 -0
- package/.aider.input.history +441 -0
- package/.aider.tags.cache.v3/06/1a/1ec9fd1f595d4b36094caef45894.val +0 -0
- package/.aider.tags.cache.v3/0f/f6/f42b5108253d75de3cb6286df7f6.val +0 -0
- package/.aider.tags.cache.v3/{ad/3c/10f2ab1397f6d544e613d2a6acaf.val → 3d/81/8b6f0e9b98ec2952cdb8968ac386.val} +0 -0
- package/.aider.tags.cache.v3/cache.db +0 -0
- package/.aider.tags.cache.v3/{a7/97/6d37fce350ad2d588f36729db0cd.val → d6/7d/1820c2d4b9330eab7017da4515e7.val} +0 -0
- package/README.md +15 -16
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/docs/aiderTest.sh +1 -0
- package/docs/index.md +45 -33
- package/docs/testing.ai.txt +98 -0
- package/docs/testing.prompt.txt +8 -0
- package/package.json +3 -3
- package/src/Node.ts +17 -13
- package/src/PM/PM_WithEslintAndTsc.ts +83 -67
- package/src/PM/main.ts +182 -92
- package/src/PM/node.ts +1 -15
- package/src/PM/nodeSidecar.ts +0 -1
- package/src/Pure.test.ts +299 -0
- package/src/Pure.ts +20 -2
- package/src/Types.ts +5 -5
- package/src/Web.ts +1 -1
- package/src/build.ts +0 -1
- package/src/esbuildConfigs/consoleDetectorPlugin.ts +28 -14
- package/src/esbuildConfigs/nativeImportDetectorPlugin.ts +26 -0
- package/src/esbuildConfigs/pure.ts +3 -1
- package/src/esbuildConfigs/rebuildPlugin.ts +1 -4
- package/src/lib/BaseSuite.test/node.test.ts +12 -0
- package/src/lib/BaseSuite.test/pure.test.ts +12 -0
- package/src/lib/{BaseSuite.test.ts → BaseSuite.test/test.ts} +36 -27
- package/src/lib/BaseSuite.test/web.test.ts +12 -0
- package/src/lib/BaseSuite.ts +17 -15
- package/src/lib/abstractBase.test/MockGiven.ts +31 -0
- package/src/lib/abstractBase.test/MockThen.ts +20 -0
- package/src/lib/abstractBase.test/MockWhen.ts +17 -0
- package/src/lib/abstractBase.test/implementation.ts +51 -0
- package/src/lib/abstractBase.test/index.ts +19 -0
- package/src/lib/abstractBase.test/interface.ts +12 -0
- package/src/lib/abstractBase.test/specification.ts +49 -0
- package/src/lib/abstractBase.test/types.ts +19 -0
- package/src/lib/abstractBase.ts +0 -2
- package/src/lib/baseBuilder.test/TestBaseBuilder.ts +83 -0
- package/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts +134 -0
- package/src/lib/baseBuilder.test/baseBuilder.test.interface.ts +18 -0
- package/src/lib/baseBuilder.test/baseBuilder.test.node.ts +14 -0
- package/src/lib/baseBuilder.test/baseBuilder.test.pure.ts +14 -0
- package/src/lib/baseBuilder.test/baseBuilder.test.specification.ts +35 -0
- package/src/lib/baseBuilder.test/baseBuilder.test.types.ts +36 -0
- package/src/lib/baseBuilder.test/baseBuilder.test.web.ts +14 -0
- package/src/lib/basebuilder.ts +2 -1
- package/src/lib/classBuilder.test/TestClassBuilder.ts +88 -0
- package/src/lib/classBuilder.test/classBuilder.test.implementation.ts +204 -0
- package/src/lib/classBuilder.test/classBuilder.test.interface.ts +18 -0
- package/src/lib/classBuilder.test/classBuilder.test.specification.ts +113 -0
- package/src/lib/classBuilder.test/classBuilder.test.ts +14 -0
- package/src/lib/classBuilder.test/classBuilder.test.types.ts +84 -0
- package/src/lib/core.test/MockCore.ts +49 -0
- package/src/lib/core.test/core.test.implementation.ts +129 -0
- package/src/lib/core.test/core.test.interface.ts +18 -0
- package/src/lib/core.test/core.test.specification.ts +99 -0
- package/src/lib/core.test/core.test.ts +15 -0
- package/src/lib/core.test/core.test.types.ts +68 -0
- package/src/lib/core.ts +1 -11
- package/src/lib/pmProxy.test/implementation.ts +104 -0
- package/src/lib/pmProxy.test/index.ts +19 -0
- package/src/lib/pmProxy.test/interface.ts +46 -0
- package/src/lib/pmProxy.test/mockPM.ts +38 -0
- package/src/lib/pmProxy.test/mockPMBase.ts +136 -0
- package/src/lib/pmProxy.test/specification.ts +123 -0
- package/src/lib/pmProxy.test/types.ts +45 -0
- package/src/lib/pmProxy.ts +40 -193
- package/src/run.ts +7 -7
- package/testeranto/bundles/node/allTests/chunk-NQBTLMSG.mjs +254 -0
- package/testeranto/bundles/node/allTests/chunk-RF3LIUSG.mjs +765 -0
- package/testeranto/bundles/node/allTests/chunk-YZWFKYY3.mjs +171 -0
- package/testeranto/bundles/node/allTests/metafile.json +628 -3567
- package/testeranto/bundles/node/allTests/src/lib/BaseSuite.test/node.test.mjs +325 -0
- package/testeranto/bundles/node/allTests/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +226 -0
- package/testeranto/bundles/node/allTests/src/lib/classBuilder.test/classBuilder.test.mjs +408 -0
- package/testeranto/bundles/node/allTests/src/lib/core.test/core.test.mjs +279 -0
- package/testeranto/bundles/node/allTests/src/lib/pmProxy.test/index.mjs +4587 -0
- package/testeranto/bundles/{node/allTests/chunk-4PJCC2XT.mjs → pure/allTests/chunk-W22WOQNK.mjs} +208 -326
- package/testeranto/bundles/pure/allTests/metafile.json +732 -3
- package/testeranto/bundles/pure/allTests/src/Pure.test.mjs +369 -0
- package/testeranto/bundles/{node/allTests/src/lib/BaseSuite.test.mjs → pure/allTests/src/lib/BaseSuite.test/pure.test.mjs} +26 -8
- package/testeranto/bundles/pure/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +224 -0
- package/testeranto/bundles/web/allTests/chunk-FIZ3WLUB.mjs +943 -0
- package/testeranto/bundles/web/allTests/metafile.json +1133 -2
- package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.html +19 -0
- package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs +322 -0
- package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web.html +19 -0
- package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +10964 -0
- package/testeranto/index.html +1 -1
- package/testeranto/reports/allTests/config.json +50 -11
- package/testeranto/reports/allTests/index.html +1 -1
- package/testeranto/reports/allTests/src/Pure.test/pure/lint_errors.json +1539 -0
- package/testeranto/reports/allTests/src/Pure.test/pure/logs.txt +11 -0
- package/testeranto/reports/allTests/src/Pure.test/pure/message +1 -0
- package/testeranto/reports/allTests/src/Pure.test/pure/prompt.txt +8 -0
- package/testeranto/reports/allTests/src/{PM/__tests__/pureSidecar.testeranto/node → Pure.test/pure}/type_errors.txt +18 -14
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/lint_errors.json +620 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/logs.txt +12 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/message +1 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/prompt.txt +8 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/type_errors.txt +94 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/index.html +21 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/lint_errors.json +620 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/logs.txt +11 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/message +1 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/prompt.txt +8 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +104 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/dev.html +21 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/index.html +21 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/{node → web.test/web}/lint_errors.json +69 -57
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/logs.txt +10 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/message +1 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/prompt.txt +8 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/type_errors.txt +95 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/dev.html +21 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/index.html +21 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.json +966 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/message +1 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/prompt.txt +11 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +57 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/bdd_errors.txt +1 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/dev.html +21 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/index.html +21 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.json +966 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/log.txt +0 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/message +1 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/prompt.txt +11 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/tests.json +57 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +57 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/bdd_errors.txt +1 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/dev.html +21 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/index.html +21 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/lint_errors.json +966 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/log.txt +0 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/logs.txt +0 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/message +1 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +11 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +57 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +48 -0
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/dev.html +21 -0
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/index.html +21 -0
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/lint_errors.json +791 -0
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/logs.txt +12 -0
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/message +1 -0
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/prompt.txt +11 -0
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt +55 -0
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/dev.html +21 -0
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/index.html +21 -0
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/lint_errors.json +416 -0
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/logs.txt +17 -0
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/message +1 -0
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/prompt.txt +11 -0
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/type_errors.txt +65 -0
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/dev.html +21 -0
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/index.html +21 -0
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/lint_errors.json +1724 -0
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/log.txt +0 -0
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/logs.txt +30 -0
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/message +1 -0
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/prompt.txt +11 -0
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/type_errors.txt +64 -0
- package/testeranto/reports/allTests/summary.json +59 -24
- package/testeranto.config.ts +37 -12
- package/tsc.log +273 -27
- package/testeranto/bundles/node/allTests/chunk-PG6KUKNP.mjs +0 -44
- package/testeranto/bundles/node/allTests/src/PM/__tests__/nodeSidecar.testeranto.mjs +0 -187
- package/testeranto/bundles/node/allTests/src/PM/__tests__/pureSidecar.testeranto.mjs +0 -156
- package/testeranto/bundles/node/allTests/src/PM/__tests__/webSidecar.testeranto.mjs +0 -156
- package/testeranto/bundles/node/allTests/src/mothership/test.mjs +0 -24411
- package/testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/index.html +0 -21
- package/testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/lint_errors.json +0 -80
- package/testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/message +0 -1
- package/testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/prompt.txt +0 -8
- package/testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/type_errors.txt +0 -28
- package/testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/index.html +0 -21
- package/testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/lint_errors.json +0 -80
- package/testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/message +0 -1
- package/testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/prompt.txt +0 -8
- package/testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/index.html +0 -21
- package/testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/lint_errors.json +0 -80
- package/testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/message +0 -1
- package/testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/prompt.txt +0 -8
- package/testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/type_errors.txt +0 -32
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node/console_log.txt +0 -35
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node/index.html +0 -21
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node/message +0 -1
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node/prompt.txt +0 -7
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node/type_errors.txt +0 -68
- package/testeranto/reports/allTests/src/mothership/test/node/index.html +0 -21
- package/testeranto/reports/allTests/src/mothership/test/node/lint_errors.json +0 -1
- package/testeranto/reports/allTests/src/mothership/test/node/message +0 -1
- package/testeranto/reports/allTests/src/mothership/test/node/prompt.txt +0 -8
- package/testeranto/reports/allTests/src/mothership/test/node/type_errors.txt +0 -24
- /package/testeranto/reports/allTests/src/{PM/__tests__/nodeSidecar.testeranto/node → Pure.test/pure}/dev.html +0 -0
- /package/testeranto/reports/allTests/src/{PM/__tests__/pureSidecar.testeranto/node/dev.html → Pure.test/pure/index.html} +0 -0
- /package/testeranto/reports/allTests/src/{PM/__tests__/webSidecar.testeranto → lib/BaseSuite.test/node.test}/node/dev.html +0 -0
- /package/testeranto/reports/allTests/src/lib/BaseSuite.test/{node/dev.html → node.test/node/index.html} +0 -0
- /package/testeranto/reports/allTests/src/{mothership/test/node → lib/BaseSuite.test/pure.test/pure}/dev.html +0 -0
- /package/testeranto/reports/allTests/src/lib/{BaseSuite.test/node/log.txt → baseBuilder.test/baseBuilder.test.node/node/logs.txt} +0 -0
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
<!DOCTYPE html>
|
|
3
|
-
<html lang="en">
|
|
4
|
-
|
|
5
|
-
<head>
|
|
6
|
-
<meta name="description" content="Webpage description goes here" />
|
|
7
|
-
<base href="undefined" target="_blank">
|
|
8
|
-
<meta charset="utf-8" />
|
|
9
|
-
<title>allTests - testeranto</title>
|
|
10
|
-
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
11
|
-
<meta name="author" content="" />
|
|
12
|
-
|
|
13
|
-
<link rel="stylesheet" href="./testeranto/TestReport.css" />
|
|
14
|
-
<script src="./testeranto/TestReport.js"></script>
|
|
15
|
-
|
|
16
|
-
</head>
|
|
17
|
-
|
|
18
|
-
<body>
|
|
19
|
-
<div id="root"/>
|
|
20
|
-
</body>
|
|
21
|
-
|
package/testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/lint_errors.json
DELETED
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"filePath": "/Users/adam/Code/testeranto/src/PM/__tests__/nodeSidecar.testeranto.ts",
|
|
4
|
-
"messages": [
|
|
5
|
-
{
|
|
6
|
-
"ruleId": "@typescript-eslint/no-unsafe-function-type",
|
|
7
|
-
"severity": 2,
|
|
8
|
-
"message": "The `Function` type accepts any function-like value.\nPrefer explicitly defining any function parameters and return type.",
|
|
9
|
-
"line": 73,
|
|
10
|
-
"column": 23,
|
|
11
|
-
"nodeType": "Identifier",
|
|
12
|
-
"messageId": "bannedFunctionType",
|
|
13
|
-
"endLine": 73,
|
|
14
|
-
"endColumn": 31
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
"ruleId": "@typescript-eslint/no-unsafe-function-type",
|
|
18
|
-
"severity": 2,
|
|
19
|
-
"message": "The `Function` type accepts any function-like value.\nPrefer explicitly defining any function parameters and return type.",
|
|
20
|
-
"line": 75,
|
|
21
|
-
"column": 39,
|
|
22
|
-
"nodeType": "Identifier",
|
|
23
|
-
"messageId": "bannedFunctionType",
|
|
24
|
-
"endLine": 75,
|
|
25
|
-
"endColumn": 47
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"ruleId": "@typescript-eslint/no-unused-vars",
|
|
29
|
-
"severity": 2,
|
|
30
|
-
"message": "'data' is defined but never used.",
|
|
31
|
-
"line": 94,
|
|
32
|
-
"column": 31,
|
|
33
|
-
"nodeType": null,
|
|
34
|
-
"messageId": "unusedVar",
|
|
35
|
-
"endLine": 94,
|
|
36
|
-
"endColumn": 35
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"ruleId": "@typescript-eslint/no-unused-vars",
|
|
40
|
-
"severity": 2,
|
|
41
|
-
"message": "'testResource' is defined but never used.",
|
|
42
|
-
"line": 142,
|
|
43
|
-
"column": 44,
|
|
44
|
-
"nodeType": null,
|
|
45
|
-
"messageId": "unusedVar",
|
|
46
|
-
"endLine": 142,
|
|
47
|
-
"endColumn": 56
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
"ruleId": "@typescript-eslint/no-unused-vars",
|
|
51
|
-
"severity": 2,
|
|
52
|
-
"message": "'initialValues' is defined but never used.",
|
|
53
|
-
"line": 142,
|
|
54
|
-
"column": 58,
|
|
55
|
-
"nodeType": null,
|
|
56
|
-
"messageId": "unusedVar",
|
|
57
|
-
"endLine": 142,
|
|
58
|
-
"endColumn": 71
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
"ruleId": "@typescript-eslint/no-unused-vars",
|
|
62
|
-
"severity": 2,
|
|
63
|
-
"message": "'pm' is defined but never used.",
|
|
64
|
-
"line": 142,
|
|
65
|
-
"column": 73,
|
|
66
|
-
"nodeType": null,
|
|
67
|
-
"messageId": "unusedVar",
|
|
68
|
-
"endLine": 142,
|
|
69
|
-
"endColumn": 75
|
|
70
|
-
}
|
|
71
|
-
],
|
|
72
|
-
"suppressedMessages": [],
|
|
73
|
-
"errorCount": 6,
|
|
74
|
-
"fatalErrorCount": 0,
|
|
75
|
-
"warningCount": 0,
|
|
76
|
-
"fixableErrorCount": 0,
|
|
77
|
-
"fixableWarningCount": 0,
|
|
78
|
-
"usedDeprecatedRules": []
|
|
79
|
-
}
|
|
80
|
-
]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
Fix the failing tests described in testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/tests.json and testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/console_log.txt. DO NOT refactor beyond what is necessary. Always prefer minimal changes, focusing mostly on keeping the BDD tests passing
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/add src/PM/nodeSidecar.ts
|
|
3
|
-
/add src/PM/__tests__/nodeSidecar.testeranto.ts
|
|
4
|
-
|
|
5
|
-
/read testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/tests.json
|
|
6
|
-
/read testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/console_log.txt
|
|
7
|
-
/read testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/type_errors.txt
|
|
8
|
-
/read testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/lint_errors.json
|
package/testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/type_errors.txt
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
/Users/adam/Code/testeranto/src/lib/basebuilder.ts (85,15): This expression is not callable.
|
|
2
|
-
Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
|
|
3
|
-
Type 'void' has no call signatures.
|
|
4
|
-
/Users/adam/Code/testeranto/src/lib/classBuilder.ts (90,18): A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
5
|
-
/Users/adam/Code/testeranto/src/lib/classBuilder.ts (105,28): A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
6
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (22,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<...>'.
|
|
7
|
-
Types of parameters 'initialValues' and 'initializer' are incompatible.
|
|
8
|
-
Type '(c?: any) => T["given"]' is not assignable to type 'T["iinitialValues"]'.
|
|
9
|
-
'T["iinitialValues"]' could be instantiated with an arbitrary type which could be unrelated to '(c?: any) => T["given"]'.
|
|
10
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (24,20): Type '"iinitialValues"' cannot be used to index type 'T'.
|
|
11
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (46,13): This expression is not callable.
|
|
12
|
-
Type 'unknown' has no call signatures.
|
|
13
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (58,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 'ITestInterface<T>'.
|
|
14
|
-
Types of property 'assertThis' are incompatible.
|
|
15
|
-
Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
16
|
-
Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
17
|
-
/Users/adam/Code/testeranto/src/Node.ts (34,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<...>; checks: TestCheckImplementation<...>; }, keyof M> & M & { ...; }'.
|
|
18
|
-
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; checks: TestCheckImplementation<...>; }, 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>; checks: Record<string, any>; }': suites, givens, whens, thens, checks
|
|
19
|
-
/Users/adam/Code/testeranto/src/Node.ts (58,26): Cannot find name 'INodeTestInterface'. Did you mean 'ITestInterface'?
|
|
20
|
-
/Users/adam/Code/testeranto/src/PM/__tests__/nodeSidecar.testeranto.ts (58,43): Cannot find name 'I'.
|
|
21
|
-
/Users/adam/Code/testeranto/src/PM/__tests__/nodeSidecar.testeranto.ts (59,13): Type '(x: any) => any' is not assignable to type 'string'.
|
|
22
|
-
/Users/adam/Code/testeranto/src/PM/__tests__/nodeSidecar.testeranto.ts (100,29): Variable 'callbackFn' is used before being assigned.
|
|
23
|
-
/Users/adam/Code/testeranto/src/PM/__tests__/nodeSidecar.testeranto.ts (131,18): Property 'removeListenerCalled' does not exist on type 'PM'.
|
|
24
|
-
/Users/adam/Code/testeranto/src/PM/__tests__/nodeSidecar.testeranto.ts (141,22): Cannot find name 'IPartialNodeInterface'.
|
|
25
|
-
/Users/adam/Code/testeranto/src/PM/__tests__/nodeSidecar.testeranto.ts (141,44): Cannot find name 'I'.
|
|
26
|
-
/Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
|
|
27
|
-
/Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
|
|
28
|
-
/Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
<!DOCTYPE html>
|
|
3
|
-
<html lang="en">
|
|
4
|
-
|
|
5
|
-
<head>
|
|
6
|
-
<meta name="description" content="Webpage description goes here" />
|
|
7
|
-
<base href="undefined" target="_blank">
|
|
8
|
-
<meta charset="utf-8" />
|
|
9
|
-
<title>allTests - testeranto</title>
|
|
10
|
-
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
11
|
-
<meta name="author" content="" />
|
|
12
|
-
|
|
13
|
-
<link rel="stylesheet" href="./testeranto/TestReport.css" />
|
|
14
|
-
<script src="./testeranto/TestReport.js"></script>
|
|
15
|
-
|
|
16
|
-
</head>
|
|
17
|
-
|
|
18
|
-
<body>
|
|
19
|
-
<div id="root"/>
|
|
20
|
-
</body>
|
|
21
|
-
|
package/testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/lint_errors.json
DELETED
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"filePath": "/Users/adam/Code/testeranto/src/PM/__tests__/pureSidecar.testeranto.ts",
|
|
4
|
-
"messages": [
|
|
5
|
-
{
|
|
6
|
-
"ruleId": "@typescript-eslint/no-unsafe-function-type",
|
|
7
|
-
"severity": 2,
|
|
8
|
-
"message": "The `Function` type accepts any function-like value.\nPrefer explicitly defining any function parameters and return type.",
|
|
9
|
-
"line": 73,
|
|
10
|
-
"column": 23,
|
|
11
|
-
"nodeType": "Identifier",
|
|
12
|
-
"messageId": "bannedFunctionType",
|
|
13
|
-
"endLine": 73,
|
|
14
|
-
"endColumn": 31
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
"ruleId": "@typescript-eslint/no-unsafe-function-type",
|
|
18
|
-
"severity": 2,
|
|
19
|
-
"message": "The `Function` type accepts any function-like value.\nPrefer explicitly defining any function parameters and return type.",
|
|
20
|
-
"line": 74,
|
|
21
|
-
"column": 46,
|
|
22
|
-
"nodeType": "Identifier",
|
|
23
|
-
"messageId": "bannedFunctionType",
|
|
24
|
-
"endLine": 74,
|
|
25
|
-
"endColumn": 54
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"ruleId": "@typescript-eslint/no-unused-vars",
|
|
29
|
-
"severity": 2,
|
|
30
|
-
"message": "'data' is defined but never used.",
|
|
31
|
-
"line": 87,
|
|
32
|
-
"column": 31,
|
|
33
|
-
"nodeType": null,
|
|
34
|
-
"messageId": "unusedVar",
|
|
35
|
-
"endLine": 87,
|
|
36
|
-
"endColumn": 35
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"ruleId": "@typescript-eslint/no-unused-vars",
|
|
40
|
-
"severity": 2,
|
|
41
|
-
"message": "'testResource' is defined but never used.",
|
|
42
|
-
"line": 126,
|
|
43
|
-
"column": 44,
|
|
44
|
-
"nodeType": null,
|
|
45
|
-
"messageId": "unusedVar",
|
|
46
|
-
"endLine": 126,
|
|
47
|
-
"endColumn": 56
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
"ruleId": "@typescript-eslint/no-unused-vars",
|
|
51
|
-
"severity": 2,
|
|
52
|
-
"message": "'initialValues' is defined but never used.",
|
|
53
|
-
"line": 126,
|
|
54
|
-
"column": 58,
|
|
55
|
-
"nodeType": null,
|
|
56
|
-
"messageId": "unusedVar",
|
|
57
|
-
"endLine": 126,
|
|
58
|
-
"endColumn": 71
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
"ruleId": "@typescript-eslint/no-unused-vars",
|
|
62
|
-
"severity": 2,
|
|
63
|
-
"message": "'pm' is defined but never used.",
|
|
64
|
-
"line": 126,
|
|
65
|
-
"column": 73,
|
|
66
|
-
"nodeType": null,
|
|
67
|
-
"messageId": "unusedVar",
|
|
68
|
-
"endLine": 126,
|
|
69
|
-
"endColumn": 75
|
|
70
|
-
}
|
|
71
|
-
],
|
|
72
|
-
"suppressedMessages": [],
|
|
73
|
-
"errorCount": 6,
|
|
74
|
-
"fatalErrorCount": 0,
|
|
75
|
-
"warningCount": 0,
|
|
76
|
-
"fixableErrorCount": 0,
|
|
77
|
-
"fixableWarningCount": 0,
|
|
78
|
-
"usedDeprecatedRules": []
|
|
79
|
-
}
|
|
80
|
-
]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
Fix the failing tests described in testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/tests.json and testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/console_log.txt. DO NOT refactor beyond what is necessary. Always prefer minimal changes, focusing mostly on keeping the BDD tests passing
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/add src/PM/pureSidecar.ts
|
|
3
|
-
/add src/PM/__tests__/pureSidecar.testeranto.ts
|
|
4
|
-
|
|
5
|
-
/read testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/tests.json
|
|
6
|
-
/read testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/console_log.txt
|
|
7
|
-
/read testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/type_errors.txt
|
|
8
|
-
/read testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/lint_errors.json
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
<!DOCTYPE html>
|
|
3
|
-
<html lang="en">
|
|
4
|
-
|
|
5
|
-
<head>
|
|
6
|
-
<meta name="description" content="Webpage description goes here" />
|
|
7
|
-
<base href="undefined" target="_blank">
|
|
8
|
-
<meta charset="utf-8" />
|
|
9
|
-
<title>allTests - testeranto</title>
|
|
10
|
-
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
11
|
-
<meta name="author" content="" />
|
|
12
|
-
|
|
13
|
-
<link rel="stylesheet" href="./testeranto/TestReport.css" />
|
|
14
|
-
<script src="./testeranto/TestReport.js"></script>
|
|
15
|
-
|
|
16
|
-
</head>
|
|
17
|
-
|
|
18
|
-
<body>
|
|
19
|
-
<div id="root"/>
|
|
20
|
-
</body>
|
|
21
|
-
|
package/testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/lint_errors.json
DELETED
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"filePath": "/Users/adam/Code/testeranto/src/PM/__tests__/webSidecar.testeranto.ts",
|
|
4
|
-
"messages": [
|
|
5
|
-
{
|
|
6
|
-
"ruleId": "@typescript-eslint/no-unsafe-function-type",
|
|
7
|
-
"severity": 2,
|
|
8
|
-
"message": "The `Function` type accepts any function-like value.\nPrefer explicitly defining any function parameters and return type.",
|
|
9
|
-
"line": 73,
|
|
10
|
-
"column": 23,
|
|
11
|
-
"nodeType": "Identifier",
|
|
12
|
-
"messageId": "bannedFunctionType",
|
|
13
|
-
"endLine": 73,
|
|
14
|
-
"endColumn": 31
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
"ruleId": "@typescript-eslint/no-unsafe-function-type",
|
|
18
|
-
"severity": 2,
|
|
19
|
-
"message": "The `Function` type accepts any function-like value.\nPrefer explicitly defining any function parameters and return type.",
|
|
20
|
-
"line": 74,
|
|
21
|
-
"column": 46,
|
|
22
|
-
"nodeType": "Identifier",
|
|
23
|
-
"messageId": "bannedFunctionType",
|
|
24
|
-
"endLine": 74,
|
|
25
|
-
"endColumn": 54
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"ruleId": "@typescript-eslint/no-unused-vars",
|
|
29
|
-
"severity": 2,
|
|
30
|
-
"message": "'data' is defined but never used.",
|
|
31
|
-
"line": 87,
|
|
32
|
-
"column": 31,
|
|
33
|
-
"nodeType": null,
|
|
34
|
-
"messageId": "unusedVar",
|
|
35
|
-
"endLine": 87,
|
|
36
|
-
"endColumn": 35
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"ruleId": "@typescript-eslint/no-unused-vars",
|
|
40
|
-
"severity": 2,
|
|
41
|
-
"message": "'testResource' is defined but never used.",
|
|
42
|
-
"line": 126,
|
|
43
|
-
"column": 44,
|
|
44
|
-
"nodeType": null,
|
|
45
|
-
"messageId": "unusedVar",
|
|
46
|
-
"endLine": 126,
|
|
47
|
-
"endColumn": 56
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
"ruleId": "@typescript-eslint/no-unused-vars",
|
|
51
|
-
"severity": 2,
|
|
52
|
-
"message": "'initialValues' is defined but never used.",
|
|
53
|
-
"line": 126,
|
|
54
|
-
"column": 58,
|
|
55
|
-
"nodeType": null,
|
|
56
|
-
"messageId": "unusedVar",
|
|
57
|
-
"endLine": 126,
|
|
58
|
-
"endColumn": 71
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
"ruleId": "@typescript-eslint/no-unused-vars",
|
|
62
|
-
"severity": 2,
|
|
63
|
-
"message": "'pm' is defined but never used.",
|
|
64
|
-
"line": 126,
|
|
65
|
-
"column": 73,
|
|
66
|
-
"nodeType": null,
|
|
67
|
-
"messageId": "unusedVar",
|
|
68
|
-
"endLine": 126,
|
|
69
|
-
"endColumn": 75
|
|
70
|
-
}
|
|
71
|
-
],
|
|
72
|
-
"suppressedMessages": [],
|
|
73
|
-
"errorCount": 6,
|
|
74
|
-
"fatalErrorCount": 0,
|
|
75
|
-
"warningCount": 0,
|
|
76
|
-
"fixableErrorCount": 0,
|
|
77
|
-
"fixableWarningCount": 0,
|
|
78
|
-
"usedDeprecatedRules": []
|
|
79
|
-
}
|
|
80
|
-
]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
Fix the failing tests described in testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/tests.json and testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/console_log.txt. DO NOT refactor beyond what is necessary. Always prefer minimal changes, focusing mostly on keeping the BDD tests passing
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/add src/PM/webSidecar.ts
|
|
3
|
-
/add src/PM/__tests__/webSidecar.testeranto.ts
|
|
4
|
-
|
|
5
|
-
/read testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/tests.json
|
|
6
|
-
/read testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/console_log.txt
|
|
7
|
-
/read testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/type_errors.txt
|
|
8
|
-
/read testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/lint_errors.json
|
package/testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/type_errors.txt
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
/Users/adam/Code/testeranto/src/lib/basebuilder.ts (85,15): This expression is not callable.
|
|
2
|
-
Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
|
|
3
|
-
Type 'void' has no call signatures.
|
|
4
|
-
/Users/adam/Code/testeranto/src/lib/classBuilder.ts (90,18): A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
5
|
-
/Users/adam/Code/testeranto/src/lib/classBuilder.ts (105,28): A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
6
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (22,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<...>'.
|
|
7
|
-
Types of parameters 'initialValues' and 'initializer' are incompatible.
|
|
8
|
-
Type '(c?: any) => T["given"]' is not assignable to type 'T["iinitialValues"]'.
|
|
9
|
-
'T["iinitialValues"]' could be instantiated with an arbitrary type which could be unrelated to '(c?: any) => T["given"]'.
|
|
10
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (24,20): Type '"iinitialValues"' cannot be used to index type 'T'.
|
|
11
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (46,13): This expression is not callable.
|
|
12
|
-
Type 'unknown' has no call signatures.
|
|
13
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (58,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 'ITestInterface<T>'.
|
|
14
|
-
Types of property 'assertThis' are incompatible.
|
|
15
|
-
Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
16
|
-
Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
17
|
-
/Users/adam/Code/testeranto/src/Node.ts (34,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<...>; checks: TestCheckImplementation<...>; }, keyof M> & M & { ...; }'.
|
|
18
|
-
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; checks: TestCheckImplementation<...>; }, 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>; checks: Record<string, any>; }': suites, givens, whens, thens, checks
|
|
19
|
-
/Users/adam/Code/testeranto/src/Node.ts (58,26): Cannot find name 'INodeTestInterface'. Did you mean 'ITestInterface'?
|
|
20
|
-
/Users/adam/Code/testeranto/src/PM/__tests__/webSidecar.testeranto.ts (58,43): Cannot find name 'I'.
|
|
21
|
-
/Users/adam/Code/testeranto/src/PM/__tests__/webSidecar.testeranto.ts (59,13): Type '(x: any) => any' is not assignable to type 'string'.
|
|
22
|
-
/Users/adam/Code/testeranto/src/PM/__tests__/webSidecar.testeranto.ts (74,7): Type '(event: string, callback: Function) => void' is not assignable to type '{ (event: "beforeExit", listener: BeforeExitListener): Process; (event: "disconnect", listener: DisconnectListener): Process; (event: "exit", listener: ExitListener): Process; (event: "rejectionHandled", listener: RejectionHandledListener): Process; (event: "uncaughtException", listener: UncaughtExceptionListener): ...'.
|
|
23
|
-
Type 'void' is not assignable to type 'Process'.
|
|
24
|
-
/Users/adam/Code/testeranto/src/PM/__tests__/webSidecar.testeranto.ts (93,29): Variable 'callbackFn' is used before being assigned.
|
|
25
|
-
/Users/adam/Code/testeranto/src/PM/__tests__/webSidecar.testeranto.ts (99,35): Type 'boolean' is not assignable to type 'Process'.
|
|
26
|
-
/Users/adam/Code/testeranto/src/PM/__tests__/webSidecar.testeranto.ts (100,38): Type 'boolean' is not assignable to type 'Process'.
|
|
27
|
-
/Users/adam/Code/testeranto/src/PM/__tests__/webSidecar.testeranto.ts (115,18): Property 'removeListenerCalled' does not exist on type 'PM'.
|
|
28
|
-
/Users/adam/Code/testeranto/src/PM/__tests__/webSidecar.testeranto.ts (125,22): Cannot find name 'IPartialNodeInterface'.
|
|
29
|
-
/Users/adam/Code/testeranto/src/PM/__tests__/webSidecar.testeranto.ts (125,44): Cannot find name 'I'.
|
|
30
|
-
/Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
|
|
31
|
-
/Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
|
|
32
|
-
/Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
stderr > Given error: [Function (anonymous)]
|
|
2
|
-
Given error: [Function (anonymous)]
|
|
3
|
-
Given error: Error: Expected 1 errors, got 0
|
|
4
|
-
at Then.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/src/lib/BaseSuite.test.mjs:252:15)
|
|
5
|
-
at file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:425:29
|
|
6
|
-
at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/src/lib/BaseSuite.test.mjs:290:55)
|
|
7
|
-
at Then.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:749:42)
|
|
8
|
-
at Then.test (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:420:17)
|
|
9
|
-
at Given.give (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:351:34)
|
|
10
|
-
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
|
|
11
|
-
at async Testeranto.constructor.run (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:242:20)
|
|
12
|
-
at async file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:531:19
|
|
13
|
-
at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:559:29)
|
|
14
|
-
goodbye node with caught error Error: Expected 1 errors, got 0
|
|
15
|
-
at Then.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/src/lib/BaseSuite.test.mjs:252:15)
|
|
16
|
-
at file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:425:29
|
|
17
|
-
at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/src/lib/BaseSuite.test.mjs:290:55)
|
|
18
|
-
at Then.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:749:42)
|
|
19
|
-
at Then.test (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:420:17)
|
|
20
|
-
at Given.give (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:351:34)
|
|
21
|
-
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
|
|
22
|
-
at async Testeranto.constructor.run (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:242:20)
|
|
23
|
-
at async file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:531:19
|
|
24
|
-
at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:559:29)
|
|
25
|
-
stdout > test failed 3 Error: Expected 1 errors, got 0
|
|
26
|
-
at Then.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/src/lib/BaseSuite.test.mjs:252:15)
|
|
27
|
-
at file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:425:29
|
|
28
|
-
at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/src/lib/BaseSuite.test.mjs:290:55)
|
|
29
|
-
at Then.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:749:42)
|
|
30
|
-
at Then.test (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:420:17)
|
|
31
|
-
at Given.give (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:351:34)
|
|
32
|
-
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
|
|
33
|
-
at async Testeranto.constructor.run (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:242:20)
|
|
34
|
-
at async file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:531:19
|
|
35
|
-
at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:559:29)
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
<!DOCTYPE html>
|
|
3
|
-
<html lang="en">
|
|
4
|
-
|
|
5
|
-
<head>
|
|
6
|
-
<meta name="description" content="Webpage description goes here" />
|
|
7
|
-
<base href="undefined" target="_blank">
|
|
8
|
-
<meta charset="utf-8" />
|
|
9
|
-
<title>allTests - testeranto</title>
|
|
10
|
-
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
11
|
-
<meta name="author" content="" />
|
|
12
|
-
|
|
13
|
-
<link rel="stylesheet" href="./testeranto/TestReport.css" />
|
|
14
|
-
<script src="./testeranto/TestReport.js"></script>
|
|
15
|
-
|
|
16
|
-
</head>
|
|
17
|
-
|
|
18
|
-
<body>
|
|
19
|
-
<div id="root"/>
|
|
20
|
-
</body>
|
|
21
|
-
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
Fix the failing tests described in testeranto/reports/allTests/src/lib/BaseSuite.test/node/tests.json and testeranto/reports/allTests/src/lib/BaseSuite.test/node/console_log.txt. DO NOT refactor beyond what is necessary. Always prefer minimal changes, focusing mostly on keeping the BDD tests passing
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/add src/lib/BaseSuite.test.ts
|
|
3
|
-
|
|
4
|
-
/read testeranto/reports/allTests/src/lib/BaseSuite.test/node/tests.json
|
|
5
|
-
/read testeranto/reports/allTests/src/lib/BaseSuite.test/node/console_log.txt
|
|
6
|
-
/read testeranto/reports/allTests/src/lib/BaseSuite.test/node/type_errors.txt
|
|
7
|
-
/read testeranto/reports/allTests/src/lib/BaseSuite.test/node/lint_errors.json
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
/Users/adam/Code/testeranto/src/lib/basebuilder.ts (85,15): This expression is not callable.
|
|
2
|
-
Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
|
|
3
|
-
Type 'void' has no call signatures.
|
|
4
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test.ts (92,9): Property 'andWhen' in type 'MockWhen' is not assignable to the same property in base type 'BaseWhen<I>'.
|
|
5
|
-
Types of parameters 'whenCB' and 'whenCB' are incompatible.
|
|
6
|
-
Type '(store: TestStore) => Promise<TestSelection>' is not assignable to type 'Promise<TestStore>'.
|
|
7
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test.ts (103,9): Property 'butThen' in type 'MockThen' is not assignable to the same property in base type 'BaseThen<I>'.
|
|
8
|
-
Types of parameters 'thenCB' and 'thenCB' are incompatible.
|
|
9
|
-
Type 'Promise<BaseSuite<any, any>>' is not assignable to type 'Promise<TestSelection>'.
|
|
10
|
-
Property 'testSelection' is missing in type 'BaseSuite<any, any>' but required in type 'TestSelection'.
|
|
11
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test.ts (136,13): Type 'MockWhen' is not assignable to type 'BaseWhen<I>'.
|
|
12
|
-
Types of property 'andWhen' are incompatible.
|
|
13
|
-
Types of parameters 'whenCB' and 'whenCB' are incompatible.
|
|
14
|
-
Type '(store: TestStore) => Promise<TestSelection>' is not assignable to type 'Promise<TestStore>'.
|
|
15
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test.ts (137,15): Type 'Promise<{ testStore: boolean; }>' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
|
|
16
|
-
Type 'Promise<{ testStore: boolean; }>' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
|
|
17
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test.ts (142,15): Type 'Promise<{ testSelection: boolean; }>' is not assignable to type 'Promise<(store: TestStore) => Promise<TestSelection>>'.
|
|
18
|
-
Type '{ testSelection: boolean; }' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
|
|
19
|
-
Type '{ testSelection: boolean; }' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
|
|
20
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test.ts (162,10): Cannot find name 'SuiteSpecification'. Did you mean 'ITestSpecification'?
|
|
21
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test.ts (163,10): Cannot find name 'GivenSpecification'. Did you mean 'ITestSpecification'?
|
|
22
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test.ts (164,9): Cannot find name 'WhenSpecification'.
|
|
23
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test.ts (165,9): Cannot find name 'ThenSpecification'. Did you mean 'ITestSpecification'?
|
|
24
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test.ts (166,10): Cannot find name 'ITestCheckCallback'.
|
|
25
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test.ts (231,35): Type 'TestableSuite' is not assignable to type '() => Promise<TestStore>'.
|
|
26
|
-
Type 'TestableSuite' provides no match for the signature '(): Promise<TestStore>'.
|
|
27
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test.ts (237,7): Type '(suite: TestableSuite) => Promise<TestableSuite>' is not assignable to type '(zel: TestSelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: TestStore) => Promise<TestStore>>'.
|
|
28
|
-
Types of parameters 'suite' and 'zel' are incompatible.
|
|
29
|
-
Type 'TestSelection' is missing the following properties from type 'TestableSuite': name, givens, checks, store, and 10 more.
|
|
30
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test.ts (257,11): Type '() => void' is not assignable to type '((selector: string) => boolean) | ((selector: string) => boolean) | ((selector: string, page: string) => Promise<unknown>)'.
|
|
31
|
-
Type '() => void' is not assignable to type '(selector: string) => boolean'.
|
|
32
|
-
Type 'void' is not assignable to type 'boolean'.
|
|
33
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test.ts (259,11): Type '() => void' is not assignable to type '((p: any) => string) | ((p: any) => string) | ((p: any) => Promise<unknown>)'.
|
|
34
|
-
Type '() => void' is not assignable to type '(p: any) => string'.
|
|
35
|
-
Type 'void' is not assignable to type 'string'.
|
|
36
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test.ts (325,5): Type '(feature: string) => ((suite: TestableSuite) => TestableSuite)' is not assignable to type '(feature: string) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
37
|
-
Type '(suite: TestableSuite) => TestableSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
38
|
-
Types of parameters 'suite' and 'ssel' are incompatible.
|
|
39
|
-
Type 'TestSelection' is missing the following properties from type 'TestableSuite': name, givens, checks, store, and 10 more.
|
|
40
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test.ts (348,7): Type '(suite: TestableSuite) => TestableSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
41
|
-
Types of parameters 'suite' and 'ssel' are incompatible.
|
|
42
|
-
Type 'TestSelection' is missing the following properties from type 'TestableSuite': name, givens, checks, store, and 10 more.
|
|
43
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test.ts (413,5): Object literal may only specify known properties, and 'Default' does not exist in type 'TestCheckImplementation<I, O>'.
|
|
44
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test.ts (422,30): Type '() => Promise<TestStore>' is not assignable to type 'TestStore'.
|
|
45
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test.ts (429,44): Expected 1 arguments, but got 2.
|
|
46
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test.ts (436,48): Expected 1 arguments, but got 2.
|
|
47
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test.ts (438,3): Type '(store: I["istore"]) => I["istore"]' is not assignable to type '(store: TestStore, key: string, pm: IPM) => Promise<unknown>'.
|
|
48
|
-
Type 'TestStore' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
|
|
49
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test.ts (453,3): Argument of type 'BaseSuite<any, any>' is not assignable to parameter of type 'null'.
|
|
50
|
-
/Users/adam/Code/testeranto/src/lib/classBuilder.ts (90,18): A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
51
|
-
/Users/adam/Code/testeranto/src/lib/classBuilder.ts (105,28): A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
52
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (22,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<...>'.
|
|
53
|
-
Types of parameters 'initialValues' and 'initializer' are incompatible.
|
|
54
|
-
Type '(c?: any) => T["given"]' is not assignable to type 'T["iinitialValues"]'.
|
|
55
|
-
'T["iinitialValues"]' could be instantiated with an arbitrary type which could be unrelated to '(c?: any) => T["given"]'.
|
|
56
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (24,20): Type '"iinitialValues"' cannot be used to index type 'T'.
|
|
57
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (46,13): This expression is not callable.
|
|
58
|
-
Type 'unknown' has no call signatures.
|
|
59
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (58,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 'ITestInterface<T>'.
|
|
60
|
-
Types of property 'assertThis' are incompatible.
|
|
61
|
-
Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
62
|
-
Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
63
|
-
/Users/adam/Code/testeranto/src/Node.ts (34,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<...>; checks: TestCheckImplementation<...>; }, keyof M> & M & { ...; }'.
|
|
64
|
-
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; checks: TestCheckImplementation<...>; }, 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>; checks: Record<string, any>; }': suites, givens, whens, thens, checks
|
|
65
|
-
/Users/adam/Code/testeranto/src/Node.ts (58,26): Cannot find name 'INodeTestInterface'. Did you mean 'ITestInterface'?
|
|
66
|
-
/Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
|
|
67
|
-
/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'?
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
<!DOCTYPE html>
|
|
3
|
-
<html lang="en">
|
|
4
|
-
|
|
5
|
-
<head>
|
|
6
|
-
<meta name="description" content="Webpage description goes here" />
|
|
7
|
-
<base href="undefined" target="_blank">
|
|
8
|
-
<meta charset="utf-8" />
|
|
9
|
-
<title>allTests - testeranto</title>
|
|
10
|
-
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
11
|
-
<meta name="author" content="" />
|
|
12
|
-
|
|
13
|
-
<link rel="stylesheet" href="./testeranto/TestReport.css" />
|
|
14
|
-
<script src="./testeranto/TestReport.js"></script>
|
|
15
|
-
|
|
16
|
-
</head>
|
|
17
|
-
|
|
18
|
-
<body>
|
|
19
|
-
<div id="root"/>
|
|
20
|
-
</body>
|
|
21
|
-
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
[]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
Fix the failing tests described in testeranto/reports/allTests/src/mothership/test/node/tests.json and testeranto/reports/allTests/src/mothership/test/node/console_log.txt. DO NOT refactor beyond what is necessary. Always prefer minimal changes, focusing mostly on keeping the BDD tests passing
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/add src/mothership/index.ts
|
|
3
|
-
/add src/mothership/test.ts
|
|
4
|
-
|
|
5
|
-
/read testeranto/reports/allTests/src/mothership/test/node/tests.json
|
|
6
|
-
/read testeranto/reports/allTests/src/mothership/test/node/console_log.txt
|
|
7
|
-
/read testeranto/reports/allTests/src/mothership/test/node/type_errors.txt
|
|
8
|
-
/read testeranto/reports/allTests/src/mothership/test/node/lint_errors.json
|