testeranto 0.172.0 → 0.177.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -4
- package/dist/common/src/PM/base.js +5 -1
- package/dist/common/src/PM/main.js +57 -54
- package/dist/common/src/PM/node.js +4 -1
- package/dist/common/src/PM/pure.js +4 -1
- package/dist/common/src/PM/web.js +6 -3
- package/dist/common/src/Pure.js +0 -4
- package/dist/common/src/Pure.test.js +1 -1
- package/dist/common/src/ReportServer.js +2 -126
- package/dist/common/src/ReportServer.test.ts/index.js +78 -0
- package/dist/common/src/ReportServerLib.js +141 -0
- package/dist/common/src/components/pure/ProjectPageView.test/implementation.js +1 -1
- package/dist/common/src/esbuildConfigs/node.js +1 -3
- package/dist/common/src/lib/BaseSuite.js +13 -11
- package/dist/common/src/lib/abstractBase.js +39 -40
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +10 -9
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.specification.js +7 -7
- package/dist/common/src/lib/basebuilder.js +13 -2
- package/dist/common/src/lib/core.js +1 -0
- package/dist/common/src/lib/pmProxy.js +215 -201
- package/dist/common/src/lib/pmProxy.test/adapter.js +2 -2
- package/dist/common/src/lib/pmProxy.test/implementation.js +1 -1
- package/dist/common/testeranto.config.js +47 -32
- package/dist/common/tsconfig.common.tsbuildinfo +1 -1
- package/dist/module/src/PM/base.js +5 -1
- package/dist/module/src/PM/main.js +22 -19
- package/dist/module/src/PM/node.js +4 -1
- package/dist/module/src/PM/pure.js +4 -1
- package/dist/module/src/PM/web.js +6 -3
- package/dist/module/src/Pure.js +0 -4
- package/dist/module/src/Pure.test.js +1 -1
- package/dist/module/src/ReportServer.js +2 -123
- package/dist/module/src/ReportServer.test.ts/index.js +73 -0
- package/dist/module/src/ReportServerLib.js +134 -0
- package/dist/module/src/TestPage.js +29 -17
- package/dist/module/src/components/pure/ProjectPageView.test/implementation.js +1 -1
- package/dist/module/src/components/pure/TestPageView.js +29 -17
- package/dist/module/src/esbuildConfigs/node.js +1 -3
- package/dist/module/src/lib/BaseSuite.js +13 -11
- package/dist/module/src/lib/abstractBase.js +39 -40
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +10 -9
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.specification.js +7 -7
- package/dist/module/src/lib/basebuilder.js +13 -2
- package/dist/module/src/lib/core.js +1 -0
- package/dist/module/src/lib/pmProxy.js +215 -201
- package/dist/module/src/lib/pmProxy.test/adapter.js +2 -2
- package/dist/module/src/lib/pmProxy.test/implementation.js +1 -1
- package/dist/module/testeranto.config.js +47 -32
- package/dist/module/tsconfig.module.tsbuildinfo +1 -1
- package/dist/prebuild/App.js +3 -3
- package/dist/prebuild/ReportServer.mjs +21 -9
- package/dist/prebuild/build.mjs +1 -1
- package/dist/prebuild/run.mjs +27 -20
- package/dist/types/src/PM/base.d.ts +1 -1
- package/dist/types/src/PM/node.d.ts +1 -1
- package/dist/types/src/PM/pure.d.ts +1 -1
- package/dist/types/src/PM/web.d.ts +1 -1
- package/dist/types/src/ReportServer.test.ts/index.d.ts +29 -0
- package/dist/types/src/ReportServerLib.d.ts +1 -0
- package/dist/types/src/Types.d.ts +0 -1
- package/dist/types/src/components/pure/ProjectPageView.test/index.d.ts +2 -1
- package/dist/types/src/lib/BaseSuite.d.ts +2 -0
- package/dist/types/src/lib/abstractBase.d.ts +5 -7
- package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.types.d.ts +7 -4
- package/dist/types/src/lib/pmProxy.d.ts +3 -3
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/PM/base.ts +7 -5
- package/src/PM/main.ts +26 -21
- package/src/PM/node.ts +6 -1
- package/src/PM/pure.ts +6 -1
- package/src/PM/web.ts +7 -3
- package/src/Pure.test.ts +6 -6
- package/src/Pure.ts +0 -8
- package/src/ReportServer.test.ts/index.ts +194 -0
- package/src/ReportServer.ts +2 -132
- package/src/ReportServerLib.ts +147 -0
- package/src/TestPage.tsx +65 -5
- package/src/Types.ts +0 -1
- package/src/components/pure/ProjectPageView.test/implementation.tsx +1 -1
- package/src/components/pure/TestPageView.tsx +65 -5
- package/src/esbuildConfigs/node.ts +1 -1
- package/src/lib/BaseSuite.ts +16 -21
- package/src/lib/abstractBase.ts +59 -48
- package/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts +22 -10
- package/src/lib/baseBuilder.test/baseBuilder.test.specification.ts +9 -9
- package/src/lib/baseBuilder.test/baseBuilder.test.types.ts +7 -4
- package/src/lib/basebuilder.ts +13 -4
- package/src/lib/core.ts +1 -0
- package/src/lib/pmProxy.test/adapter.ts +2 -2
- package/src/lib/pmProxy.test/implementation.ts +3 -3
- package/src/lib/pmProxy.test/types.ts +0 -2
- package/src/lib/pmProxy.ts +135 -80
- package/testeranto/App.js +3 -3
- package/testeranto/bundles/node/core/metafile.json +8 -0
- package/testeranto/bundles/pure/core/metafile.json +8 -0
- package/testeranto/bundles/web/core/metafile.json +15086 -0
- package/testeranto/bundles/web/{allTests → core}/src/components/pure/ProjectPageView.test/index.html +1 -1
- package/testeranto/bundles/web/{allTests → core}/src/components/pure/ProjectPageView.test/index.mjs +4109 -1642
- package/testeranto/projects.json +1 -1
- package/testeranto/reports/core/config.json +24 -0
- package/testeranto/reports/{allTests → core}/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +6 -1
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/logs.txt +59 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/message.txt +2 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/prompt.txt +27 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/suite-0/given-basicRender/then-0/butThen/happyPath.png +0 -0
- package/testeranto/reports/{allTests → core}/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +15 -33
- package/testeranto/reports/core/summary.json +9 -0
- package/testeranto.config.ts +49 -32
- package/tsc.log +78 -92
- package/testeranto/bundles/node/allTests/chunk-3EUGBAOM.mjs +0 -113
- package/testeranto/bundles/node/allTests/chunk-E75CSRER.mjs +0 -800
- package/testeranto/bundles/node/allTests/chunk-M6DO7VMB.mjs +0 -252
- package/testeranto/bundles/node/allTests/metafile.json +0 -1229
- package/testeranto/bundles/node/allTests/src/lib/BaseSuite.test/node.test.mjs +0 -323
- package/testeranto/bundles/node/allTests/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +0 -223
- package/testeranto/bundles/node/allTests/src/lib/classBuilder.test/classBuilder.test.mjs +0 -411
- package/testeranto/bundles/node/allTests/src/lib/core.test/core.test.mjs +0 -528
- package/testeranto/bundles/node/allTests/src/lib/pmProxy.test/index.mjs +0 -4752
- package/testeranto/bundles/pure/allTests/chunk-KHDVEHF7.mjs +0 -185
- package/testeranto/bundles/pure/allTests/chunk-VMUSFSZM.mjs +0 -797
- package/testeranto/bundles/pure/allTests/metafile.json +0 -1054
- package/testeranto/bundles/pure/allTests/src/Pure.test.mjs +0 -429
- package/testeranto/bundles/pure/allTests/src/lib/BaseSuite.test/pure.test.mjs +0 -425
- package/testeranto/bundles/pure/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +0 -381
- package/testeranto/bundles/web/allTests/chunk-HPYA4YZC.mjs +0 -2283
- package/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs +0 -997
- package/testeranto/bundles/web/allTests/metafile.json +0 -25
- package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.html +0 -19
- package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs +0 -440
- package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web.html +0 -19
- package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +0 -244
- package/testeranto/reports/allTests/config.json +0 -104
- package/testeranto/reports/allTests/src/Pure.test/pure/lint_errors.txt +0 -0
- package/testeranto/reports/allTests/src/Pure.test/pure/message.txt +0 -2
- package/testeranto/reports/allTests/src/Pure.test/pure/prompt.txt +0 -13
- package/testeranto/reports/allTests/src/Pure.test/pure/type_errors.txt +0 -101
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/bdd_errors.txt +0 -1
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/logs.txt +0 -50
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/message.txt +0 -2
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/prompt.txt +0 -17
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/tests.json +0 -32
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/bdd_errors.txt +0 -1
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/lint_errors.txt +0 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/logs.txt +0 -52
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/prompt.txt +0 -13
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/tests.json +0 -31
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/type_errors.txt +0 -111
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/bdd_errors.txt +0 -1
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/lint_errors.txt +0 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/prompt.txt +0 -14
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/tests.json +0 -31
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +0 -111
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/bdd_errors.txt +0 -1
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/lint_errors.txt +0 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/logs.txt +0 -108
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/prompt.txt +0 -14
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/tests.json +0 -31
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/type_errors.txt +0 -111
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/bdd_errors.txt +0 -1
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.txt +0 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/logs.txt +0 -35
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/prompt.txt +0 -16
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +0 -77
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +0 -62
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.txt +0 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/prompt.txt +0 -18
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +0 -62
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/bdd_errors.txt +0 -1
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/lint_errors.txt +0 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/logs.txt +0 -69
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +0 -16
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +0 -77
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +0 -62
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/bdd_errors.txt +0 -1
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/lint_errors.txt +0 -0
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/logs.txt +0 -700
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/prompt.txt +0 -16
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/tests.json +0 -164
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt +0 -138
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/lint_errors.txt +0 -21
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/logs.txt +0 -7
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/prompt.txt +0 -18
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/type_errors.txt +0 -63
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/bdd_errors.txt +0 -1
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/lint_errors.txt +0 -20
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/logs.txt +0 -31
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/prompt.txt +0 -16
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/tests.json +0 -134
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/type_errors.txt +0 -76
- package/testeranto/reports/allTests/summary.json +0 -79
- package/testeranto/reportsnode_build_errors +0 -20
- package/testeranto/reportspure_build_errors +0 -343
- package/testeranto/reportsweb_build_errors +0 -25
package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/prompt.txt
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
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
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0
|
|
File without changes
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
stderr > Starting inspector on 127.0.0.1:9229 failed: address already in use
|
|
2
|
-
stdout > [DEBUG] BaseSuite constructor - name: BaseSuite Core Functionality Tests index: 0
|
|
3
|
-
[DEBUG] BaseSuite initialized: BaseSuite Core Functionality Tests 0
|
|
4
|
-
[DEBUG] BaseSuite givens: initialization
|
|
5
|
-
receiveTestResourceConfig {"name":"src/lib/BaseSuite.test/node.test.ts","ports":[],"fs":"testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node","browserWSEndpoint":"ws://127.0.0.1:3234/devtools/browser/542e424f-5d11-4332-9796-c106911994da"}
|
|
6
|
-
[Given] Setting currentStep for beforeEach: Default
|
|
7
|
-
[DEBUG] Running beforeEach with subject: [class BaseSuite]
|
|
8
|
-
[DEBUG] Creating MockSuite with name: testSuite index: 0
|
|
9
|
-
[DEBUG] BaseSuite constructor - name: testSuite index: 0
|
|
10
|
-
[DEBUG] BaseSuite initialized: testSuite 0
|
|
11
|
-
[DEBUG] BaseSuite givens: testGiven
|
|
12
|
-
[DEBUG] MockSuite created: testSuite 0
|
|
13
|
-
[DEBUG] Created test suite: testSuite 0
|
|
14
|
-
[DEBUG] beforeEach result: { name: 'testSuite', index: 0, store: undefined }
|
|
15
|
-
[Then] Setting currentStep for butThen: SuiteNameMatches: testSuite
|
|
16
|
-
[DEBUG] butThen - input store: {
|
|
17
|
-
"name": "testSuite",
|
|
18
|
-
"index": 0,
|
|
19
|
-
"testStore": true,
|
|
20
|
-
"testSelection": false
|
|
21
|
-
}
|
|
22
|
-
[DEBUG] butThen - created testSelection: {
|
|
23
|
-
"testSelection": false
|
|
24
|
-
}
|
|
25
|
-
[DEBUG] SuiteNameMatches - expected: testSuite actual: undefined
|
|
26
|
-
[Then] Setting currentStep for butThen: SuiteIndexMatches: 0
|
|
27
|
-
[DEBUG] butThen - input store: {
|
|
28
|
-
"name": "testSuite",
|
|
29
|
-
"index": 0,
|
|
30
|
-
"testStore": true,
|
|
31
|
-
"testSelection": false
|
|
32
|
-
}
|
|
33
|
-
[DEBUG] butThen - created testSelection: {
|
|
34
|
-
"testSelection": false
|
|
35
|
-
}
|
|
36
|
-
stderr > Then error: Error: Suite name is undefined. Expected: testSuite
|
|
37
|
-
Full store state: {
|
|
38
|
-
"name": "testSuite",
|
|
39
|
-
"index": 0,
|
|
40
|
-
"testStore": true,
|
|
41
|
-
"testSelection": false
|
|
42
|
-
}
|
|
43
|
-
Then error: Error: Expected suite index 0, got undefined
|
|
44
|
-
Full store state: {
|
|
45
|
-
"name": "testSuite",
|
|
46
|
-
"index": 0,
|
|
47
|
-
"testStore": true,
|
|
48
|
-
"testSelection": false
|
|
49
|
-
}
|
|
50
|
-
stdout > [DEBUG] Features extracted: BaseSuite should initialize with correct name and index
|
|
51
|
-
[DEBUG] Features extracted: BaseSuite should initialize with correct name and index
|
|
52
|
-
stderr > goodbye node with failures 0
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
Fix the failing tests described in testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/tests.json and testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/logs.txt. Focus on the bdd tests before all other concerns. You may add any debugging you think is necessary.
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/add src/lib/BaseSuite.test/test.ts
|
|
3
|
-
/add src/lib/BaseSuite.test/node.test.ts
|
|
4
|
-
|
|
5
|
-
/read node_modules/testeranto/docs/index.md
|
|
6
|
-
/read node_modules/testeranto/docs/style.md
|
|
7
|
-
/read node_modules/testeranto/docs/testing.ai.txt
|
|
8
|
-
/read node_modules/testeranto/src/CoreTypes.ts
|
|
9
|
-
|
|
10
|
-
/read testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/tests.json
|
|
11
|
-
/read testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/logs.txt
|
|
12
|
-
/read testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/type_errors.txt
|
|
13
|
-
/read testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/lint_errors.txt
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "BaseSuite Core Functionality Tests",
|
|
3
|
-
"givens": [
|
|
4
|
-
{
|
|
5
|
-
"key": "initialization",
|
|
6
|
-
"name": "Default",
|
|
7
|
-
"whens": [],
|
|
8
|
-
"thens": [
|
|
9
|
-
{
|
|
10
|
-
"name": "SuiteNameMatches: testSuite",
|
|
11
|
-
"error": "Error: Suite name is undefined. Expected: testSuite",
|
|
12
|
-
"artifacts": []
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
"name": "SuiteIndexMatches: 0",
|
|
16
|
-
"error": "Error: Expected suite index 0, got undefined",
|
|
17
|
-
"artifacts": []
|
|
18
|
-
}
|
|
19
|
-
],
|
|
20
|
-
"error": null,
|
|
21
|
-
"features": [
|
|
22
|
-
"BaseSuite should initialize with correct name and index"
|
|
23
|
-
],
|
|
24
|
-
"artifacts": []
|
|
25
|
-
}
|
|
26
|
-
],
|
|
27
|
-
"fails": 0,
|
|
28
|
-
"features": [
|
|
29
|
-
"BaseSuite should initialize with correct name and index"
|
|
30
|
-
]
|
|
31
|
-
}
|
|
@@ -1,111 +0,0 @@
|
|
|
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.
|
|
3
|
-
/Users/adam/Code/testeranto/src/lib/basebuilder.ts (79,15): This expression is not callable.
|
|
4
|
-
Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
|
|
5
|
-
Type 'void' has no call signatures.
|
|
6
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (36,9): Property 'andWhen' in type 'MockWhen' is not assignable to the same property in base type 'BaseWhen<I>'.
|
|
7
|
-
Type '(store: TestStore, whenCB: (store: TestStore) => Promise<TestStore>, testResource: any, pm: IPM) => Promise<TestStore>' is not assignable to type '(store: TestStore, whenCB: (x: TestSelection) => (store: TestStore) => Promise<TestSelection>, testResource: any, pm: IPM) => Promise<...>'.
|
|
8
|
-
Types of parameters 'whenCB' and 'whenCB' are incompatible.
|
|
9
|
-
Types of parameters 'x' and 'store' are incompatible.
|
|
10
|
-
Type 'TestStore' is not assignable to type 'TestSelection'.
|
|
11
|
-
Types of property 'testSelection' are incompatible.
|
|
12
|
-
Type 'boolean | undefined' is not assignable to type 'boolean'.
|
|
13
|
-
Type 'undefined' is not assignable to type 'boolean'.
|
|
14
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (66,9): Property 'butThen' in type 'MockThen' is not assignable to the same property in base type 'BaseThen<I>'.
|
|
15
|
-
Types of parameters 'thenCB' and 'thenCB' are incompatible.
|
|
16
|
-
Type 'Promise<BaseSuite<any, any>>' is not assignable to type 'Promise<TestSelection>'.
|
|
17
|
-
Property 'testSelection' is missing in type 'BaseSuite<any, any>' but required in type 'TestSelection'.
|
|
18
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (83,7): Object literal may only specify known properties, and 'name' does not exist in type 'TestSelection'.
|
|
19
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (126,10): Type 'MockWhen' is not assignable to type 'BaseWhen<I>'.
|
|
20
|
-
Types of property 'andWhen' are incompatible.
|
|
21
|
-
Type '(store: TestStore, whenCB: (store: TestStore) => Promise<TestStore>, testResource: any, pm: IPM) => Promise<TestStore>' is not assignable to type '(store: TestStore, whenCB: (x: TestSelection) => (store: TestStore) => Promise<TestSelection>, testResource: any, pm: IPM) => Promise<...>'.
|
|
22
|
-
Types of parameters 'whenCB' and 'whenCB' are incompatible.
|
|
23
|
-
Types of parameters 'x' and 'store' are incompatible.
|
|
24
|
-
Type 'TestStore' is not assignable to type 'TestSelection'.
|
|
25
|
-
Types of property 'testSelection' are incompatible.
|
|
26
|
-
Type 'boolean | undefined' is not assignable to type 'boolean'.
|
|
27
|
-
Type 'undefined' is not assignable to type 'boolean'.
|
|
28
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (126,41): Type 'Promise<{ testStore: boolean; }>' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
|
|
29
|
-
Type 'Promise<{ testStore: boolean; }>' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
|
|
30
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (129,13): Type 'Promise<{ testSelection: boolean; }>' is not assignable to type 'Promise<(store: TestStore) => Promise<TestSelection>>'.
|
|
31
|
-
Type '{ testSelection: boolean; }' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
|
|
32
|
-
Type '{ testSelection: boolean; }' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
|
|
33
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (126,5): Type '() => MockSuite' is not assignable to type '() => () => Promise<TestStore>'.
|
|
34
|
-
Type 'MockSuite' is not assignable to type '() => Promise<TestStore>'.
|
|
35
|
-
Type 'MockSuite' provides no match for the signature '(): Promise<TestStore>'.
|
|
36
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (137,15): Property 'artifacts' does not exist on type 'MockSuite'.
|
|
37
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (144,15): Property 'specs' does not exist on type 'MockSuite'.
|
|
38
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (144,38): Property 'specs' does not exist on type 'MockSuite'.
|
|
39
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (151,15): Property 'testJobs' does not exist on type 'MockSuite'.
|
|
40
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (151,41): Property 'testJobs' does not exist on type 'MockSuite'.
|
|
41
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (157,7): Type '(suite: MockSuite) => Promise<MockSuite>' is not assignable to type '(zel: TestSelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: TestStore) => Promise<TestStore>>'.
|
|
42
|
-
Types of parameters 'suite' and 'zel' are incompatible.
|
|
43
|
-
Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 9 more.
|
|
44
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (178,11): Type '() => void' is not assignable to type '((selector: string) => boolean) | ((selector: string) => boolean) | ((selector: string, page: string) => Promise<unknown>)'.
|
|
45
|
-
Type '() => void' is not assignable to type '(selector: string) => boolean'.
|
|
46
|
-
Type 'void' is not assignable to type 'boolean'.
|
|
47
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (180,11): Type '() => void' is not assignable to type '((p: any) => string) | ((p: any) => string) | ((p: any) => Promise<unknown>)'.
|
|
48
|
-
Type '() => void' is not assignable to type '(p: any) => string'.
|
|
49
|
-
Type 'void' is not assignable to type 'string'.
|
|
50
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (185,11): Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'.
|
|
51
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (199,13): Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'.
|
|
52
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (224,5): Type '(expectedName: string) => ((suite: MockSuite) => MockSuite)' is not assignable to type '(It_0: string) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
53
|
-
Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
54
|
-
Types of parameters 'suite' and 'ssel' are incompatible.
|
|
55
|
-
Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 9 more.
|
|
56
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (244,5): Type '(expectedIndex: number) => ((suite: MockSuite) => MockSuite)' is not assignable to type '(It_0: number) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
57
|
-
Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
58
|
-
Types of parameters 'suite' and 'ssel' are incompatible.
|
|
59
|
-
Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 9 more.
|
|
60
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (255,5): Type '(feature: string) => ((suite: MockSuite) => MockSuite)' is not assignable to type '(feature: string) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
61
|
-
Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
62
|
-
Types of parameters 'suite' and 'ssel' are incompatible.
|
|
63
|
-
Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 9 more.
|
|
64
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (276,58): Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
65
|
-
Types of parameters 'suite' and 'ssel' are incompatible.
|
|
66
|
-
Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 9 more.
|
|
67
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (328,19): Property 'specs' does not exist on type 'MockSuite'.
|
|
68
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (337,19): Property 'testJobs' does not exist on type 'MockSuite'.
|
|
69
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (345,19): Property 'artifacts' does not exist on type 'MockSuite'.
|
|
70
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (378,22): Property 'index' does not exist on type '() => Promise<TestStore>'.
|
|
71
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (379,22): Property 'store' does not exist on type '() => Promise<TestStore>'.
|
|
72
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (383,22): Property 'index' does not exist on type '() => Promise<TestStore>'.
|
|
73
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (386,19): Property 'store' does not exist on type '() => Promise<TestStore>'.
|
|
74
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (399,44): Expected 1 arguments, but got 2.
|
|
75
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (401,3): Type '(store: TestStore, thenCB: (selection: TestSelection) => Promise<TestSelection>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<TestSelection>' is not assignable to type '(store: TestStore, thenCB: (store: TestStore) => Promise<TestSelection>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<...>'.
|
|
76
|
-
Types of parameters 'thenCB' and 'thenCB' are incompatible.
|
|
77
|
-
Type '(store: TestStore) => Promise<TestSelection>' is not assignable to type '(selection: TestSelection) => Promise<TestSelection>'.
|
|
78
|
-
Types of parameters 'store' and 'selection' are incompatible.
|
|
79
|
-
Property 'testStore' is missing in type 'TestSelection' but required in type 'TestStore'.
|
|
80
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (441,3): Type '(store: I["istore"]) => I["istore"]' is not assignable to type '(store: TestStore, key: string, pm: IPM) => Promise<unknown>'.
|
|
81
|
-
Type 'TestStore' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
|
|
82
|
-
/Users/adam/Code/testeranto/src/lib/classBuilder.ts (86,18): A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
83
|
-
/Users/adam/Code/testeranto/src/lib/classBuilder.ts (101,28): A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
84
|
-
/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")....'.
|
|
85
|
-
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>; }'.
|
|
86
|
-
Types of property 'suites' are incompatible.
|
|
87
|
-
Type 'Record<string, any>' is not assignable to type 'Record<string, never>'.
|
|
88
|
-
'string' index signatures are incompatible.
|
|
89
|
-
Type 'any' is not assignable to type 'never'.
|
|
90
|
-
/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<...>'.
|
|
91
|
-
Types of parameters 'initialValues' and 'initializer' are incompatible.
|
|
92
|
-
Type '(c?: any) => T["given"]' is not assignable to type 'T["iinitialValues"]'.
|
|
93
|
-
'T["iinitialValues"]' could be instantiated with an arbitrary type which could be unrelated to '(c?: any) => T["given"]'.
|
|
94
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (18,20): Type '"iinitialValues"' cannot be used to index type 'T'.
|
|
95
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (40,13): This expression is not callable.
|
|
96
|
-
Type 'unknown' has no call signatures.
|
|
97
|
-
/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>'.
|
|
98
|
-
Types of property 'assertThis' are incompatible.
|
|
99
|
-
Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
100
|
-
Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
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 & { ...; }'.
|
|
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`'.
|
|
109
|
-
/Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
|
|
110
|
-
/Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
|
|
111
|
-
/Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0
|
|
File without changes
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
Fix the failing tests described in testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/tests.json and testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/logs.txt. Focus on the bdd tests before all other concerns. You may add any debugging you think is necessary.
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/add src/lib/BaseSuite.test/mock.ts
|
|
3
|
-
/add src/lib/BaseSuite.test/test.ts
|
|
4
|
-
/add src/lib/BaseSuite.test/pure.test.ts
|
|
5
|
-
|
|
6
|
-
/read node_modules/testeranto/docs/index.md
|
|
7
|
-
/read node_modules/testeranto/docs/style.md
|
|
8
|
-
/read node_modules/testeranto/docs/testing.ai.txt
|
|
9
|
-
/read node_modules/testeranto/src/CoreTypes.ts
|
|
10
|
-
|
|
11
|
-
/read testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/tests.json
|
|
12
|
-
/read testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/logs.txt
|
|
13
|
-
/read testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt
|
|
14
|
-
/read testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/lint_errors.txt
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "BaseSuite Core Functionality Tests",
|
|
3
|
-
"givens": [
|
|
4
|
-
{
|
|
5
|
-
"key": "initialization",
|
|
6
|
-
"name": "Default",
|
|
7
|
-
"whens": [],
|
|
8
|
-
"thens": [
|
|
9
|
-
{
|
|
10
|
-
"name": "SuiteNameMatches: testSuite",
|
|
11
|
-
"error": "Error: Suite name is undefined. Expected: testSuite",
|
|
12
|
-
"artifacts": []
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
"name": "SuiteIndexMatches: 0",
|
|
16
|
-
"error": "Error: Expected suite index 0, got undefined",
|
|
17
|
-
"artifacts": []
|
|
18
|
-
}
|
|
19
|
-
],
|
|
20
|
-
"error": null,
|
|
21
|
-
"features": [
|
|
22
|
-
"BaseSuite should initialize with correct name and index"
|
|
23
|
-
],
|
|
24
|
-
"artifacts": []
|
|
25
|
-
}
|
|
26
|
-
],
|
|
27
|
-
"fails": 0,
|
|
28
|
-
"features": [
|
|
29
|
-
"BaseSuite should initialize with correct name and index"
|
|
30
|
-
]
|
|
31
|
-
}
|
|
@@ -1,111 +0,0 @@
|
|
|
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.
|
|
3
|
-
/Users/adam/Code/testeranto/src/lib/basebuilder.ts (79,15): This expression is not callable.
|
|
4
|
-
Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
|
|
5
|
-
Type 'void' has no call signatures.
|
|
6
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (36,9): Property 'andWhen' in type 'MockWhen' is not assignable to the same property in base type 'BaseWhen<I>'.
|
|
7
|
-
Type '(store: TestStore, whenCB: (store: TestStore) => Promise<TestStore>, testResource: any, pm: IPM) => Promise<TestStore>' is not assignable to type '(store: TestStore, whenCB: (x: TestSelection) => (store: TestStore) => Promise<TestSelection>, testResource: any, pm: IPM) => Promise<...>'.
|
|
8
|
-
Types of parameters 'whenCB' and 'whenCB' are incompatible.
|
|
9
|
-
Types of parameters 'x' and 'store' are incompatible.
|
|
10
|
-
Type 'TestStore' is not assignable to type 'TestSelection'.
|
|
11
|
-
Types of property 'testSelection' are incompatible.
|
|
12
|
-
Type 'boolean | undefined' is not assignable to type 'boolean'.
|
|
13
|
-
Type 'undefined' is not assignable to type 'boolean'.
|
|
14
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (66,9): Property 'butThen' in type 'MockThen' is not assignable to the same property in base type 'BaseThen<I>'.
|
|
15
|
-
Types of parameters 'thenCB' and 'thenCB' are incompatible.
|
|
16
|
-
Type 'Promise<BaseSuite<any, any>>' is not assignable to type 'Promise<TestSelection>'.
|
|
17
|
-
Property 'testSelection' is missing in type 'BaseSuite<any, any>' but required in type 'TestSelection'.
|
|
18
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (83,7): Object literal may only specify known properties, and 'name' does not exist in type 'TestSelection'.
|
|
19
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (126,10): Type 'MockWhen' is not assignable to type 'BaseWhen<I>'.
|
|
20
|
-
Types of property 'andWhen' are incompatible.
|
|
21
|
-
Type '(store: TestStore, whenCB: (store: TestStore) => Promise<TestStore>, testResource: any, pm: IPM) => Promise<TestStore>' is not assignable to type '(store: TestStore, whenCB: (x: TestSelection) => (store: TestStore) => Promise<TestSelection>, testResource: any, pm: IPM) => Promise<...>'.
|
|
22
|
-
Types of parameters 'whenCB' and 'whenCB' are incompatible.
|
|
23
|
-
Types of parameters 'x' and 'store' are incompatible.
|
|
24
|
-
Type 'TestStore' is not assignable to type 'TestSelection'.
|
|
25
|
-
Types of property 'testSelection' are incompatible.
|
|
26
|
-
Type 'boolean | undefined' is not assignable to type 'boolean'.
|
|
27
|
-
Type 'undefined' is not assignable to type 'boolean'.
|
|
28
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (126,41): Type 'Promise<{ testStore: boolean; }>' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
|
|
29
|
-
Type 'Promise<{ testStore: boolean; }>' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
|
|
30
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (129,13): Type 'Promise<{ testSelection: boolean; }>' is not assignable to type 'Promise<(store: TestStore) => Promise<TestSelection>>'.
|
|
31
|
-
Type '{ testSelection: boolean; }' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
|
|
32
|
-
Type '{ testSelection: boolean; }' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
|
|
33
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (126,5): Type '() => MockSuite' is not assignable to type '() => () => Promise<TestStore>'.
|
|
34
|
-
Type 'MockSuite' is not assignable to type '() => Promise<TestStore>'.
|
|
35
|
-
Type 'MockSuite' provides no match for the signature '(): Promise<TestStore>'.
|
|
36
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (137,15): Property 'artifacts' does not exist on type 'MockSuite'.
|
|
37
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (144,15): Property 'specs' does not exist on type 'MockSuite'.
|
|
38
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (144,38): Property 'specs' does not exist on type 'MockSuite'.
|
|
39
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (151,15): Property 'testJobs' does not exist on type 'MockSuite'.
|
|
40
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (151,41): Property 'testJobs' does not exist on type 'MockSuite'.
|
|
41
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (157,7): Type '(suite: MockSuite) => Promise<MockSuite>' is not assignable to type '(zel: TestSelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: TestStore) => Promise<TestStore>>'.
|
|
42
|
-
Types of parameters 'suite' and 'zel' are incompatible.
|
|
43
|
-
Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 9 more.
|
|
44
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (178,11): Type '() => void' is not assignable to type '((selector: string) => boolean) | ((selector: string) => boolean) | ((selector: string, page: string) => Promise<unknown>)'.
|
|
45
|
-
Type '() => void' is not assignable to type '(selector: string) => boolean'.
|
|
46
|
-
Type 'void' is not assignable to type 'boolean'.
|
|
47
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (180,11): Type '() => void' is not assignable to type '((p: any) => string) | ((p: any) => string) | ((p: any) => Promise<unknown>)'.
|
|
48
|
-
Type '() => void' is not assignable to type '(p: any) => string'.
|
|
49
|
-
Type 'void' is not assignable to type 'string'.
|
|
50
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (185,11): Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'.
|
|
51
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (199,13): Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'.
|
|
52
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (224,5): Type '(expectedName: string) => ((suite: MockSuite) => MockSuite)' is not assignable to type '(It_0: string) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
53
|
-
Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
54
|
-
Types of parameters 'suite' and 'ssel' are incompatible.
|
|
55
|
-
Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 9 more.
|
|
56
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (244,5): Type '(expectedIndex: number) => ((suite: MockSuite) => MockSuite)' is not assignable to type '(It_0: number) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
57
|
-
Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
58
|
-
Types of parameters 'suite' and 'ssel' are incompatible.
|
|
59
|
-
Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 9 more.
|
|
60
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (255,5): Type '(feature: string) => ((suite: MockSuite) => MockSuite)' is not assignable to type '(feature: string) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
61
|
-
Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
62
|
-
Types of parameters 'suite' and 'ssel' are incompatible.
|
|
63
|
-
Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 9 more.
|
|
64
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (276,58): Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
65
|
-
Types of parameters 'suite' and 'ssel' are incompatible.
|
|
66
|
-
Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 9 more.
|
|
67
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (328,19): Property 'specs' does not exist on type 'MockSuite'.
|
|
68
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (337,19): Property 'testJobs' does not exist on type 'MockSuite'.
|
|
69
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (345,19): Property 'artifacts' does not exist on type 'MockSuite'.
|
|
70
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (378,22): Property 'index' does not exist on type '() => Promise<TestStore>'.
|
|
71
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (379,22): Property 'store' does not exist on type '() => Promise<TestStore>'.
|
|
72
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (383,22): Property 'index' does not exist on type '() => Promise<TestStore>'.
|
|
73
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (386,19): Property 'store' does not exist on type '() => Promise<TestStore>'.
|
|
74
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (399,44): Expected 1 arguments, but got 2.
|
|
75
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (401,3): Type '(store: TestStore, thenCB: (selection: TestSelection) => Promise<TestSelection>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<TestSelection>' is not assignable to type '(store: TestStore, thenCB: (store: TestStore) => Promise<TestSelection>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<...>'.
|
|
76
|
-
Types of parameters 'thenCB' and 'thenCB' are incompatible.
|
|
77
|
-
Type '(store: TestStore) => Promise<TestSelection>' is not assignable to type '(selection: TestSelection) => Promise<TestSelection>'.
|
|
78
|
-
Types of parameters 'store' and 'selection' are incompatible.
|
|
79
|
-
Property 'testStore' is missing in type 'TestSelection' but required in type 'TestStore'.
|
|
80
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (441,3): Type '(store: I["istore"]) => I["istore"]' is not assignable to type '(store: TestStore, key: string, pm: IPM) => Promise<unknown>'.
|
|
81
|
-
Type 'TestStore' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
|
|
82
|
-
/Users/adam/Code/testeranto/src/lib/classBuilder.ts (86,18): A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
83
|
-
/Users/adam/Code/testeranto/src/lib/classBuilder.ts (101,28): A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
84
|
-
/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")....'.
|
|
85
|
-
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>; }'.
|
|
86
|
-
Types of property 'suites' are incompatible.
|
|
87
|
-
Type 'Record<string, any>' is not assignable to type 'Record<string, never>'.
|
|
88
|
-
'string' index signatures are incompatible.
|
|
89
|
-
Type 'any' is not assignable to type 'never'.
|
|
90
|
-
/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<...>'.
|
|
91
|
-
Types of parameters 'initialValues' and 'initializer' are incompatible.
|
|
92
|
-
Type '(c?: any) => T["given"]' is not assignable to type 'T["iinitialValues"]'.
|
|
93
|
-
'T["iinitialValues"]' could be instantiated with an arbitrary type which could be unrelated to '(c?: any) => T["given"]'.
|
|
94
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (18,20): Type '"iinitialValues"' cannot be used to index type 'T'.
|
|
95
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (40,13): This expression is not callable.
|
|
96
|
-
Type 'unknown' has no call signatures.
|
|
97
|
-
/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>'.
|
|
98
|
-
Types of property 'assertThis' are incompatible.
|
|
99
|
-
Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
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`'.
|
|
107
|
-
/Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
|
|
108
|
-
/Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
|
|
109
|
-
/Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
|
|
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 & { ...; }'.
|
|
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
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0
|
|
File without changes
|