testeranto 0.166.0 → 0.171.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/dist/common/src/NavBar.js +45 -0
- package/dist/common/src/PM/main.js +81 -59
- package/dist/common/src/Pure.js +17 -15
- package/dist/common/src/ReportServer.js +48 -5
- package/dist/common/src/Web.js +35 -20
- package/dist/common/src/components/SunriseAnimation.test/implementation.js +1 -0
- package/dist/common/src/components/SunriseAnimation.test/index.js +1 -0
- package/dist/common/src/components/SunriseAnimation.test/interface.js +1 -0
- package/dist/common/src/components/SunriseAnimation.test/specification.js +1 -0
- package/dist/common/src/components/TestStatusBadge.js +55 -0
- package/dist/common/src/components/pure/ProjectPageView.js +204 -0
- package/dist/common/src/components/pure/ProjectPageView.test/adapter.js +20 -0
- package/dist/common/src/components/pure/ProjectPageView.test/implementation.js +71 -0
- package/dist/common/src/components/pure/ProjectPageView.test/index.js +10 -0
- package/dist/common/src/components/pure/ProjectPageView.test/specification.js +19 -0
- package/dist/common/src/components/pure/ProjectPageView.test/types.js +2 -0
- package/dist/common/src/lib/BaseSuite.js +3 -3
- package/dist/common/src/lib/BaseSuite.test/test.js +1 -1
- package/dist/common/src/lib/abstractBase.js +41 -14
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +1 -1
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.mock.js +1 -1
- package/dist/common/src/lib/basebuilder.js +9 -7
- package/dist/common/src/lib/core.test/MockCore.js +17 -15
- package/dist/common/src/lib/pmProxy.js +185 -64
- package/dist/common/testeranto.config.js +6 -0
- package/dist/common/tsconfig.common.tsbuildinfo +1 -1
- package/dist/module/src/App.js +3 -3
- package/dist/module/src/PM/main.js +81 -59
- package/dist/module/src/ProjectsPage.js +1 -110
- package/dist/module/src/Pure.js +17 -15
- package/dist/module/src/ReportServer.js +48 -5
- package/dist/module/src/TestPage.js +45 -16
- package/dist/module/src/Web.js +35 -20
- package/dist/module/src/components/SunriseAnimation.test/implementation.js +1 -0
- package/dist/module/src/components/SunriseAnimation.test/index.js +1 -0
- package/dist/module/src/components/SunriseAnimation.test/interface.js +1 -0
- package/dist/module/src/components/SunriseAnimation.test/specification.js +1 -0
- package/dist/module/src/components/pure/ProjectPageView.js +197 -0
- package/dist/module/src/components/pure/ProjectPageView.test/adapter.js +17 -0
- package/dist/module/src/components/pure/ProjectPageView.test/implementation.js +68 -0
- package/dist/module/src/components/pure/ProjectPageView.test/index.js +5 -0
- package/dist/module/src/components/pure/ProjectPageView.test/specification.js +15 -0
- package/dist/module/src/components/pure/ProjectPageView.test/types.js +1 -0
- package/dist/module/src/components/pure/ProjectsPageView.js +58 -0
- package/dist/module/src/components/pure/TestPageView.js +136 -0
- package/dist/module/src/components/stateful/ProjectPage.js +63 -0
- package/dist/module/src/components/stateful/ProjectsPage.js +55 -0
- package/dist/module/src/components/stateful/TestPage.js +82 -0
- package/dist/module/src/lib/BaseSuite.js +3 -3
- package/dist/module/src/lib/BaseSuite.test/test.js +1 -1
- package/dist/module/src/lib/abstractBase.js +41 -14
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +1 -1
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.mock.js +1 -1
- package/dist/module/src/lib/basebuilder.js +9 -7
- package/dist/module/src/lib/core.test/MockCore.js +17 -15
- package/dist/module/src/lib/pmProxy.js +185 -64
- package/dist/module/testeranto.config.js +6 -0
- package/dist/module/tsconfig.module.tsbuildinfo +1 -1
- package/dist/prebuild/App.js +541 -495
- package/dist/prebuild/ReportServer.mjs +44 -4
- package/dist/prebuild/run.mjs +67 -39
- package/dist/types/src/NavBar.d.ts +19 -0
- package/dist/types/src/PM/index.d.ts +3 -1
- package/dist/types/src/PM/main.d.ts +0 -4
- package/dist/types/src/PM/node.d.ts +2 -2
- package/dist/types/src/components/SunriseAnimation.test/interface.d.ts +0 -0
- package/dist/types/src/components/SunriseAnimation.test/specification.d.ts +0 -0
- package/dist/types/src/components/TestStatusBadge.d.ts +15 -0
- package/dist/types/src/components/pure/ProjectPageView.d.ts +14 -0
- package/dist/types/src/components/pure/ProjectPageView.test/adapter.d.ts +3 -0
- package/dist/types/src/components/pure/ProjectPageView.test/implementation.d.ts +3 -0
- package/dist/types/src/components/pure/ProjectPageView.test/index.d.ts +3 -0
- package/dist/types/src/components/pure/ProjectPageView.test/specification.d.ts +3 -0
- package/dist/types/src/components/pure/ProjectPageView.test/types.d.ts +39 -0
- package/dist/types/src/lib/BaseSuite.d.ts +2 -0
- package/dist/types/src/lib/abstractBase.d.ts +12 -0
- package/dist/types/src/lib/index.d.ts +0 -1
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +3 -2
- package/src/App.tsx +5 -9
- package/src/PM/index.ts +1 -1
- package/src/PM/main.ts +87 -82
- package/src/PM/node.ts +2 -2
- package/src/ProjectsPage.tsx +1 -164
- package/src/Pure.ts +17 -17
- package/src/ReportServer.ts +49 -6
- package/src/TestPage.tsx +78 -5
- package/src/Web.ts +35 -35
- package/src/components/SunriseAnimation.test/implementation.ts +0 -0
- package/src/components/SunriseAnimation.test/index.ts +0 -0
- package/src/components/SunriseAnimation.test/interface.ts +0 -0
- package/src/components/SunriseAnimation.test/specification.ts +0 -0
- package/src/components/pure/ProjectPageView.test/adapter.ts +21 -0
- package/src/components/pure/ProjectPageView.test/implementation.tsx +84 -0
- package/src/components/pure/ProjectPageView.test/index.ts +8 -0
- package/src/components/pure/ProjectPageView.test/specification.ts +31 -0
- package/src/components/pure/ProjectPageView.test/types.ts +55 -0
- package/src/components/pure/ProjectPageView.tsx +332 -0
- package/src/components/pure/ProjectsPageView.tsx +99 -0
- package/src/components/pure/TestPageView.tsx +278 -0
- package/src/components/stateful/ProjectPage.tsx +83 -0
- package/src/components/stateful/ProjectsPage.tsx +73 -0
- package/src/components/stateful/TestPage.tsx +107 -0
- package/src/lib/BaseSuite.test/test.ts +1 -1
- package/src/lib/BaseSuite.ts +9 -4
- package/src/lib/abstractBase.ts +45 -14
- package/src/lib/baseBuilder.test/baseBuilder.test.adapter.ts +1 -1
- package/src/lib/baseBuilder.test/baseBuilder.test.mock.ts +1 -1
- package/src/lib/basebuilder.ts +9 -9
- package/src/lib/core.test/MockCore.ts +26 -19
- package/src/lib/index.ts +1 -1
- package/src/lib/pmProxy.ts +184 -87
- package/testeranto/App.js +541 -495
- package/testeranto/bundles/node/allTests/{chunk-4ONUZRZ4.mjs → chunk-3EUGBAOM.mjs} +1 -1
- package/testeranto/bundles/node/allTests/{chunk-FFBRDUBH.mjs → chunk-E75CSRER.mjs} +247 -124
- package/testeranto/bundles/node/allTests/{chunk-NQEP7SN4.mjs → chunk-M6DO7VMB.mjs} +1 -1
- package/testeranto/bundles/node/allTests/metafile.json +41 -41
- package/testeranto/bundles/node/allTests/src/lib/BaseSuite.test/node.test.mjs +4 -4
- package/testeranto/bundles/node/allTests/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +4 -4
- package/testeranto/bundles/node/allTests/src/lib/classBuilder.test/classBuilder.test.mjs +3 -3
- package/testeranto/bundles/node/allTests/src/lib/core.test/core.test.mjs +11 -23
- package/testeranto/bundles/node/allTests/src/lib/pmProxy.test/index.mjs +2 -2
- package/testeranto/bundles/pure/allTests/{chunk-CSMXYJ65.mjs → chunk-KHDVEHF7.mjs} +3 -18
- package/testeranto/bundles/pure/allTests/{chunk-QK4IXLF6.mjs → chunk-VMUSFSZM.mjs} +247 -124
- package/testeranto/bundles/pure/allTests/metafile.json +77 -47
- package/testeranto/bundles/pure/allTests/src/Pure.test.mjs +2 -2
- package/testeranto/bundles/pure/allTests/src/lib/BaseSuite.test/pure.test.mjs +3 -3
- package/testeranto/bundles/pure/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +3 -30
- package/testeranto/bundles/web/allTests/chunk-HPYA4YZC.mjs +2283 -0
- package/testeranto/bundles/web/allTests/{chunk-TU3MJSSI.mjs → chunk-RLDR6LJN.mjs} +302 -127
- package/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs +997 -0
- package/testeranto/bundles/web/allTests/metafile.json +15065 -46
- package/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.html +19 -0
- package/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs +37524 -0
- package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs +20 -2
- package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +27 -3
- package/testeranto/reports/allTests/config.json +8 -0
- package/testeranto/reports/allTests/src/Pure.test/pure/type_errors.txt +9 -3
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/bdd_errors.txt +1 -0
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +13 -0
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/logs.txt +50 -0
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/message.txt +2 -0
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/prompt.txt +17 -0
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/tests.json +32 -0
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +68 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/logs.txt +0 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/tests.json +6 -3
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/type_errors.txt +8 -1
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/tests.json +6 -3
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +9 -3
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/logs.txt +0 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/prompt.txt +2 -2
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/tests.json +6 -3
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/type_errors.txt +10 -5
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/logs.txt +0 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +18 -9
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +8 -1
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +10 -5
- 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/prompt.txt +2 -2
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +18 -9
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +10 -5
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/logs.txt +0 -0
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/tests.json +36 -18
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt +8 -1
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/lint_errors.txt +0 -12
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/logs.txt +2 -2
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/type_errors.txt +11 -8
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/logs.txt +0 -0
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/tests.json +28 -14
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/type_errors.txt +8 -1
- package/testeranto/reports/allTests/summary.json +16 -9
- package/testeranto/reportsweb_build_errors +25 -0
- package/testeranto.config.ts +7 -0
- package/tsc.log +313 -237
- package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test/manifest.json +0 -1
- package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/manifest.json +0 -1
- package/testeranto/reports/allTests/src/Pure.test/pure/manifest.json +0 -1
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/manifest.json +0 -1
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/manifest.json +0 -1
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/manifest.json +0 -1
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/manifest.json +0 -1
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/manifest.json +0 -1
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/manifest.json +0 -1
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/manifest.json +0 -1
- /package/{testeranto/reports/allTests/src/Pure.test/pure/logs.txt → dist/types/src/components/SunriseAnimation.test/implementation.d.ts} +0 -0
- /package/{testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/logs.txt → dist/types/src/components/SunriseAnimation.test/index.d.ts} +0 -0
|
@@ -4,9 +4,27 @@ import {
|
|
|
4
4
|
BaseThen,
|
|
5
5
|
BaseWhen,
|
|
6
6
|
Web_default
|
|
7
|
-
} from "../../../chunk-
|
|
7
|
+
} from "../../../chunk-U7AW26HL.mjs";
|
|
8
|
+
import {
|
|
9
|
+
init_buffer,
|
|
10
|
+
init_dirname,
|
|
11
|
+
init_process
|
|
12
|
+
} from "../../../chunk-HPYA4YZC.mjs";
|
|
13
|
+
|
|
14
|
+
// src/lib/BaseSuite.test/web.test.ts
|
|
15
|
+
init_dirname();
|
|
16
|
+
init_buffer();
|
|
17
|
+
init_process();
|
|
18
|
+
|
|
19
|
+
// src/lib/BaseSuite.test/test.ts
|
|
20
|
+
init_dirname();
|
|
21
|
+
init_buffer();
|
|
22
|
+
init_process();
|
|
8
23
|
|
|
9
24
|
// src/lib/BaseSuite.test/mock.ts
|
|
25
|
+
init_dirname();
|
|
26
|
+
init_buffer();
|
|
27
|
+
init_process();
|
|
10
28
|
var MockGiven = class extends BaseGiven {
|
|
11
29
|
constructor(name, features, whens, thens) {
|
|
12
30
|
super(
|
|
@@ -398,7 +416,7 @@ var testAdapter = {
|
|
|
398
416
|
}
|
|
399
417
|
return result;
|
|
400
418
|
} catch (e) {
|
|
401
|
-
console.error("Then error:", e);
|
|
419
|
+
console.error("Then error:", e.toString());
|
|
402
420
|
console.error("Full store state:", JSON.stringify(store, null, 2));
|
|
403
421
|
throw e;
|
|
404
422
|
}
|
|
@@ -1,9 +1,22 @@
|
|
|
1
1
|
import {
|
|
2
2
|
BaseBuilder,
|
|
3
3
|
Web_default
|
|
4
|
-
} from "../../../chunk-
|
|
4
|
+
} from "../../../chunk-U7AW26HL.mjs";
|
|
5
|
+
import {
|
|
6
|
+
init_buffer,
|
|
7
|
+
init_dirname,
|
|
8
|
+
init_process
|
|
9
|
+
} from "../../../chunk-HPYA4YZC.mjs";
|
|
10
|
+
|
|
11
|
+
// src/lib/baseBuilder.test/baseBuilder.test.web.ts
|
|
12
|
+
init_dirname();
|
|
13
|
+
init_buffer();
|
|
14
|
+
init_process();
|
|
5
15
|
|
|
6
16
|
// src/lib/baseBuilder.test/baseBuilder.test.specification.ts
|
|
17
|
+
init_dirname();
|
|
18
|
+
init_buffer();
|
|
19
|
+
init_process();
|
|
7
20
|
var specification = (Suite, Given, When, Then) => {
|
|
8
21
|
return [
|
|
9
22
|
Suite.Default("Testing BaseBuilder functionality", {
|
|
@@ -31,7 +44,15 @@ var specification = (Suite, Given, When, Then) => {
|
|
|
31
44
|
];
|
|
32
45
|
};
|
|
33
46
|
|
|
47
|
+
// src/lib/baseBuilder.test/baseBuilder.test.implementation.ts
|
|
48
|
+
init_dirname();
|
|
49
|
+
init_buffer();
|
|
50
|
+
init_process();
|
|
51
|
+
|
|
34
52
|
// src/lib/baseBuilder.test/baseBuilder.test.mock.ts
|
|
53
|
+
init_dirname();
|
|
54
|
+
init_buffer();
|
|
55
|
+
init_process();
|
|
35
56
|
var MockBaseBuilder = class extends BaseBuilder {
|
|
36
57
|
constructor(input, suitesOverrides = {}, givenOverrides = {}, whenOverrides = {}, thenOverrides = {}, testResourceRequirement = { ports: 0 }, testSpecification = () => []) {
|
|
37
58
|
super(
|
|
@@ -62,7 +83,7 @@ var MockBaseBuilder = class extends BaseBuilder {
|
|
|
62
83
|
failed: false,
|
|
63
84
|
fails: 0,
|
|
64
85
|
artifacts: [],
|
|
65
|
-
logPromise: Promise.resolve(),
|
|
86
|
+
// logPromise: Promise.resolve(),
|
|
66
87
|
features: []
|
|
67
88
|
});
|
|
68
89
|
}
|
|
@@ -184,6 +205,9 @@ var implementation = {
|
|
|
184
205
|
};
|
|
185
206
|
|
|
186
207
|
// src/lib/baseBuilder.test/baseBuilder.test.adapter.ts
|
|
208
|
+
init_dirname();
|
|
209
|
+
init_buffer();
|
|
210
|
+
init_process();
|
|
187
211
|
var testAdapter = {
|
|
188
212
|
beforeAll: async (input, testResource, pm) => input,
|
|
189
213
|
beforeEach: async (subject, initializer, testResource, initialValues, pm) => {
|
|
@@ -193,7 +217,7 @@ var testAdapter = {
|
|
|
193
217
|
initialValues
|
|
194
218
|
});
|
|
195
219
|
const result = initializer();
|
|
196
|
-
console.log("Initialization result:", result);
|
|
220
|
+
console.log("Initialization result:", result.toString());
|
|
197
221
|
return result;
|
|
198
222
|
},
|
|
199
223
|
andWhen: async (store, whenCB, testResource, utils) => {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
/Users/adam/Code/testeranto/src/lib/abstractBase.ts (
|
|
1
|
+
/Users/adam/Code/testeranto/src/lib/abstractBase.ts (244,17): Catch clause variable type annotation must be 'any' or 'unknown' if specified.
|
|
2
|
+
/Users/adam/Code/testeranto/src/lib/abstractBase.ts (301,39): Expected 1 arguments, but got 2.
|
|
2
3
|
/Users/adam/Code/testeranto/src/lib/basebuilder.ts (79,15): This expression is not callable.
|
|
3
4
|
Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
|
|
4
5
|
Type 'void' has no call signatures.
|
|
@@ -21,6 +22,12 @@
|
|
|
21
22
|
Types of property 'assertThis' are incompatible.
|
|
22
23
|
Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
23
24
|
Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
25
|
+
/Users/adam/Code/testeranto/src/PM/pure.ts (114,3): Property 'customScreenShot' in type 'PM_Pure' is not assignable to the same property in base type 'PM'.
|
|
26
|
+
Type '(opts: ScreencastOptions, page: string) => any' is not assignable to type '(opts: { path: string; }, page?: string | undefined) => any'.
|
|
27
|
+
Types of parameters 'opts' and 'opts' are incompatible.
|
|
28
|
+
Type '{ path: string; }' is not assignable to type 'ScreencastOptions'.
|
|
29
|
+
Types of property 'path' are incompatible.
|
|
30
|
+
Type 'string' is not assignable to type '`${string}.webm`'.
|
|
24
31
|
/Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
|
|
25
32
|
/Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
|
|
26
33
|
/Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
|
|
@@ -91,5 +98,4 @@
|
|
|
91
98
|
Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
|
|
92
99
|
Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
|
|
93
100
|
/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<...>; }, keyof M> & M & { ...; }'.
|
|
94
|
-
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
|
|
95
|
-
/Users/adam/Code/testeranto/src/Pure.ts (56,58): Property 'testImplementation' does not exist on type 'PureTesteranto<I, O, M>'.
|
|
101
|
+
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
src/components/TestStatusBadge.tsx
|
|
2
|
+
13:16 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
|
|
3
|
+
- undefined (fix)
|
|
4
|
+
- undefined (fix)
|
|
5
|
+
14:17 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
|
|
6
|
+
- undefined (fix)
|
|
7
|
+
- undefined (fix)
|
|
8
|
+
|
|
9
|
+
src/components/pure/ProjectPageView.test/implementation.tsx
|
|
10
|
+
1:18 'expect' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
11
|
+
45:18 'container' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
12
|
+
45:29 'html' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
13
|
+
47:11 Unexpected 'debugger' statement. (no-debugger)
|
package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/logs.txt
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools
|
|
2
|
+
You might need to use a local HTTP server (instead of file://): https://reactjs.org/link/react-devtools-faq font-weight:bold
|
|
3
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":23438,"columnNumber":24}
|
|
4
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":23438,"columnNumber":24},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":23458,"columnNumber":8},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-HPYA4YZC.mjs","lineNumber":10,"columnNumber":49},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":23474,"columnNumber":23},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-HPYA4YZC.mjs","lineNumber":10,"columnNumber":49},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":23486,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-HPYA4YZC.mjs","lineNumber":10,"columnNumber":49},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26290,"columnNumber":28}]
|
|
5
|
+
[DEBUG] BaseSuite constructor - name: ProjectPageView Component Tests index: 0
|
|
6
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26091,"columnNumber":12}
|
|
7
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26091,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26180,"columnNumber":6},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26010,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":30457,"columnNumber":10},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":25931,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26062,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26176,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26237,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26276,"columnNumber":9},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26390,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":37171,"columnNumber":30}]
|
|
8
|
+
[DEBUG] BaseSuite initialized: ProjectPageView Component Tests 0
|
|
9
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26096,"columnNumber":12}
|
|
10
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26096,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26180,"columnNumber":6},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26010,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":30457,"columnNumber":10},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":25931,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26062,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26176,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26237,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26276,"columnNumber":9},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26390,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":37171,"columnNumber":30}]
|
|
11
|
+
[DEBUG] BaseSuite givens: JSHandle@array
|
|
12
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26097,"columnNumber":12}
|
|
13
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26097,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26180,"columnNumber":6},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26010,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":30457,"columnNumber":10},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":25931,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26062,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26176,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26237,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26276,"columnNumber":9},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":26390,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs","lineNumber":37171,"columnNumber":30}]
|
|
14
|
+
%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools
|
|
15
|
+
You might need to use a local HTTP server (instead of file://): https://reactjs.org/link/react-devtools-faq font-weight:bold
|
|
16
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":23438,"columnNumber":24}
|
|
17
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":23438,"columnNumber":24},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":23458,"columnNumber":8},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-HPYA4YZC.mjs","lineNumber":10,"columnNumber":49},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":23474,"columnNumber":23},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-HPYA4YZC.mjs","lineNumber":10,"columnNumber":49},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":23486,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/chunk-HPYA4YZC.mjs","lineNumber":10,"columnNumber":49},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26290,"columnNumber":28}]
|
|
18
|
+
[DEBUG] BaseSuite constructor - name: ProjectPageView Component Tests index: 0
|
|
19
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26091,"columnNumber":12}
|
|
20
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26091,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26180,"columnNumber":6},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26010,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":30457,"columnNumber":10},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":25931,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26062,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26176,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26237,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26276,"columnNumber":9},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26390,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":37171,"columnNumber":30}]
|
|
21
|
+
[DEBUG] BaseSuite initialized: ProjectPageView Component Tests 0
|
|
22
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26096,"columnNumber":12}
|
|
23
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26096,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26180,"columnNumber":6},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26010,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":30457,"columnNumber":10},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":25931,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26062,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26176,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26237,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26276,"columnNumber":9},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26390,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":37171,"columnNumber":30}]
|
|
24
|
+
[DEBUG] BaseSuite givens: JSHandle@array
|
|
25
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26097,"columnNumber":12}
|
|
26
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26097,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26180,"columnNumber":6},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26010,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":30457,"columnNumber":10},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":25931,"columnNumber":17},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26062,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26176,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26237,"columnNumber":4},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26276,"columnNumber":9},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26390,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":37171,"columnNumber":30}]
|
|
27
|
+
beforeAll - setting up test environment
|
|
28
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26308,"columnNumber":14}
|
|
29
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26308,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26188,"columnNumber":94},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26135,"columnNumber":31},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":25939,"columnNumber":31},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":25963,"columnNumber":34},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26272,"columnNumber":34},{"url":"pptr:evaluate;file%3A%2F%2F%2FUsers%2Fadam%2FCode%2Ftesteranto%2Fsrc%2FPM%2Fmain.ts%3A18%3A1422","lineNumber":5,"columnNumber":39}]
|
|
30
|
+
Created React root
|
|
31
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26318,"columnNumber":16}
|
|
32
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26318,"columnNumber":16},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26188,"columnNumber":94},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26135,"columnNumber":31},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":25939,"columnNumber":31},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":25963,"columnNumber":34},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26272,"columnNumber":34},{"url":"pptr:evaluate;file%3A%2F%2F%2FUsers%2Fadam%2FCode%2Ftesteranto%2Fsrc%2FPM%2Fmain.ts%3A18%3A1422","lineNumber":5,"columnNumber":39}]
|
|
33
|
+
beforeEach - initializing with: JSHandle@object
|
|
34
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26327,"columnNumber":14}
|
|
35
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26327,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26199,"columnNumber":29},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":25781,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26143,"columnNumber":31}]
|
|
36
|
+
beforeEach - initializing test with values: JSHandle@array
|
|
37
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26328,"columnNumber":14}
|
|
38
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26328,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26199,"columnNumber":29},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":25781,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26143,"columnNumber":31}]
|
|
39
|
+
Rendering test component...
|
|
40
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26347,"columnNumber":18}
|
|
41
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26347,"columnNumber":18},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26330,"columnNumber":21},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26199,"columnNumber":29},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":25781,"columnNumber":30},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26143,"columnNumber":31}]
|
|
42
|
+
Component mounted successfully
|
|
43
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26337,"columnNumber":24}
|
|
44
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26337,"columnNumber":24},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26300,"columnNumber":18},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":18927,"columnNumber":33},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":19878,"columnNumber":16},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":19867,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":19818,"columnNumber":10},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":21251,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":21175,"columnNumber":12},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":20703,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":20616,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":2093,"columnNumber":41},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":2072,"columnNumber":21},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":2280,"columnNumber":28}]
|
|
45
|
+
butThen
|
|
46
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26360,"columnNumber":14}
|
|
47
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26360,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26221,"columnNumber":35},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":25885,"columnNumber":16},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":25805,"columnNumber":33}]
|
|
48
|
+
[Test] Verifying render output
|
|
49
|
+
{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":30436,"columnNumber":14}
|
|
50
|
+
[{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":30436,"columnNumber":14},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":25889,"columnNumber":28},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26361,"columnNumber":13},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":26221,"columnNumber":35},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":25885,"columnNumber":16},{"url":"file:///Users/adam/Code/testeranto/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1753431260296","lineNumber":25805,"columnNumber":33}]
|
package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/message.txt
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
|
|
2
|
+
Fix the failing tests described in testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/tests.json and testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/logs.txt. Focus on the bdd tests before all other concerns. You may add any debugging you think is necessary.
|
package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/prompt.txt
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
|
|
2
|
+
/add src/components/pure/ProjectPageView.test/index.ts
|
|
3
|
+
/add src/components/pure/ProjectPageView.test/implementation.tsx
|
|
4
|
+
/add src/components/pure/ProjectPageView.test/specification.ts
|
|
5
|
+
/add src/components/pure/ProjectPageView.tsx
|
|
6
|
+
/add src/NavBar.tsx
|
|
7
|
+
/add src/components/TestStatusBadge.tsx
|
|
8
|
+
|
|
9
|
+
/read node_modules/testeranto/docs/index.md
|
|
10
|
+
/read node_modules/testeranto/docs/style.md
|
|
11
|
+
/read node_modules/testeranto/docs/testing.ai.txt
|
|
12
|
+
/read node_modules/testeranto/src/CoreTypes.ts
|
|
13
|
+
|
|
14
|
+
/read testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/tests.json
|
|
15
|
+
/read testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/logs.txt
|
|
16
|
+
/read testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/type_errors.txt
|
|
17
|
+
/read testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt
|
package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/tests.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ProjectPageView Component Tests",
|
|
3
|
+
"givens": [
|
|
4
|
+
{
|
|
5
|
+
"key": "basicRender",
|
|
6
|
+
"name": "Default",
|
|
7
|
+
"whens": [
|
|
8
|
+
{
|
|
9
|
+
"name": "renderComponent: "
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"thens": [
|
|
13
|
+
{
|
|
14
|
+
"name": "shouldRender: undefined",
|
|
15
|
+
"error": false
|
|
16
|
+
}
|
|
17
|
+
],
|
|
18
|
+
"error": null,
|
|
19
|
+
"features": [
|
|
20
|
+
"ProjectPageView should render",
|
|
21
|
+
"It should contain a container-fluid div",
|
|
22
|
+
"It should render the NavBar component"
|
|
23
|
+
]
|
|
24
|
+
}
|
|
25
|
+
],
|
|
26
|
+
"fails": 0,
|
|
27
|
+
"features": [
|
|
28
|
+
"ProjectPageView should render",
|
|
29
|
+
"It should contain a container-fluid div",
|
|
30
|
+
"It should render the NavBar component"
|
|
31
|
+
]
|
|
32
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic.ts (50,45): Property 'subject' does not exist on type 'Readonly<{}>'.
|
|
2
|
+
/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic.ts (104,26): Argument of type 'CElement<any, TesterantoComponent>' is not assignable to parameter of type 'ReactNode'.
|
|
3
|
+
Property 'children' is missing in type 'ComponentElement<any, TesterantoComponent>' but required in type 'ReactPortal'.
|
|
4
|
+
/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react/component/index.ts (3,44): Cannot find module '../../../Types' or its corresponding type declarations.
|
|
5
|
+
/Users/adam/Code/testeranto/node_modules/testeranto/src/lib/abstractBase.ts (222,17): Catch clause variable type annotation must be 'any' or 'unknown' if specified.
|
|
6
|
+
/Users/adam/Code/testeranto/node_modules/testeranto/src/lib/basebuilder.ts (79,15): This expression is not callable.
|
|
7
|
+
Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
|
|
8
|
+
Type 'void' has no call signatures.
|
|
9
|
+
/Users/adam/Code/testeranto/node_modules/testeranto/src/lib/classBuilder.ts (86,18): A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
10
|
+
/Users/adam/Code/testeranto/node_modules/testeranto/src/lib/classBuilder.ts (101,28): A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
11
|
+
/Users/adam/Code/testeranto/node_modules/testeranto/src/lib/core.ts (46,7): Argument of type 'Omit<{ suites: import("/Users/adam/Code/testeranto/node_modules/testeranto/src/Types").TestSuiteImplementation<O>; givens: import("/Users/adam/Code/testeranto/node_modules/testeranto/src/Types").TestGivenImplementation<I, O>; whens: import("/Users/adam/Code/testeranto/node_modules/testeranto/src/Types").TestWhenImpl...' is not assignable to parameter of type 'Omit<{ suites: import("/Users/adam/Code/testeranto/node_modules/testeranto/src/Types").TestSuiteImplementation<O>; givens: import("/Users/adam/Code/testeranto/node_modules/testeranto/src/Types").TestGivenImplementation<I, O>; whens: import("/Users/adam/Code/testeranto/node_modules/testeranto/src/Types").TestWhenImpl...'.
|
|
12
|
+
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }' is not assignable to type '{ suites: Record<string, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'.
|
|
13
|
+
Types of property 'suites' are incompatible.
|
|
14
|
+
Type 'Record<string, any>' is not assignable to type 'Record<string, never>'.
|
|
15
|
+
'string' index signatures are incompatible.
|
|
16
|
+
Type 'any' is not assignable to type 'never'.
|
|
17
|
+
/Users/adam/Code/testeranto/node_modules/testeranto/src/lib/index.ts (16,3): Type '(subject: T["isubject"], initialValues: T["iinitialValues"], x: unknown, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<T["isubject"]>' is not assignable to type '(subject: T["isubject"], initializer: (c?: any) => T["given"], testResource: ITTestResourceConfiguration, initialValues: any, pm: IPM) => Promise<...>'.
|
|
18
|
+
Types of parameters 'initialValues' and 'initializer' are incompatible.
|
|
19
|
+
Type '(c?: any) => T["given"]' is not assignable to type 'T["iinitialValues"]'.
|
|
20
|
+
'T["iinitialValues"]' could be instantiated with an arbitrary type which could be unrelated to '(c?: any) => T["given"]'.
|
|
21
|
+
/Users/adam/Code/testeranto/node_modules/testeranto/src/lib/index.ts (18,20): Type '"iinitialValues"' cannot be used to index type 'T'.
|
|
22
|
+
/Users/adam/Code/testeranto/node_modules/testeranto/src/lib/index.ts (40,13): This expression is not callable.
|
|
23
|
+
Type 'unknown' has no call signatures.
|
|
24
|
+
/Users/adam/Code/testeranto/node_modules/testeranto/src/lib/index.ts (52,3): Type '{ assertThis?: ((x: T["then"]) => any) | undefined; andWhen?: ((store: T["istore"], whenCB: T["when"], testResource: ITTestResourceConfiguration, pm: IPM) => Promise<T["istore"]>) | undefined; ... 4 more ...; beforeEach?: ((subject: T["isubject"], initializer: (c?: any) => T["given"], testResource: ITTestResourceCon...' is not assignable to type 'ITestAdapter<T>'.
|
|
25
|
+
Types of property 'assertThis' are incompatible.
|
|
26
|
+
Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
27
|
+
Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
28
|
+
/Users/adam/Code/testeranto/node_modules/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
|
|
29
|
+
/Users/adam/Code/testeranto/node_modules/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
|
|
30
|
+
/Users/adam/Code/testeranto/node_modules/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
|
|
31
|
+
/Users/adam/Code/testeranto/node_modules/testeranto/src/Web.ts (40,7): Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.
|
|
32
|
+
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
|
|
33
|
+
/Users/adam/Code/testeranto/node_modules/testeranto/src/Web.ts (48,14): Expected 0 arguments, but got 1.
|
|
34
|
+
/Users/adam/Code/testeranto/node_modules/testeranto/src/Web.ts (67,14): Expected 0 arguments, but got 1.
|
|
35
|
+
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/implementation.tsx (45,9): Type '({ container, html }: { container: any; html: any; }, pm: any) => Promise<void>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
36
|
+
Target signature provides too few arguments. Expected 2 or more, but got 1.
|
|
37
|
+
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/implementation.tsx (74,9): Type '({ container }: { container: any; }, pm: any) => Promise<{ container: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
38
|
+
Target signature provides too few arguments. Expected 2 or more, but got 1.
|
|
39
|
+
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/index.ts (8,27): Type 'I' does not satisfy the constraint 'Ibdd_out'.
|
|
40
|
+
Type 'I' is missing the following properties from type 'Ibdd_out': suites, givens, whens, thens
|
|
41
|
+
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.tsx (217,19): 'testData' is of type 'unknown'.
|
|
42
|
+
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.tsx (218,29): 'testData' is of type 'unknown'.
|
|
43
|
+
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.tsx (219,26): 'testData' is of type 'unknown'.
|
|
44
|
+
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.tsx (220,28): 'testData' is of type 'unknown'.
|
|
45
|
+
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.tsx (298,24): Type '{ testName: string; testsExist: boolean; runTimeErrors: number; }' is missing the following properties from type 'TestStatusBadgeProps': typeErrors, staticErrors
|
|
46
|
+
/Users/adam/Code/testeranto/src/lib/abstractBase.ts (244,17): Catch clause variable type annotation must be 'any' or 'unknown' if specified.
|
|
47
|
+
/Users/adam/Code/testeranto/src/lib/abstractBase.ts (301,39): Expected 1 arguments, but got 2.
|
|
48
|
+
/Users/adam/Code/testeranto/src/lib/index.ts (16,3): Type '(subject: T["isubject"], initialValues: T["iinitialValues"], x: unknown, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<T["isubject"]>' is not assignable to type '(subject: T["isubject"], initializer: (c?: any) => T["given"], testResource: ITTestResourceConfiguration, initialValues: any, pm: IPM) => Promise<...>'.
|
|
49
|
+
Types of parameters 'initialValues' and 'initializer' are incompatible.
|
|
50
|
+
Type '(c?: any) => T["given"]' is not assignable to type 'T["iinitialValues"]'.
|
|
51
|
+
'T["iinitialValues"]' could be instantiated with an arbitrary type which could be unrelated to '(c?: any) => T["given"]'.
|
|
52
|
+
/Users/adam/Code/testeranto/src/lib/index.ts (18,20): Type '"iinitialValues"' cannot be used to index type 'T'.
|
|
53
|
+
/Users/adam/Code/testeranto/src/lib/index.ts (40,13): This expression is not callable.
|
|
54
|
+
Type 'unknown' has no call signatures.
|
|
55
|
+
/Users/adam/Code/testeranto/src/lib/index.ts (52,3): Type '{ assertThis?: ((x: T["then"]) => any) | undefined; andWhen?: ((store: T["istore"], whenCB: T["when"], testResource: ITTestResourceConfiguration, pm: IPM) => Promise<T["istore"]>) | undefined; ... 4 more ...; beforeEach?: ((subject: T["isubject"], initializer: (c?: any) => T["given"], testResource: ITTestResourceCon...' is not assignable to type 'ITestAdapter<T>'.
|
|
56
|
+
Types of property 'assertThis' are incompatible.
|
|
57
|
+
Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
58
|
+
Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
59
|
+
/Users/adam/Code/testeranto/src/NavBar.tsx (76,23): Object literal may only specify known properties, and '':hover'' does not exist in type 'Properties<string | number, string & {}>'.
|
|
60
|
+
/Users/adam/Code/testeranto/src/PM/pure.ts (114,3): Property 'customScreenShot' in type 'PM_Pure' is not assignable to the same property in base type 'PM'.
|
|
61
|
+
Type '(opts: ScreencastOptions, page: string) => any' is not assignable to type '(opts: { path: string; }, page?: string | undefined) => any'.
|
|
62
|
+
Types of parameters 'opts' and 'opts' are incompatible.
|
|
63
|
+
Type '{ path: string; }' is not assignable to type 'ScreencastOptions'.
|
|
64
|
+
Types of property 'path' are incompatible.
|
|
65
|
+
Type 'string' is not assignable to type '`${string}.webm`'.
|
|
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'?
|
|
Binary file
|
|
@@ -8,17 +8,20 @@
|
|
|
8
8
|
"thens": [
|
|
9
9
|
{
|
|
10
10
|
"name": "SuiteNameMatches: testSuite",
|
|
11
|
-
"error": "Error: Suite name is undefined. Expected: testSuite"
|
|
11
|
+
"error": "Error: Suite name is undefined. Expected: testSuite",
|
|
12
|
+
"artifacts": []
|
|
12
13
|
},
|
|
13
14
|
{
|
|
14
15
|
"name": "SuiteIndexMatches: 0",
|
|
15
|
-
"error": "Error: Expected suite index 0, got undefined"
|
|
16
|
+
"error": "Error: Expected suite index 0, got undefined",
|
|
17
|
+
"artifacts": []
|
|
16
18
|
}
|
|
17
19
|
],
|
|
18
20
|
"error": null,
|
|
19
21
|
"features": [
|
|
20
22
|
"BaseSuite should initialize with correct name and index"
|
|
21
|
-
]
|
|
23
|
+
],
|
|
24
|
+
"artifacts": []
|
|
22
25
|
}
|
|
23
26
|
],
|
|
24
27
|
"fails": 0,
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
/Users/adam/Code/testeranto/src/lib/abstractBase.ts (
|
|
1
|
+
/Users/adam/Code/testeranto/src/lib/abstractBase.ts (244,17): Catch clause variable type annotation must be 'any' or 'unknown' if specified.
|
|
2
|
+
/Users/adam/Code/testeranto/src/lib/abstractBase.ts (301,39): Expected 1 arguments, but got 2.
|
|
2
3
|
/Users/adam/Code/testeranto/src/lib/basebuilder.ts (79,15): This expression is not callable.
|
|
3
4
|
Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
|
|
4
5
|
Type 'void' has no call signatures.
|
|
@@ -99,6 +100,12 @@
|
|
|
99
100
|
Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
100
101
|
/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<...>; }, keyof M> & M & { ...; }'.
|
|
101
102
|
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
|
|
103
|
+
/Users/adam/Code/testeranto/src/PM/pure.ts (114,3): Property 'customScreenShot' in type 'PM_Pure' is not assignable to the same property in base type 'PM'.
|
|
104
|
+
Type '(opts: ScreencastOptions, page: string) => any' is not assignable to type '(opts: { path: string; }, page?: string | undefined) => any'.
|
|
105
|
+
Types of parameters 'opts' and 'opts' are incompatible.
|
|
106
|
+
Type '{ path: string; }' is not assignable to type 'ScreencastOptions'.
|
|
107
|
+
Types of property 'path' are incompatible.
|
|
108
|
+
Type 'string' is not assignable to type '`${string}.webm`'.
|
|
102
109
|
/Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
|
|
103
110
|
/Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
|
|
104
111
|
/Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
|
|
@@ -8,17 +8,20 @@
|
|
|
8
8
|
"thens": [
|
|
9
9
|
{
|
|
10
10
|
"name": "SuiteNameMatches: testSuite",
|
|
11
|
-
"error": "Error: Suite name is undefined. Expected: testSuite"
|
|
11
|
+
"error": "Error: Suite name is undefined. Expected: testSuite",
|
|
12
|
+
"artifacts": []
|
|
12
13
|
},
|
|
13
14
|
{
|
|
14
15
|
"name": "SuiteIndexMatches: 0",
|
|
15
|
-
"error": "Error: Expected suite index 0, got undefined"
|
|
16
|
+
"error": "Error: Expected suite index 0, got undefined",
|
|
17
|
+
"artifacts": []
|
|
16
18
|
}
|
|
17
19
|
],
|
|
18
20
|
"error": null,
|
|
19
21
|
"features": [
|
|
20
22
|
"BaseSuite should initialize with correct name and index"
|
|
21
|
-
]
|
|
23
|
+
],
|
|
24
|
+
"artifacts": []
|
|
22
25
|
}
|
|
23
26
|
],
|
|
24
27
|
"fails": 0,
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
/Users/adam/Code/testeranto/src/lib/abstractBase.ts (
|
|
1
|
+
/Users/adam/Code/testeranto/src/lib/abstractBase.ts (244,17): Catch clause variable type annotation must be 'any' or 'unknown' if specified.
|
|
2
|
+
/Users/adam/Code/testeranto/src/lib/abstractBase.ts (301,39): Expected 1 arguments, but got 2.
|
|
2
3
|
/Users/adam/Code/testeranto/src/lib/basebuilder.ts (79,15): This expression is not callable.
|
|
3
4
|
Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
|
|
4
5
|
Type 'void' has no call signatures.
|
|
@@ -97,9 +98,14 @@
|
|
|
97
98
|
Types of property 'assertThis' are incompatible.
|
|
98
99
|
Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
99
100
|
Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
101
|
+
/Users/adam/Code/testeranto/src/PM/pure.ts (114,3): Property 'customScreenShot' in type 'PM_Pure' is not assignable to the same property in base type 'PM'.
|
|
102
|
+
Type '(opts: ScreencastOptions, page: string) => any' is not assignable to type '(opts: { path: string; }, page?: string | undefined) => any'.
|
|
103
|
+
Types of parameters 'opts' and 'opts' are incompatible.
|
|
104
|
+
Type '{ path: string; }' is not assignable to type 'ScreencastOptions'.
|
|
105
|
+
Types of property 'path' are incompatible.
|
|
106
|
+
Type 'string' is not assignable to type '`${string}.webm`'.
|
|
100
107
|
/Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
|
|
101
108
|
/Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
|
|
102
109
|
/Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
|
|
103
110
|
/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<...>; }, keyof M> & M & { ...; }'.
|
|
104
|
-
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
|
|
105
|
-
/Users/adam/Code/testeranto/src/Pure.ts (56,58): Property 'testImplementation' does not exist on type 'PureTesteranto<I, O, M>'.
|
|
111
|
+
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
|
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
|
-
/add src/lib/BaseSuite.test/mock.ts
|
|
3
|
-
/add src/lib/BaseSuite.test/test.ts
|
|
4
2
|
/add src/lib/BaseSuite.test/web.test.ts
|
|
3
|
+
/add src/lib/BaseSuite.test/test.ts
|
|
4
|
+
/add src/lib/BaseSuite.test/mock.ts
|
|
5
5
|
|
|
6
6
|
/read node_modules/testeranto/docs/index.md
|
|
7
7
|
/read node_modules/testeranto/docs/style.md
|
|
@@ -8,17 +8,20 @@
|
|
|
8
8
|
"thens": [
|
|
9
9
|
{
|
|
10
10
|
"name": "SuiteNameMatches: testSuite",
|
|
11
|
-
"error": "Error: Suite name is undefined. Expected: testSuite"
|
|
11
|
+
"error": "Error: Suite name is undefined. Expected: testSuite",
|
|
12
|
+
"artifacts": []
|
|
12
13
|
},
|
|
13
14
|
{
|
|
14
15
|
"name": "SuiteIndexMatches: 0",
|
|
15
|
-
"error": "Error: Expected suite index 0, got undefined"
|
|
16
|
+
"error": "Error: Expected suite index 0, got undefined",
|
|
17
|
+
"artifacts": []
|
|
16
18
|
}
|
|
17
19
|
],
|
|
18
20
|
"error": null,
|
|
19
21
|
"features": [
|
|
20
22
|
"BaseSuite should initialize with correct name and index"
|
|
21
|
-
]
|
|
23
|
+
],
|
|
24
|
+
"artifacts": []
|
|
22
25
|
}
|
|
23
26
|
],
|
|
24
27
|
"fails": 0,
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
/Users/adam/Code/testeranto/src/lib/abstractBase.ts (
|
|
1
|
+
/Users/adam/Code/testeranto/src/lib/abstractBase.ts (244,17): Catch clause variable type annotation must be 'any' or 'unknown' if specified.
|
|
2
|
+
/Users/adam/Code/testeranto/src/lib/abstractBase.ts (301,39): Expected 1 arguments, but got 2.
|
|
2
3
|
/Users/adam/Code/testeranto/src/lib/basebuilder.ts (79,15): This expression is not callable.
|
|
3
4
|
Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
|
|
4
5
|
Type 'void' has no call signatures.
|
|
@@ -97,10 +98,14 @@
|
|
|
97
98
|
Types of property 'assertThis' are incompatible.
|
|
98
99
|
Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
99
100
|
Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
101
|
+
/Users/adam/Code/testeranto/src/PM/pure.ts (114,3): Property 'customScreenShot' in type 'PM_Pure' is not assignable to the same property in base type 'PM'.
|
|
102
|
+
Type '(opts: ScreencastOptions, page: string) => any' is not assignable to type '(opts: { path: string; }, page?: string | undefined) => any'.
|
|
103
|
+
Types of parameters 'opts' and 'opts' are incompatible.
|
|
104
|
+
Type '{ path: string; }' is not assignable to type 'ScreencastOptions'.
|
|
105
|
+
Types of property 'path' are incompatible.
|
|
106
|
+
Type 'string' is not assignable to type '`${string}.webm`'.
|
|
100
107
|
/Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
|
|
101
108
|
/Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
|
|
102
109
|
/Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
|
|
103
|
-
/Users/adam/Code/testeranto/src/Web.ts (
|
|
104
|
-
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
|
|
105
|
-
/Users/adam/Code/testeranto/src/Web.ts (48,14): Expected 0 arguments, but got 1.
|
|
106
|
-
/Users/adam/Code/testeranto/src/Web.ts (67,14): Expected 0 arguments, but got 1.
|
|
110
|
+
/Users/adam/Code/testeranto/src/Web.ts (43,7): Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.
|
|
111
|
+
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
|