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
|
@@ -0,0 +1,104 @@
|
|
|
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/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/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/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/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/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/test.ts (161,14): Type '(Suite: ITestSpecification<I, O>, Given: WhenSpecification<I, O>, When: WhenSpecification<I, O>, Then: WhenSpecification<I, O>, Check: ITestCheckCallback<I, O>) => any[]' is not assignable to type 'ITestSpecification<I, O>'.
|
|
21
|
+
Types of parameters 'Suite' and 'Suite' are incompatible.
|
|
22
|
+
Type 'SuiteSpecification<I, O>' is not assignable to type 'ITestSpecification<I, O>'.
|
|
23
|
+
Type 'SuiteSpecification<I, O>' provides no match for the signature '(Suite: SuiteSpecification<I, O>, Given: GivenSpecification<I, O>, When: WhenSpecification<I, O>, Then: ThenSpecification<...>, Check: ITestCheckCallback<...>): any[]'.
|
|
24
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (168,9): Property 'Default' does not exist on type 'ITestSpecification<I, O>'.
|
|
25
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (172,29): Property 'Default' does not exist on type 'WhenSpecification<I, O>'.
|
|
26
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (176,16): Property 'SuiteNameMatches' does not exist on type 'WhenSpecification<I, O>'.
|
|
27
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (177,16): Property 'SuiteIndexMatches' does not exist on type 'WhenSpecification<I, O>'.
|
|
28
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (178,16): Property 'FeaturesIncludes' does not exist on type 'WhenSpecification<I, O>'.
|
|
29
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (183,24): Property 'Default' does not exist on type 'WhenSpecification<I, O>'.
|
|
30
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (186,15): Property 'StoreValid' does not exist on type 'WhenSpecification<I, O>'.
|
|
31
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (186,34): Property 'NoErrorsOccurred' does not exist on type 'WhenSpecification<I, O>'.
|
|
32
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (186,59): Property 'AllChecksCompleted' does not exist on type 'WhenSpecification<I, O>'.
|
|
33
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (190,31): Property 'Default' does not exist on type 'WhenSpecification<I, O>'.
|
|
34
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (192,15): Property 'AddFeature' does not exist on type 'WhenSpecification<I, O>'.
|
|
35
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (194,16): Property 'FeaturesIncludes' does not exist on type 'WhenSpecification<I, O>'.
|
|
36
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (195,16): Property 'FeaturesIncludes' does not exist on type 'WhenSpecification<I, O>'.
|
|
37
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (196,16): Property 'FeatureCountMatches' does not exist on type 'WhenSpecification<I, O>'.
|
|
38
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (201,28): Property 'Default' does not exist on type 'WhenSpecification<I, O>'.
|
|
39
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (203,15): Property 'RunSuiteWithError' does not exist on type 'WhenSpecification<I, O>'.
|
|
40
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (205,16): Property 'ErrorCountMatches' does not exist on type 'WhenSpecification<I, O>'.
|
|
41
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (223,9): Property 'Default' does not exist on type 'ITestSpecification<I, O>'.
|
|
42
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (224,26): Property 'Default' does not exist on type 'WhenSpecification<I, O>'.
|
|
43
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (227,14): Property 'addArtifact' does not exist on type 'WhenSpecification<I, O>'.
|
|
44
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (228,14): Property 'modifySpecs' does not exist on type 'WhenSpecification<I, O>'.
|
|
45
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (229,14): Property 'modifyJobs' does not exist on type 'WhenSpecification<I, O>'.
|
|
46
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (232,14): Property 'specsModified' does not exist on type 'WhenSpecification<I, O>'.
|
|
47
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (233,14): Property 'jobsModified' does not exist on type 'WhenSpecification<I, O>'.
|
|
48
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (234,14): Property 'artifactsTracked' does not exist on type 'WhenSpecification<I, O>'.
|
|
49
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (235,14): Property 'testRunSuccessful' does not exist on type 'WhenSpecification<I, O>'.
|
|
50
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (248,35): Type 'TestableSuite' is not assignable to type '() => Promise<TestStore>'.
|
|
51
|
+
Type 'TestableSuite' provides no match for the signature '(): Promise<TestStore>'.
|
|
52
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (254,7): Type '(suite: TestableSuite) => Promise<TestableSuite>' is not assignable to type '(zel: TestSelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: TestStore) => Promise<TestStore>>'.
|
|
53
|
+
Types of parameters 'suite' and 'zel' are incompatible.
|
|
54
|
+
Type 'TestSelection' is missing the following properties from type 'TestableSuite': name, givens, checks, store, and 10 more.
|
|
55
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (274,11): Type '() => void' is not assignable to type '((selector: string) => boolean) | ((selector: string) => boolean) | ((selector: string, page: string) => Promise<unknown>)'.
|
|
56
|
+
Type '() => void' is not assignable to type '(selector: string) => boolean'.
|
|
57
|
+
Type 'void' is not assignable to type 'boolean'.
|
|
58
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (276,11): Type '() => void' is not assignable to type '((p: any) => string) | ((p: any) => string) | ((p: any) => Promise<unknown>)'.
|
|
59
|
+
Type '() => void' is not assignable to type '(p: any) => string'.
|
|
60
|
+
Type 'void' is not assignable to type 'string'.
|
|
61
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (281,11): Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'.
|
|
62
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (295,13): Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'.
|
|
63
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (342,5): Type '(feature: string) => ((suite: TestableSuite) => TestableSuite)' is not assignable to type '(feature: string) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
64
|
+
Type '(suite: TestableSuite) => TestableSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
65
|
+
Types of parameters 'suite' and 'ssel' are incompatible.
|
|
66
|
+
Type 'TestSelection' is missing the following properties from type 'TestableSuite': name, givens, checks, store, and 10 more.
|
|
67
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (365,7): Type '(suite: TestableSuite) => TestableSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
68
|
+
Types of parameters 'suite' and 'ssel' are incompatible.
|
|
69
|
+
Type 'TestSelection' is missing the following properties from type 'TestableSuite': name, givens, checks, store, and 10 more.
|
|
70
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (430,5): Object literal may only specify known properties, and 'Default' does not exist in type 'TestCheckImplementation<I, O>'.
|
|
71
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (439,30): Type '() => Promise<TestStore>' is not assignable to type 'TestStore'.
|
|
72
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (446,44): Expected 1 arguments, but got 2.
|
|
73
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (453,48): Expected 1 arguments, but got 2.
|
|
74
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (455,3): Type '(store: I["istore"]) => I["istore"]' is not assignable to type '(store: TestStore, key: string, pm: IPM) => Promise<unknown>'.
|
|
75
|
+
Type 'TestStore' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
|
|
76
|
+
/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.
|
|
77
|
+
/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.
|
|
78
|
+
/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<...>'.
|
|
79
|
+
Types of parameters 'initialValues' and 'initializer' are incompatible.
|
|
80
|
+
Type '(c?: any) => T["given"]' is not assignable to type 'T["iinitialValues"]'.
|
|
81
|
+
'T["iinitialValues"]' could be instantiated with an arbitrary type which could be unrelated to '(c?: any) => T["given"]'.
|
|
82
|
+
/Users/adam/Code/testeranto/src/lib/index.ts (24,20): Type '"iinitialValues"' cannot be used to index type 'T'.
|
|
83
|
+
/Users/adam/Code/testeranto/src/lib/index.ts (46,13): This expression is not callable.
|
|
84
|
+
Type 'unknown' has no call signatures.
|
|
85
|
+
/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>'.
|
|
86
|
+
Types of property 'assertThis' are incompatible.
|
|
87
|
+
Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
88
|
+
Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
89
|
+
/Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
|
|
90
|
+
/Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
|
|
91
|
+
/Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
|
|
92
|
+
/Users/adam/Code/testeranto/src/Pure.ts (32,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 & { ...; }'.
|
|
93
|
+
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
|
|
94
|
+
/Users/adam/Code/testeranto/src/Pure.ts (41,9): Property 'receiveTestResourceConfig' in type 'PureTesteranto<I, O, M>' is not assignable to the same property in base type 'TesterantoCore<I, O, M>'.
|
|
95
|
+
Type '(partialTestResource: string) => Promise<IFinalResults | -2>' is not assignable to type '(partialTestResource: string) => Promise<IFinalResults>'.
|
|
96
|
+
Type 'Promise<IFinalResults | -2>' is not assignable to type 'Promise<IFinalResults>'.
|
|
97
|
+
Type 'IFinalResults | -2' is not assignable to type 'IFinalResults'.
|
|
98
|
+
Type 'number' is not assignable to type 'IFinalResults'.
|
|
99
|
+
/Users/adam/Code/testeranto/src/Pure.ts (65,3): Type 'PureTesteranto<I, O, M>' is not assignable to type 'number | TesterantoCore<I, O, M>'.
|
|
100
|
+
Type 'PureTesteranto<I, O, M>' is not assignable to type 'TesterantoCore<I, O, M>'.
|
|
101
|
+
The types returned by 'receiveTestResourceConfig(...)' are incompatible between these types.
|
|
102
|
+
Type 'Promise<IFinalResults | -2>' is not assignable to type 'Promise<IFinalResults>'.
|
|
103
|
+
Type 'IFinalResults | -2' is not assignable to type 'IFinalResults'.
|
|
104
|
+
Type 'number' is not assignable to type 'IFinalResults'.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
|
|
2
|
+
<!DOCTYPE html>
|
|
3
|
+
<html lang="en">
|
|
4
|
+
|
|
5
|
+
<head>
|
|
6
|
+
<meta name="description" content="Webpage description goes here" />
|
|
7
|
+
<base href="" 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
|
+
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
|
|
2
|
+
<!DOCTYPE html>
|
|
3
|
+
<html lang="en">
|
|
4
|
+
|
|
5
|
+
<head>
|
|
6
|
+
<meta name="description" content="Webpage description goes here" />
|
|
7
|
+
<base href="" 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/lib/BaseSuite.test/{node → web.test/web}/lint_errors.json
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[
|
|
2
2
|
{
|
|
3
|
-
"filePath": "/Users/adam/Code/testeranto/src/lib/BaseSuite.test.ts",
|
|
3
|
+
"filePath": "/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts",
|
|
4
4
|
"messages": [
|
|
5
5
|
{
|
|
6
6
|
"ruleId": "@typescript-eslint/no-explicit-any",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"messageId": "suggestUnknown",
|
|
18
18
|
"fix": {
|
|
19
19
|
"range": [
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
698,
|
|
21
|
+
701
|
|
22
22
|
],
|
|
23
23
|
"text": "unknown"
|
|
24
24
|
},
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"messageId": "suggestNever",
|
|
29
29
|
"fix": {
|
|
30
30
|
"range": [
|
|
31
|
-
|
|
32
|
-
|
|
31
|
+
698,
|
|
32
|
+
701
|
|
33
33
|
],
|
|
34
34
|
"text": "never"
|
|
35
35
|
},
|
|
@@ -52,8 +52,8 @@
|
|
|
52
52
|
"messageId": "suggestUnknown",
|
|
53
53
|
"fix": {
|
|
54
54
|
"range": [
|
|
55
|
-
|
|
56
|
-
|
|
55
|
+
703,
|
|
56
|
+
706
|
|
57
57
|
],
|
|
58
58
|
"text": "unknown"
|
|
59
59
|
},
|
|
@@ -63,8 +63,8 @@
|
|
|
63
63
|
"messageId": "suggestNever",
|
|
64
64
|
"fix": {
|
|
65
65
|
"range": [
|
|
66
|
-
|
|
67
|
-
|
|
66
|
+
703,
|
|
67
|
+
706
|
|
68
68
|
],
|
|
69
69
|
"text": "never"
|
|
70
70
|
},
|
|
@@ -142,8 +142,8 @@
|
|
|
142
142
|
"messageId": "suggestUnknown",
|
|
143
143
|
"fix": {
|
|
144
144
|
"range": [
|
|
145
|
-
|
|
146
|
-
|
|
145
|
+
1805,
|
|
146
|
+
1808
|
|
147
147
|
],
|
|
148
148
|
"text": "unknown"
|
|
149
149
|
},
|
|
@@ -153,8 +153,8 @@
|
|
|
153
153
|
"messageId": "suggestNever",
|
|
154
154
|
"fix": {
|
|
155
155
|
"range": [
|
|
156
|
-
|
|
157
|
-
|
|
156
|
+
1805,
|
|
157
|
+
1808
|
|
158
158
|
],
|
|
159
159
|
"text": "never"
|
|
160
160
|
},
|
|
@@ -309,8 +309,8 @@
|
|
|
309
309
|
"messageId": "suggestUnknown",
|
|
310
310
|
"fix": {
|
|
311
311
|
"range": [
|
|
312
|
-
|
|
313
|
-
|
|
312
|
+
2705,
|
|
313
|
+
2708
|
|
314
314
|
],
|
|
315
315
|
"text": "unknown"
|
|
316
316
|
},
|
|
@@ -320,8 +320,8 @@
|
|
|
320
320
|
"messageId": "suggestNever",
|
|
321
321
|
"fix": {
|
|
322
322
|
"range": [
|
|
323
|
-
|
|
324
|
-
|
|
323
|
+
2705,
|
|
324
|
+
2708
|
|
325
325
|
],
|
|
326
326
|
"text": "never"
|
|
327
327
|
},
|
|
@@ -355,8 +355,8 @@
|
|
|
355
355
|
"messageId": "suggestUnknown",
|
|
356
356
|
"fix": {
|
|
357
357
|
"range": [
|
|
358
|
-
|
|
359
|
-
|
|
358
|
+
2729,
|
|
359
|
+
2732
|
|
360
360
|
],
|
|
361
361
|
"text": "unknown"
|
|
362
362
|
},
|
|
@@ -366,8 +366,8 @@
|
|
|
366
366
|
"messageId": "suggestNever",
|
|
367
367
|
"fix": {
|
|
368
368
|
"range": [
|
|
369
|
-
|
|
370
|
-
|
|
369
|
+
2729,
|
|
370
|
+
2732
|
|
371
371
|
],
|
|
372
372
|
"text": "never"
|
|
373
373
|
},
|
|
@@ -401,52 +401,52 @@
|
|
|
401
401
|
"ruleId": "@typescript-eslint/no-unused-vars",
|
|
402
402
|
"severity": 2,
|
|
403
403
|
"message": "'key' is defined but never used.",
|
|
404
|
-
"line":
|
|
404
|
+
"line": 264,
|
|
405
405
|
"column": 11,
|
|
406
406
|
"nodeType": null,
|
|
407
407
|
"messageId": "unusedVar",
|
|
408
|
-
"endLine":
|
|
408
|
+
"endLine": 264,
|
|
409
409
|
"endColumn": 14
|
|
410
410
|
},
|
|
411
411
|
{
|
|
412
412
|
"ruleId": "@typescript-eslint/no-unused-vars",
|
|
413
413
|
"severity": 2,
|
|
414
414
|
"message": "'value' is defined but never used.",
|
|
415
|
-
"line":
|
|
415
|
+
"line": 265,
|
|
416
416
|
"column": 11,
|
|
417
417
|
"nodeType": null,
|
|
418
418
|
"messageId": "unusedVar",
|
|
419
|
-
"endLine":
|
|
419
|
+
"endLine": 265,
|
|
420
420
|
"endColumn": 16
|
|
421
421
|
},
|
|
422
422
|
{
|
|
423
423
|
"ruleId": "@typescript-eslint/no-unused-vars",
|
|
424
424
|
"severity": 2,
|
|
425
425
|
"message": "'args' is defined but never used.",
|
|
426
|
-
"line":
|
|
426
|
+
"line": 267,
|
|
427
427
|
"column": 37,
|
|
428
428
|
"nodeType": null,
|
|
429
429
|
"messageId": "unusedVar",
|
|
430
|
-
"endLine":
|
|
430
|
+
"endLine": 267,
|
|
431
431
|
"endColumn": 41
|
|
432
432
|
},
|
|
433
433
|
{
|
|
434
434
|
"ruleId": "@typescript-eslint/no-explicit-any",
|
|
435
435
|
"severity": 2,
|
|
436
436
|
"message": "Unexpected any. Specify a different type.",
|
|
437
|
-
"line":
|
|
437
|
+
"line": 267,
|
|
438
438
|
"column": 43,
|
|
439
439
|
"nodeType": "TSAnyKeyword",
|
|
440
440
|
"messageId": "unexpectedAny",
|
|
441
|
-
"endLine":
|
|
441
|
+
"endLine": 267,
|
|
442
442
|
"endColumn": 46,
|
|
443
443
|
"suggestions": [
|
|
444
444
|
{
|
|
445
445
|
"messageId": "suggestUnknown",
|
|
446
446
|
"fix": {
|
|
447
447
|
"range": [
|
|
448
|
-
|
|
449
|
-
|
|
448
|
+
6560,
|
|
449
|
+
6563
|
|
450
450
|
],
|
|
451
451
|
"text": "unknown"
|
|
452
452
|
},
|
|
@@ -456,8 +456,8 @@
|
|
|
456
456
|
"messageId": "suggestNever",
|
|
457
457
|
"fix": {
|
|
458
458
|
"range": [
|
|
459
|
-
|
|
460
|
-
|
|
459
|
+
6560,
|
|
460
|
+
6563
|
|
461
461
|
],
|
|
462
462
|
"text": "never"
|
|
463
463
|
},
|
|
@@ -469,30 +469,30 @@
|
|
|
469
469
|
"ruleId": "@typescript-eslint/no-unused-vars",
|
|
470
470
|
"severity": 2,
|
|
471
471
|
"message": "'e' is defined but never used.",
|
|
472
|
-
"line":
|
|
472
|
+
"line": 301,
|
|
473
473
|
"column": 18,
|
|
474
474
|
"nodeType": null,
|
|
475
475
|
"messageId": "unusedVar",
|
|
476
|
-
"endLine":
|
|
476
|
+
"endLine": 301,
|
|
477
477
|
"endColumn": 19
|
|
478
478
|
},
|
|
479
479
|
{
|
|
480
480
|
"ruleId": "@typescript-eslint/no-explicit-any",
|
|
481
481
|
"severity": 2,
|
|
482
482
|
"message": "Unexpected any. Specify a different type.",
|
|
483
|
-
"line":
|
|
483
|
+
"line": 438,
|
|
484
484
|
"column": 29,
|
|
485
485
|
"nodeType": "TSAnyKeyword",
|
|
486
486
|
"messageId": "unexpectedAny",
|
|
487
|
-
"endLine":
|
|
487
|
+
"endLine": 438,
|
|
488
488
|
"endColumn": 32,
|
|
489
489
|
"suggestions": [
|
|
490
490
|
{
|
|
491
491
|
"messageId": "suggestUnknown",
|
|
492
492
|
"fix": {
|
|
493
493
|
"range": [
|
|
494
|
-
|
|
495
|
-
|
|
494
|
+
11427,
|
|
495
|
+
11430
|
|
496
496
|
],
|
|
497
497
|
"text": "unknown"
|
|
498
498
|
},
|
|
@@ -502,8 +502,8 @@
|
|
|
502
502
|
"messageId": "suggestNever",
|
|
503
503
|
"fix": {
|
|
504
504
|
"range": [
|
|
505
|
-
|
|
506
|
-
|
|
505
|
+
11427,
|
|
506
|
+
11430
|
|
507
507
|
],
|
|
508
508
|
"text": "never"
|
|
509
509
|
},
|
|
@@ -515,55 +515,67 @@
|
|
|
515
515
|
"ruleId": "@typescript-eslint/no-unused-vars",
|
|
516
516
|
"severity": 2,
|
|
517
517
|
"message": "'store' is defined but never used.",
|
|
518
|
-
"line":
|
|
518
|
+
"line": 457,
|
|
519
519
|
"column": 14,
|
|
520
520
|
"nodeType": null,
|
|
521
521
|
"messageId": "unusedVar",
|
|
522
|
-
"endLine":
|
|
522
|
+
"endLine": 457,
|
|
523
523
|
"endColumn": 19
|
|
524
524
|
},
|
|
525
525
|
{
|
|
526
526
|
"ruleId": "@typescript-eslint/no-unused-vars",
|
|
527
527
|
"severity": 2,
|
|
528
528
|
"message": "'pm' is defined but never used.",
|
|
529
|
-
"line":
|
|
529
|
+
"line": 457,
|
|
530
530
|
"column": 34,
|
|
531
531
|
"nodeType": null,
|
|
532
532
|
"messageId": "unusedVar",
|
|
533
|
-
"endLine":
|
|
533
|
+
"endLine": 457,
|
|
534
534
|
"endColumn": 36
|
|
535
535
|
},
|
|
536
536
|
{
|
|
537
537
|
"ruleId": "@typescript-eslint/no-unused-vars",
|
|
538
538
|
"severity": 2,
|
|
539
539
|
"message": "'testResource' is defined but never used.",
|
|
540
|
-
"line":
|
|
540
|
+
"line": 463,
|
|
541
541
|
"column": 5,
|
|
542
542
|
"nodeType": null,
|
|
543
543
|
"messageId": "unusedVar",
|
|
544
|
-
"endLine":
|
|
544
|
+
"endLine": 463,
|
|
545
545
|
"endColumn": 17
|
|
546
546
|
},
|
|
547
547
|
{
|
|
548
548
|
"ruleId": "@typescript-eslint/no-unused-vars",
|
|
549
549
|
"severity": 2,
|
|
550
550
|
"message": "'pm' is defined but never used.",
|
|
551
|
-
"line":
|
|
551
|
+
"line": 464,
|
|
552
552
|
"column": 5,
|
|
553
553
|
"nodeType": null,
|
|
554
554
|
"messageId": "unusedVar",
|
|
555
|
-
"endLine":
|
|
555
|
+
"endLine": 464,
|
|
556
556
|
"endColumn": 7
|
|
557
|
-
}
|
|
557
|
+
}
|
|
558
|
+
],
|
|
559
|
+
"suppressedMessages": [],
|
|
560
|
+
"errorCount": 35,
|
|
561
|
+
"fatalErrorCount": 0,
|
|
562
|
+
"warningCount": 0,
|
|
563
|
+
"fixableErrorCount": 0,
|
|
564
|
+
"fixableWarningCount": 0,
|
|
565
|
+
"usedDeprecatedRules": []
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"filePath": "/Users/adam/Code/testeranto/src/lib/BaseSuite.test/web.test.ts",
|
|
569
|
+
"messages": [
|
|
558
570
|
{
|
|
559
571
|
"ruleId": "@typescript-eslint/no-empty-object-type",
|
|
560
572
|
"severity": 2,
|
|
561
573
|
"message": "The `{}` (\"empty object\") type allows any non-nullish value, including literals like `0` and `\"\"`.\n- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.\n- If you want a type meaning \"any object\", you probably want `object` instead.\n- If you want a type meaning \"any value\", you probably want `unknown` instead.",
|
|
562
|
-
"line":
|
|
574
|
+
"line": 7,
|
|
563
575
|
"column": 33,
|
|
564
576
|
"nodeType": "TSTypeLiteral",
|
|
565
577
|
"messageId": "noEmptyObject",
|
|
566
|
-
"endLine":
|
|
578
|
+
"endLine": 7,
|
|
567
579
|
"endColumn": 35,
|
|
568
580
|
"suggestions": [
|
|
569
581
|
{
|
|
@@ -573,8 +585,8 @@
|
|
|
573
585
|
},
|
|
574
586
|
"fix": {
|
|
575
587
|
"range": [
|
|
576
|
-
|
|
577
|
-
|
|
588
|
+
190,
|
|
589
|
+
192
|
|
578
590
|
],
|
|
579
591
|
"text": "object"
|
|
580
592
|
},
|
|
@@ -587,8 +599,8 @@
|
|
|
587
599
|
},
|
|
588
600
|
"fix": {
|
|
589
601
|
"range": [
|
|
590
|
-
|
|
591
|
-
|
|
602
|
+
190,
|
|
603
|
+
192
|
|
592
604
|
],
|
|
593
605
|
"text": "unknown"
|
|
594
606
|
},
|
|
@@ -598,7 +610,7 @@
|
|
|
598
610
|
}
|
|
599
611
|
],
|
|
600
612
|
"suppressedMessages": [],
|
|
601
|
-
"errorCount":
|
|
613
|
+
"errorCount": 1,
|
|
602
614
|
"fatalErrorCount": 0,
|
|
603
615
|
"warningCount": 0,
|
|
604
616
|
"fixableErrorCount": 0,
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
TypeError
|
|
2
|
+
TypeError: When.addArtifact is not a function
|
|
3
|
+
at specification (file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs:138:14)
|
|
4
|
+
at BaseBuilder (file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-FIZ3WLUB.mjs:13:18)
|
|
5
|
+
at ClassBuilder (file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-FIZ3WLUB.mjs:777:5)
|
|
6
|
+
at TesterantoCore (file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-FIZ3WLUB.mjs:794:5)
|
|
7
|
+
at WebTesteranto (file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-FIZ3WLUB.mjs:887:5)
|
|
8
|
+
at Web_default (file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-FIZ3WLUB.mjs:926:10)
|
|
9
|
+
at <anonymous> (file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs:314:24)
|
|
10
|
+
When.addArtifact is not a function
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Fix the failing tests described in testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/tests.json and testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/logs.txt. DO NOT refactor beyond what is necessary. Always prefer minimal changes, focusing mostly on keeping the BDD tests passing
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
/add src/lib/BaseSuite.test/test.ts
|
|
3
|
+
/add src/lib/BaseSuite.test/web.test.ts
|
|
4
|
+
|
|
5
|
+
/read testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/tests.json
|
|
6
|
+
/read testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/logs.txt
|
|
7
|
+
/read testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/type_errors.txt
|
|
8
|
+
/read testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/lint_errors.json
|