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
package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/logs.txt
CHANGED
|
Binary file
|
package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json
CHANGED
|
@@ -8,25 +8,30 @@
|
|
|
8
8
|
"thens": [
|
|
9
9
|
{
|
|
10
10
|
"name": "initializedProperly: undefined",
|
|
11
|
-
"error": false
|
|
11
|
+
"error": false,
|
|
12
|
+
"artifacts": []
|
|
12
13
|
},
|
|
13
14
|
{
|
|
14
15
|
"name": "artifactsTracked: undefined",
|
|
15
|
-
"error": false
|
|
16
|
+
"error": false,
|
|
17
|
+
"artifacts": []
|
|
16
18
|
},
|
|
17
19
|
{
|
|
18
20
|
"name": "jobsCreated: undefined",
|
|
19
|
-
"error": false
|
|
21
|
+
"error": false,
|
|
22
|
+
"artifacts": []
|
|
20
23
|
},
|
|
21
24
|
{
|
|
22
25
|
"name": "specsGenerated: undefined",
|
|
23
|
-
"error": false
|
|
26
|
+
"error": false,
|
|
27
|
+
"artifacts": []
|
|
24
28
|
}
|
|
25
29
|
],
|
|
26
30
|
"error": null,
|
|
27
31
|
"features": [
|
|
28
32
|
"BaseBuilder should initialize correctly"
|
|
29
|
-
]
|
|
33
|
+
],
|
|
34
|
+
"artifacts": []
|
|
30
35
|
},
|
|
31
36
|
{
|
|
32
37
|
"key": "testSpecsGeneration",
|
|
@@ -35,13 +40,15 @@
|
|
|
35
40
|
"thens": [
|
|
36
41
|
{
|
|
37
42
|
"name": "specsGenerated: undefined",
|
|
38
|
-
"error": false
|
|
43
|
+
"error": false,
|
|
44
|
+
"artifacts": []
|
|
39
45
|
}
|
|
40
46
|
],
|
|
41
47
|
"error": null,
|
|
42
48
|
"features": [
|
|
43
49
|
"BaseBuilder should generate specs from test specification"
|
|
44
|
-
]
|
|
50
|
+
],
|
|
51
|
+
"artifacts": []
|
|
45
52
|
},
|
|
46
53
|
{
|
|
47
54
|
"key": "testJobsCreation",
|
|
@@ -50,13 +57,15 @@
|
|
|
50
57
|
"thens": [
|
|
51
58
|
{
|
|
52
59
|
"name": "jobsCreated: undefined",
|
|
53
|
-
"error": false
|
|
60
|
+
"error": false,
|
|
61
|
+
"artifacts": []
|
|
54
62
|
}
|
|
55
63
|
],
|
|
56
64
|
"error": null,
|
|
57
65
|
"features": [
|
|
58
66
|
"BaseBuilder should create test jobs"
|
|
59
|
-
]
|
|
67
|
+
],
|
|
68
|
+
"artifacts": []
|
|
60
69
|
}
|
|
61
70
|
],
|
|
62
71
|
"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.test/baseBuilder.test.adapter.ts (8,49): Type 'Promise<{}>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.
|
|
3
4
|
Type '{}' is missing the following properties from type 'BaseBuilder<any, any, any, any, any, any>': specs, assertThis, testResourceRequirement, artifacts, and 12 more.
|
|
4
5
|
/Users/adam/Code/testeranto/src/lib/baseBuilder.test/baseBuilder.test.adapter.ts (9,3): Type '(subject: import("/Users/adam/Code/testeranto/src/lib/basebuilder").BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => import("/Users/adam/Code/testeranto/src/lib/basebuilder").BaseBuilder<any, any, any, any, any, any>, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestR...' is not assignable to type '(subject: import("/Users/adam/Code/testeranto/src/lib/basebuilder").BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => import("/Users/adam/Code/testeranto/src/lib/basebuilder").BaseBuilder<any, any, any, any, any, any>, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestR...'. Two different types with this name exist, but they are unrelated.
|
|
@@ -50,6 +51,12 @@
|
|
|
50
51
|
Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
51
52
|
/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 & { ...; }'.
|
|
52
53
|
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
|
|
54
|
+
/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'.
|
|
55
|
+
Type '(opts: ScreencastOptions, page: string) => any' is not assignable to type '(opts: { path: string; }, page?: string | undefined) => any'.
|
|
56
|
+
Types of parameters 'opts' and 'opts' are incompatible.
|
|
57
|
+
Type '{ path: string; }' is not assignable to type 'ScreencastOptions'.
|
|
58
|
+
Types of property 'path' are incompatible.
|
|
59
|
+
Type 'string' is not assignable to type '`${string}.webm`'.
|
|
53
60
|
/Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
|
|
54
61
|
/Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
|
|
55
62
|
/Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
|
|
@@ -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.test/baseBuilder.test.adapter.ts (8,49): Type 'Promise<{}>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.
|
|
3
4
|
Type '{}' is missing the following properties from type 'BaseBuilder<any, any, any, any, any, any>': specs, assertThis, testResourceRequirement, artifacts, and 12 more.
|
|
4
5
|
/Users/adam/Code/testeranto/src/lib/baseBuilder.test/baseBuilder.test.adapter.ts (9,3): Type '(subject: import("/Users/adam/Code/testeranto/src/lib/basebuilder").BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => import("/Users/adam/Code/testeranto/src/lib/basebuilder").BaseBuilder<any, any, any, any, any, any>, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestR...' is not assignable to type '(subject: import("/Users/adam/Code/testeranto/src/lib/basebuilder").BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => import("/Users/adam/Code/testeranto/src/lib/basebuilder").BaseBuilder<any, any, any, any, any, any>, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestR...'. Two different types with this name exist, but they are unrelated.
|
|
@@ -48,10 +49,14 @@
|
|
|
48
49
|
Types of property 'assertThis' are incompatible.
|
|
49
50
|
Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
50
51
|
Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
52
|
+
/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'.
|
|
53
|
+
Type '(opts: ScreencastOptions, page: string) => any' is not assignable to type '(opts: { path: string; }, page?: string | undefined) => any'.
|
|
54
|
+
Types of parameters 'opts' and 'opts' are incompatible.
|
|
55
|
+
Type '{ path: string; }' is not assignable to type 'ScreencastOptions'.
|
|
56
|
+
Types of property 'path' are incompatible.
|
|
57
|
+
Type 'string' is not assignable to type '`${string}.webm`'.
|
|
51
58
|
/Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
|
|
52
59
|
/Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
|
|
53
60
|
/Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
|
|
54
|
-
/Users/adam/Code/testeranto/src/Web.ts (
|
|
55
|
-
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
|
|
56
|
-
/Users/adam/Code/testeranto/src/Web.ts (48,14): Expected 0 arguments, but got 1.
|
|
57
|
-
/Users/adam/Code/testeranto/src/Web.ts (67,14): Expected 0 arguments, but got 1.
|
|
61
|
+
/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 & { ...; }'.
|
|
62
|
+
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
|
package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/logs.txt
CHANGED
|
Binary file
|
package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
|
|
2
|
+
/add src/lib/baseBuilder.test/baseBuilder.test.web.ts
|
|
2
3
|
/add src/lib/baseBuilder.test/baseBuilder.test.specification.ts
|
|
3
|
-
/add src/lib/baseBuilder.test/baseBuilder.test.mock.ts
|
|
4
4
|
/add src/lib/baseBuilder.test/baseBuilder.test.implementation.ts
|
|
5
|
+
/add src/lib/baseBuilder.test/baseBuilder.test.mock.ts
|
|
5
6
|
/add src/lib/baseBuilder.test/baseBuilder.test.adapter.ts
|
|
6
|
-
/add src/lib/baseBuilder.test/baseBuilder.test.web.ts
|
|
7
7
|
|
|
8
8
|
/read node_modules/testeranto/docs/index.md
|
|
9
9
|
/read node_modules/testeranto/docs/style.md
|
package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json
CHANGED
|
@@ -8,25 +8,30 @@
|
|
|
8
8
|
"thens": [
|
|
9
9
|
{
|
|
10
10
|
"name": "initializedProperly: undefined",
|
|
11
|
-
"error": false
|
|
11
|
+
"error": false,
|
|
12
|
+
"artifacts": []
|
|
12
13
|
},
|
|
13
14
|
{
|
|
14
15
|
"name": "artifactsTracked: undefined",
|
|
15
|
-
"error": false
|
|
16
|
+
"error": false,
|
|
17
|
+
"artifacts": []
|
|
16
18
|
},
|
|
17
19
|
{
|
|
18
20
|
"name": "jobsCreated: undefined",
|
|
19
|
-
"error": false
|
|
21
|
+
"error": false,
|
|
22
|
+
"artifacts": []
|
|
20
23
|
},
|
|
21
24
|
{
|
|
22
25
|
"name": "specsGenerated: undefined",
|
|
23
|
-
"error": false
|
|
26
|
+
"error": false,
|
|
27
|
+
"artifacts": []
|
|
24
28
|
}
|
|
25
29
|
],
|
|
26
30
|
"error": null,
|
|
27
31
|
"features": [
|
|
28
32
|
"BaseBuilder should initialize correctly"
|
|
29
|
-
]
|
|
33
|
+
],
|
|
34
|
+
"artifacts": []
|
|
30
35
|
},
|
|
31
36
|
{
|
|
32
37
|
"key": "testSpecsGeneration",
|
|
@@ -35,13 +40,15 @@
|
|
|
35
40
|
"thens": [
|
|
36
41
|
{
|
|
37
42
|
"name": "specsGenerated: undefined",
|
|
38
|
-
"error": false
|
|
43
|
+
"error": false,
|
|
44
|
+
"artifacts": []
|
|
39
45
|
}
|
|
40
46
|
],
|
|
41
47
|
"error": null,
|
|
42
48
|
"features": [
|
|
43
49
|
"BaseBuilder should generate specs from test specification"
|
|
44
|
-
]
|
|
50
|
+
],
|
|
51
|
+
"artifacts": []
|
|
45
52
|
},
|
|
46
53
|
{
|
|
47
54
|
"key": "testJobsCreation",
|
|
@@ -50,13 +57,15 @@
|
|
|
50
57
|
"thens": [
|
|
51
58
|
{
|
|
52
59
|
"name": "jobsCreated: undefined",
|
|
53
|
-
"error": false
|
|
60
|
+
"error": false,
|
|
61
|
+
"artifacts": []
|
|
54
62
|
}
|
|
55
63
|
],
|
|
56
64
|
"error": null,
|
|
57
65
|
"features": [
|
|
58
66
|
"BaseBuilder should create test jobs"
|
|
59
|
-
]
|
|
67
|
+
],
|
|
68
|
+
"artifacts": []
|
|
60
69
|
}
|
|
61
70
|
],
|
|
62
71
|
"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.test/baseBuilder.test.adapter.ts (8,49): Type 'Promise<{}>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.
|
|
3
4
|
Type '{}' is missing the following properties from type 'BaseBuilder<any, any, any, any, any, any>': specs, assertThis, testResourceRequirement, artifacts, and 12 more.
|
|
4
5
|
/Users/adam/Code/testeranto/src/lib/baseBuilder.test/baseBuilder.test.adapter.ts (9,3): Type '(subject: import("/Users/adam/Code/testeranto/src/lib/basebuilder").BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => import("/Users/adam/Code/testeranto/src/lib/basebuilder").BaseBuilder<any, any, any, any, any, any>, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestR...' is not assignable to type '(subject: import("/Users/adam/Code/testeranto/src/lib/basebuilder").BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => import("/Users/adam/Code/testeranto/src/lib/basebuilder").BaseBuilder<any, any, any, any, any, any>, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestR...'. Two different types with this name exist, but they are unrelated.
|
|
@@ -48,10 +49,14 @@
|
|
|
48
49
|
Types of property 'assertThis' are incompatible.
|
|
49
50
|
Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
50
51
|
Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
52
|
+
/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'.
|
|
53
|
+
Type '(opts: ScreencastOptions, page: string) => any' is not assignable to type '(opts: { path: string; }, page?: string | undefined) => any'.
|
|
54
|
+
Types of parameters 'opts' and 'opts' are incompatible.
|
|
55
|
+
Type '{ path: string; }' is not assignable to type 'ScreencastOptions'.
|
|
56
|
+
Types of property 'path' are incompatible.
|
|
57
|
+
Type 'string' is not assignable to type '`${string}.webm`'.
|
|
51
58
|
/Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
|
|
52
59
|
/Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
|
|
53
60
|
/Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
|
|
54
|
-
/Users/adam/Code/testeranto/src/Web.ts (
|
|
55
|
-
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
|
|
56
|
-
/Users/adam/Code/testeranto/src/Web.ts (48,14): Expected 0 arguments, but got 1.
|
|
57
|
-
/Users/adam/Code/testeranto/src/Web.ts (67,14): Expected 0 arguments, but got 1.
|
|
61
|
+
/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 & { ...; }'.
|
|
62
|
+
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
|
package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/logs.txt
CHANGED
|
Binary file
|
package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/tests.json
CHANGED
|
@@ -8,13 +8,15 @@
|
|
|
8
8
|
"thens": [
|
|
9
9
|
{
|
|
10
10
|
"name": "initializedProperly: undefined",
|
|
11
|
-
"error": false
|
|
11
|
+
"error": false,
|
|
12
|
+
"artifacts": []
|
|
12
13
|
}
|
|
13
14
|
],
|
|
14
15
|
"error": null,
|
|
15
16
|
"features": [
|
|
16
17
|
"ClassBuilder should initialize with default values"
|
|
17
|
-
]
|
|
18
|
+
],
|
|
19
|
+
"artifacts": []
|
|
18
20
|
},
|
|
19
21
|
{
|
|
20
22
|
"key": "customInput",
|
|
@@ -23,13 +25,15 @@
|
|
|
23
25
|
"thens": [
|
|
24
26
|
{
|
|
25
27
|
"name": "initializedProperly: undefined",
|
|
26
|
-
"error": false
|
|
28
|
+
"error": false,
|
|
29
|
+
"artifacts": []
|
|
27
30
|
}
|
|
28
31
|
],
|
|
29
32
|
"error": null,
|
|
30
33
|
"features": {
|
|
31
34
|
"custom": "input"
|
|
32
|
-
}
|
|
35
|
+
},
|
|
36
|
+
"artifacts": []
|
|
33
37
|
},
|
|
34
38
|
{
|
|
35
39
|
"key": "resourceRequirements",
|
|
@@ -38,7 +42,8 @@
|
|
|
38
42
|
"thens": [
|
|
39
43
|
{
|
|
40
44
|
"name": "resourceRequirementsSet: undefined",
|
|
41
|
-
"error": false
|
|
45
|
+
"error": false,
|
|
46
|
+
"artifacts": []
|
|
42
47
|
}
|
|
43
48
|
],
|
|
44
49
|
"error": null,
|
|
@@ -47,7 +52,8 @@
|
|
|
47
52
|
3000,
|
|
48
53
|
3001
|
|
49
54
|
]
|
|
50
|
-
}
|
|
55
|
+
},
|
|
56
|
+
"artifacts": []
|
|
51
57
|
},
|
|
52
58
|
{
|
|
53
59
|
"key": "specGeneration",
|
|
@@ -56,13 +62,15 @@
|
|
|
56
62
|
"thens": [
|
|
57
63
|
{
|
|
58
64
|
"name": "specsGenerated: undefined",
|
|
59
|
-
"error": false
|
|
65
|
+
"error": false,
|
|
66
|
+
"artifacts": []
|
|
60
67
|
}
|
|
61
68
|
],
|
|
62
69
|
"error": null,
|
|
63
70
|
"features": [
|
|
64
71
|
"Should generate specs from test specification"
|
|
65
|
-
]
|
|
72
|
+
],
|
|
73
|
+
"artifacts": []
|
|
66
74
|
},
|
|
67
75
|
{
|
|
68
76
|
"key": "jobCreation",
|
|
@@ -71,32 +79,37 @@
|
|
|
71
79
|
"thens": [
|
|
72
80
|
{
|
|
73
81
|
"name": "jobsCreated: undefined",
|
|
74
|
-
"error": false
|
|
82
|
+
"error": false,
|
|
83
|
+
"artifacts": []
|
|
75
84
|
}
|
|
76
85
|
],
|
|
77
86
|
"error": null,
|
|
78
87
|
"features": [
|
|
79
88
|
"Should create test jobs from specs"
|
|
80
|
-
]
|
|
89
|
+
],
|
|
90
|
+
"artifacts": []
|
|
81
91
|
},
|
|
82
92
|
{
|
|
83
93
|
"key": "artifactTracking",
|
|
84
94
|
"name": "Default",
|
|
85
95
|
"whens": [
|
|
86
96
|
{
|
|
87
|
-
"name": "addArtifact: [object Promise]"
|
|
97
|
+
"name": "addArtifact: [object Promise]",
|
|
98
|
+
"artifacts": []
|
|
88
99
|
}
|
|
89
100
|
],
|
|
90
101
|
"thens": [
|
|
91
102
|
{
|
|
92
103
|
"name": "artifactsTracked: undefined",
|
|
93
|
-
"error": false
|
|
104
|
+
"error": false,
|
|
105
|
+
"artifacts": []
|
|
94
106
|
}
|
|
95
107
|
],
|
|
96
108
|
"error": null,
|
|
97
109
|
"features": [
|
|
98
110
|
"Should track artifacts"
|
|
99
|
-
]
|
|
111
|
+
],
|
|
112
|
+
"artifacts": []
|
|
100
113
|
},
|
|
101
114
|
{
|
|
102
115
|
"key": "overridesConfiguration",
|
|
@@ -105,25 +118,30 @@
|
|
|
105
118
|
"thens": [
|
|
106
119
|
{
|
|
107
120
|
"name": "suitesOverridesConfigured: undefined",
|
|
108
|
-
"error": false
|
|
121
|
+
"error": false,
|
|
122
|
+
"artifacts": []
|
|
109
123
|
},
|
|
110
124
|
{
|
|
111
125
|
"name": "givensOverridesConfigured: undefined",
|
|
112
|
-
"error": false
|
|
126
|
+
"error": false,
|
|
127
|
+
"artifacts": []
|
|
113
128
|
},
|
|
114
129
|
{
|
|
115
130
|
"name": "whensOverridesConfigured: undefined",
|
|
116
|
-
"error": false
|
|
131
|
+
"error": false,
|
|
132
|
+
"artifacts": []
|
|
117
133
|
},
|
|
118
134
|
{
|
|
119
135
|
"name": "thensOverridesConfigured: undefined",
|
|
120
|
-
"error": false
|
|
136
|
+
"error": false,
|
|
137
|
+
"artifacts": []
|
|
121
138
|
}
|
|
122
139
|
],
|
|
123
140
|
"error": null,
|
|
124
141
|
"features": [
|
|
125
142
|
"Should properly configure all overrides"
|
|
126
|
-
]
|
|
143
|
+
],
|
|
144
|
+
"artifacts": []
|
|
127
145
|
}
|
|
128
146
|
],
|
|
129
147
|
"fails": 0,
|
package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt
CHANGED
|
@@ -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.
|
|
@@ -126,6 +127,12 @@
|
|
|
126
127
|
Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
127
128
|
/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 & { ...; }'.
|
|
128
129
|
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
|
|
130
|
+
/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'.
|
|
131
|
+
Type '(opts: ScreencastOptions, page: string) => any' is not assignable to type '(opts: { path: string; }, page?: string | undefined) => any'.
|
|
132
|
+
Types of parameters 'opts' and 'opts' are incompatible.
|
|
133
|
+
Type '{ path: string; }' is not assignable to type 'ScreencastOptions'.
|
|
134
|
+
Types of property 'path' are incompatible.
|
|
135
|
+
Type 'string' is not assignable to type '`${string}.webm`'.
|
|
129
136
|
/Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
|
|
130
137
|
/Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
|
|
131
138
|
/Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
|
|
@@ -1,15 +1,3 @@
|
|
|
1
|
-
src/lib/core.test/MockCore.ts
|
|
2
|
-
20:17 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
|
|
3
|
-
- undefined (fix)
|
|
4
|
-
- undefined (fix)
|
|
5
|
-
21:20 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
|
|
6
|
-
- undefined (fix)
|
|
7
|
-
- undefined (fix)
|
|
8
|
-
22:21 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
|
|
9
|
-
- undefined (fix)
|
|
10
|
-
- undefined (fix)
|
|
11
|
-
73:5 'partialTestResource' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
12
|
-
|
|
13
1
|
src/lib/core.test/core.test.implementation.ts
|
|
14
2
|
38:30 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
|
|
15
3
|
- undefined (fix)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
stderr > Starting inspector on 127.0.0.1:9229 failed: address already in use
|
|
2
2
|
stdout > [DEBUG] BaseSuite constructor - name: Testeranto Core Functionality index: 0
|
|
3
3
|
[DEBUG] BaseSuite initialized: Testeranto Core Functionality 0
|
|
4
|
-
[DEBUG] BaseSuite givens:
|
|
4
|
+
[DEBUG] BaseSuite givens: features,artifacts
|
|
5
5
|
[DEBUG] BaseSuite constructor - name: Testeranto Advanced Features index: 1
|
|
6
6
|
[DEBUG] BaseSuite initialized: Testeranto Advanced Features 1
|
|
7
|
-
[DEBUG] BaseSuite givens:
|
|
7
|
+
[DEBUG] BaseSuite givens: features,artifacts
|
|
@@ -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.
|
|
@@ -29,11 +30,8 @@
|
|
|
29
30
|
/Users/adam/Code/testeranto/src/lib/core.test/core.test.specification.ts (55,13): Object literal may only specify known properties, and 'assertThis' does not exist in type 'string[]'.
|
|
30
31
|
/Users/adam/Code/testeranto/src/lib/core.test/core.test.specification.ts (82,105): Expected 2 arguments, but got 3.
|
|
31
32
|
/Users/adam/Code/testeranto/src/lib/core.test/core.test.types.ts (15,17): Generic type 'Ibdd_out' requires between 0 and 4 type arguments.
|
|
32
|
-
/Users/adam/Code/testeranto/src/lib/core.test/MockCore.ts (
|
|
33
|
-
/Users/adam/Code/testeranto/src/lib/core.test/MockCore.ts (
|
|
34
|
-
/Users/adam/Code/testeranto/src/lib/core.test/MockCore.ts (60,5): 'super' must be called before accessing 'this' in the constructor of a derived class.
|
|
35
|
-
/Users/adam/Code/testeranto/src/lib/core.test/MockCore.ts (61,5): 'super' must be called before accessing 'this' in the constructor of a derived class.
|
|
36
|
-
/Users/adam/Code/testeranto/src/lib/core.test/MockCore.ts (65,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 & { ...; }'.
|
|
33
|
+
/Users/adam/Code/testeranto/src/lib/core.test/MockCore.ts (32,56): Type 'never[]' is not assignable to type 'number'.
|
|
34
|
+
/Users/adam/Code/testeranto/src/lib/core.test/MockCore.ts (72,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 & { ...; }'.
|
|
37
35
|
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
|
|
38
36
|
/Users/adam/Code/testeranto/src/lib/core.ts (46,7): Argument of type 'Omit<{ suites: import("/Users/adam/Code/testeranto/src/Types").TestSuiteImplementation<O>; givens: import("/Users/adam/Code/testeranto/src/Types").TestGivenImplementation<I, O>; whens: import("/Users/adam/Code/testeranto/src/Types").TestWhenImplementation<...>; thens: import("/Users/adam/Code/testeranto/src/Types")....' is not assignable to parameter of type 'Omit<{ suites: import("/Users/adam/Code/testeranto/src/Types").TestSuiteImplementation<O>; givens: import("/Users/adam/Code/testeranto/src/Types").TestGivenImplementation<I, O>; whens: import("/Users/adam/Code/testeranto/src/Types").TestWhenImplementation<...>; thens: import("/Users/adam/Code/testeranto/src/Types")....'.
|
|
39
37
|
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>; }'.
|
|
@@ -52,9 +50,14 @@
|
|
|
52
50
|
Types of property 'assertThis' are incompatible.
|
|
53
51
|
Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
54
52
|
Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
53
|
+
/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'.
|
|
54
|
+
Type '(opts: ScreencastOptions, page: string) => any' is not assignable to type '(opts: { path: string; }, page?: string | undefined) => any'.
|
|
55
|
+
Types of parameters 'opts' and 'opts' are incompatible.
|
|
56
|
+
Type '{ path: string; }' is not assignable to type 'ScreencastOptions'.
|
|
57
|
+
Types of property 'path' are incompatible.
|
|
58
|
+
Type 'string' is not assignable to type '`${string}.webm`'.
|
|
55
59
|
/Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
|
|
56
60
|
/Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
|
|
57
61
|
/Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
|
|
58
62
|
/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 & { ...; }'.
|
|
59
|
-
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
|
|
60
|
-
/Users/adam/Code/testeranto/src/Pure.ts (56,58): Property 'testImplementation' does not exist on type 'PureTesteranto<I, O, M>'.
|
|
63
|
+
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
|
|
@@ -8,13 +8,15 @@
|
|
|
8
8
|
"thens": [
|
|
9
9
|
{
|
|
10
10
|
"name": "theButTheProxyReturns: writeFileSync",
|
|
11
|
-
"error": "TypeError: store.butThenProxy is not a function"
|
|
11
|
+
"error": "TypeError: store.butThenProxy is not a function",
|
|
12
|
+
"artifacts": []
|
|
12
13
|
}
|
|
13
14
|
],
|
|
14
15
|
"error": null,
|
|
15
16
|
"features": [
|
|
16
17
|
"butThenProxy should rewrite writeFileSync paths"
|
|
17
|
-
]
|
|
18
|
+
],
|
|
19
|
+
"artifacts": []
|
|
18
20
|
},
|
|
19
21
|
{
|
|
20
22
|
"key": "createWriteStreamProxyTest",
|
|
@@ -23,13 +25,15 @@
|
|
|
23
25
|
"thens": [
|
|
24
26
|
{
|
|
25
27
|
"name": "theButTheProxyReturns: createWriteStream",
|
|
26
|
-
"error": "TypeError: store.butThenProxy is not a function"
|
|
28
|
+
"error": "TypeError: store.butThenProxy is not a function",
|
|
29
|
+
"artifacts": []
|
|
27
30
|
}
|
|
28
31
|
],
|
|
29
32
|
"error": null,
|
|
30
33
|
"features": [
|
|
31
34
|
"butThenProxy should rewrite createWriteStream paths"
|
|
32
|
-
]
|
|
35
|
+
],
|
|
36
|
+
"artifacts": []
|
|
33
37
|
},
|
|
34
38
|
{
|
|
35
39
|
"key": "screencastProxyTest",
|
|
@@ -38,13 +42,15 @@
|
|
|
38
42
|
"thens": [
|
|
39
43
|
{
|
|
40
44
|
"name": "theButTheProxyReturns: screencast",
|
|
41
|
-
"error": "TypeError: store.butThenProxy is not a function"
|
|
45
|
+
"error": "TypeError: store.butThenProxy is not a function",
|
|
46
|
+
"artifacts": []
|
|
42
47
|
}
|
|
43
48
|
],
|
|
44
49
|
"error": null,
|
|
45
50
|
"features": [
|
|
46
51
|
"butThenProxy should rewrite screencast paths"
|
|
47
|
-
]
|
|
52
|
+
],
|
|
53
|
+
"artifacts": []
|
|
48
54
|
},
|
|
49
55
|
{
|
|
50
56
|
"key": "customScreenShotProxyTest",
|
|
@@ -53,13 +59,15 @@
|
|
|
53
59
|
"thens": [
|
|
54
60
|
{
|
|
55
61
|
"name": "theButTheProxyReturns: customScreenShot",
|
|
56
|
-
"error": "TypeError: store.butThenProxy is not a function"
|
|
62
|
+
"error": "TypeError: store.butThenProxy is not a function",
|
|
63
|
+
"artifacts": []
|
|
57
64
|
}
|
|
58
65
|
],
|
|
59
66
|
"error": null,
|
|
60
67
|
"features": [
|
|
61
68
|
"butThenProxy should rewrite customScreenShot paths"
|
|
62
|
-
]
|
|
69
|
+
],
|
|
70
|
+
"artifacts": []
|
|
63
71
|
},
|
|
64
72
|
{
|
|
65
73
|
"key": "emptyPathTest",
|
|
@@ -68,13 +76,15 @@
|
|
|
68
76
|
"thens": [
|
|
69
77
|
{
|
|
70
78
|
"name": "theButTheProxyReturns: writeFileSync",
|
|
71
|
-
"error": "TypeError: store.butThenProxy is not a function"
|
|
79
|
+
"error": "TypeError: store.butThenProxy is not a function",
|
|
80
|
+
"artifacts": []
|
|
72
81
|
}
|
|
73
82
|
],
|
|
74
83
|
"error": null,
|
|
75
84
|
"features": [
|
|
76
85
|
"butThenProxy should handle empty paths"
|
|
77
|
-
]
|
|
86
|
+
],
|
|
87
|
+
"artifacts": []
|
|
78
88
|
},
|
|
79
89
|
{
|
|
80
90
|
"key": "nestedPathTest",
|
|
@@ -83,13 +93,15 @@
|
|
|
83
93
|
"thens": [
|
|
84
94
|
{
|
|
85
95
|
"name": "theButTheProxyReturns: writeFileSync",
|
|
86
|
-
"error": "TypeError: store.butThenProxy is not a function"
|
|
96
|
+
"error": "TypeError: store.butThenProxy is not a function",
|
|
97
|
+
"artifacts": []
|
|
87
98
|
}
|
|
88
99
|
],
|
|
89
100
|
"error": null,
|
|
90
101
|
"features": [
|
|
91
102
|
"butThenProxy should handle nested paths"
|
|
92
|
-
]
|
|
103
|
+
],
|
|
104
|
+
"artifacts": []
|
|
93
105
|
},
|
|
94
106
|
{
|
|
95
107
|
"key": "specialCharsTest",
|
|
@@ -98,13 +110,15 @@
|
|
|
98
110
|
"thens": [
|
|
99
111
|
{
|
|
100
112
|
"name": "theButTheProxyReturns: writeFileSync",
|
|
101
|
-
"error": "TypeError: store.butThenProxy is not a function"
|
|
113
|
+
"error": "TypeError: store.butThenProxy is not a function",
|
|
114
|
+
"artifacts": []
|
|
102
115
|
}
|
|
103
116
|
],
|
|
104
117
|
"error": null,
|
|
105
118
|
"features": [
|
|
106
119
|
"butThenProxy should handle special characters in paths"
|
|
107
|
-
]
|
|
120
|
+
],
|
|
121
|
+
"artifacts": []
|
|
108
122
|
}
|
|
109
123
|
],
|
|
110
124
|
"fails": 0,
|