testeranto 0.198.0 → 0.200.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/bin/test_runner +0 -0
- package/bin/testeranto +0 -0
- package/bundle.js +2 -2
- package/cmd/test_runner/main.go +65 -0
- package/cmd/testeranto/main.go +37 -0
- package/dist/common/src/PM/main.js +126 -11
- package/dist/common/src/PM/pitonoRunner.js +54 -0
- package/dist/common/src/components/pure/TestPageView.js +180 -65
- package/dist/common/src/components/stateful/TestPage.js +50 -11
- package/dist/common/src/lib/abstractBase.test/index.js +1 -0
- package/dist/common/src/run.js +48 -82
- package/dist/common/src/{build.js → testeranto.js} +107 -55
- package/dist/common/src/utils/golingvuMetafile.js +116 -0
- package/dist/common/src/utils/logFiles.js +2 -1
- package/dist/common/src/utils/pitonoMetafile.js +67 -0
- package/dist/common/src/utils.js +40 -1
- package/dist/common/testeranto.config.js +23 -21
- package/dist/common/tsconfig.common.tsbuildinfo +1 -1
- package/dist/module/src/PM/main.js +126 -11
- package/dist/module/src/PM/pitonoRunner.js +47 -0
- package/dist/module/src/components/pure/TestPageView.js +180 -65
- package/dist/module/src/components/stateful/TestPage.js +50 -11
- package/dist/module/src/lib/abstractBase.test/index.js +1 -0
- package/dist/module/src/run.js +49 -45
- package/dist/module/src/{build.js → testeranto.js} +107 -55
- package/dist/module/src/utils/golingvuMetafile.js +109 -0
- package/dist/module/src/utils/logFiles.js +2 -1
- package/dist/module/src/utils/pitonoMetafile.js +60 -0
- package/dist/module/src/utils.js +40 -1
- package/dist/module/testeranto.config.js +23 -21
- package/dist/module/tsconfig.module.tsbuildinfo +1 -1
- package/dist/prebuild/App.js +81 -17
- package/dist/types/src/PM/main.d.ts +2 -0
- package/dist/types/src/PM/pitonoRunner.d.ts +7 -0
- package/dist/types/src/Types.d.ts +1 -1
- package/dist/types/src/run.d.ts +0 -1
- package/dist/types/src/utils/golingvuMetafile.d.ts +19 -0
- package/dist/types/src/utils/logFiles.d.ts +5 -1
- package/dist/types/src/utils/pitonoMetafile.d.ts +7 -0
- package/dist/types/src/utils.d.ts +5 -0
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/docs/index.md +13 -13
- package/example/test_example.py +106 -0
- package/go.mod +3 -0
- package/package.json +14 -14
- package/pitono/__init__.py +54 -0
- package/pitono/base_given.py +131 -0
- package/pitono/base_suite.py +95 -0
- package/pitono/base_then.py +50 -0
- package/pitono/base_when.py +52 -0
- package/pitono/core_generator.py +110 -0
- package/pitono/pitono.egg-info/PKG-INFO +17 -0
- package/pitono/pitono.egg-info/SOURCES.txt +7 -0
- package/pitono/pitono.egg-info/dependency_links.txt +1 -0
- package/pitono/pitono.egg-info/entry_points.txt +2 -0
- package/pitono/pitono.egg-info/top_level.txt +1 -0
- package/pitono/pyproject.toml +26 -0
- package/pitono/setup.py +40 -0
- package/pitono/simple_adapter.py +24 -0
- package/pitono/types.py +78 -0
- package/sampleMetafile.json +56 -0
- package/src/PM/main.ts +146 -17
- package/src/PM/pitonoRunner.ts +49 -0
- package/src/Types.ts +1 -1
- package/src/components/pure/TestPageView.tsx +175 -8
- package/src/components/stateful/TestPage.tsx +57 -16
- package/src/core/types.go +36 -0
- package/src/golingvu/README.md +3 -0
- package/src/golingvu/base_given.go +76 -0
- package/src/golingvu/base_suite.go +39 -0
- package/src/golingvu/base_suite_test.go +197 -0
- package/src/golingvu/base_then.go +21 -0
- package/src/golingvu/base_when.go +21 -0
- package/src/golingvu/golingvu.go +179 -0
- package/src/golingvu/test_adapter.go +33 -0
- package/src/golingvu/types.go +86 -0
- package/src/lib/abstractBase.test/index.ts +1 -0
- package/src/pitono/README.md +3 -0
- package/src/run.ts +48 -48
- package/src/templates/frontpage.html +26 -17
- package/src/{build.ts → testeranto.ts} +128 -58
- package/src/utils/golingvuMetafile.ts +165 -0
- package/src/utils/logFiles.ts +2 -1
- package/src/utils/pitonoMetafile.ts +68 -0
- package/src/utils.ts +38 -1
- package/testeranto/App.js +81 -17
- package/testeranto/metafiles/golang/core.json +72 -0
- package/testeranto/metafiles/node/core.json +21 -459
- package/testeranto/metafiles/pure/core.json +18 -119
- package/testeranto/metafiles/web/core.json +37 -16797
- package/testeranto/reports/core/config.json +8 -40
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/lint_errors.txt +6 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/prompt.txt +12 -1
- package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/lint_errors.txt +2 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/prompt.txt +11 -1
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/lint_errors.txt +2 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/prompt.txt +13 -3
- package/testeranto/reports/core/summary.json +9 -45
- package/testeranto.config.ts +25 -21
- package/tsc.log +46 -7
- package/dist/common/src/lib/mocks.test.js +0 -11
- package/dist/module/src/lib/mocks.test.js +0 -11
- package/dist/prebuild/build.mjs +0 -578
- package/dist/prebuild/run.mjs +0 -2290
- package/dist/tsconfig.tsbuildinfo +0 -1
- package/dist/types/src/lib/mocks.test.d.ts +0 -0
- package/src/lib/mocks.test.ts +0 -11
- package/testeranto/reports/core/src/Pure.test/pure/exit.log +0 -0
- package/testeranto/reports/core/src/Pure.test/pure/lint_errors.txt +0 -0
- package/testeranto/reports/core/src/Pure.test/pure/message.txt +0 -17
- package/testeranto/reports/core/src/Pure.test/pure/prompt.txt +0 -14
- package/testeranto/reports/core/src/Pure.test/pure/type_errors.txt +0 -66
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/debug.log +0 -0
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/error.log +0 -67
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/exit.log +0 -1
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/info.log +0 -2
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/lint_errors.txt +0 -0
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/message.txt +0 -17
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/prompt.txt +0 -16
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/tests.json +0 -68
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/type_errors.txt +0 -56
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/warn.log +0 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/debug.log +0 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/error.log +0 -22
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/exit.log +0 -1
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/info.log +0 -2
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +0 -13
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/message.txt +0 -17
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/prompt.txt +0 -16
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/tests.json +0 -88
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +0 -45
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/warn.log +0 -0
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/debug.log +0 -0
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/error.log +0 -0
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/exit.log +0 -1
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/info.log +0 -2
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/lint_errors.txt +0 -47
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/message.txt +0 -17
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/prompt.txt +0 -17
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/tests.json +0 -57
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/type_errors.txt +0 -99
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/warn.log +0 -0
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/exit.log +0 -1
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/lint_errors.txt +0 -0
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/message.txt +0 -17
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/prompt.txt +0 -17
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/stderr.log +0 -18
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/stdout.log +0 -0
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/type_errors.txt +0 -32
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/exit.log +0 -1
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/lint_errors.txt +0 -15
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/message.txt +0 -17
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/prompt.txt +0 -17
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stderr.log +0 -66
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stdout.log +0 -10
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/type_errors.txt +0 -47
- /package/dist/types/src/{build.d.ts → testeranto.d.ts} +0 -0
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
TypeError: addArtifact is not a function
|
|
2
|
-
at path3 (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:71:9)
|
|
3
|
-
at Proxy.<anonymous> (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:18:34)
|
|
4
|
-
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs:174:54)
|
|
5
|
-
at file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:824:39
|
|
6
|
-
at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs:4514:12)
|
|
7
|
-
at BaseThen.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:916:40)
|
|
8
|
-
at BaseThen.test (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:805:17)
|
|
9
|
-
at BaseGiven.give (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:694:24)
|
|
10
|
-
at async BaseSuite.run (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:365:20)
|
|
11
|
-
at async file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:939:21
|
|
12
|
-
TypeError: addArtifact is not a function
|
|
13
|
-
at file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:49:9
|
|
14
|
-
at Proxy.<anonymous> (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:18:34)
|
|
15
|
-
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs:181:54)
|
|
16
|
-
at file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:824:39
|
|
17
|
-
at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs:4514:12)
|
|
18
|
-
at BaseThen.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:916:40)
|
|
19
|
-
at BaseThen.test (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:805:17)
|
|
20
|
-
at BaseGiven.give (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:694:24)
|
|
21
|
-
at async BaseSuite.run (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:365:20)
|
|
22
|
-
at async file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:939:21
|
|
23
|
-
TypeError: addArtifact is not a function
|
|
24
|
-
at path3 (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:35:9)
|
|
25
|
-
at Proxy.<anonymous> (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:18:34)
|
|
26
|
-
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs:187:54)
|
|
27
|
-
at file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:824:39
|
|
28
|
-
at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs:4514:12)
|
|
29
|
-
at BaseThen.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:916:40)
|
|
30
|
-
at BaseThen.test (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:805:17)
|
|
31
|
-
at BaseGiven.give (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:694:24)
|
|
32
|
-
at async BaseSuite.run (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:365:20)
|
|
33
|
-
at async file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:939:21
|
|
34
|
-
TypeError: addArtifact is not a function
|
|
35
|
-
at file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:79:9
|
|
36
|
-
at Proxy.<anonymous> (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:18:34)
|
|
37
|
-
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs:193:54)
|
|
38
|
-
at file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:824:39
|
|
39
|
-
at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs:4514:12)
|
|
40
|
-
at BaseThen.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:916:40)
|
|
41
|
-
at BaseThen.test (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:805:17)
|
|
42
|
-
at BaseGiven.give (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:694:24)
|
|
43
|
-
at async BaseSuite.run (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:365:20)
|
|
44
|
-
at async file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:939:21
|
|
45
|
-
TypeError: addArtifact is not a function
|
|
46
|
-
at path3 (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:71:9)
|
|
47
|
-
at Proxy.<anonymous> (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:18:34)
|
|
48
|
-
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs:174:54)
|
|
49
|
-
at file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:824:39
|
|
50
|
-
at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs:4514:12)
|
|
51
|
-
at BaseThen.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:916:40)
|
|
52
|
-
at BaseThen.test (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:805:17)
|
|
53
|
-
at BaseGiven.give (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:694:24)
|
|
54
|
-
at async BaseSuite.run (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:365:20)
|
|
55
|
-
at async file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:939:21
|
|
56
|
-
TypeError: addArtifact is not a function
|
|
57
|
-
at path3 (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:71:9)
|
|
58
|
-
at Proxy.<anonymous> (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:18:34)
|
|
59
|
-
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs:174:54)
|
|
60
|
-
at file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:824:39
|
|
61
|
-
at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs:4514:12)
|
|
62
|
-
at BaseThen.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:916:40)
|
|
63
|
-
at BaseThen.test (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:805:17)
|
|
64
|
-
at BaseGiven.give (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:694:24)
|
|
65
|
-
at async BaseSuite.run (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:365:20)
|
|
66
|
-
at async file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:939:21
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
[DEBUG] butThenProxy writeFileSync: fp="test.txt" (type: string), contents="content" (type: string), testName="test" (type: string)
|
|
2
|
-
[DEBUG] Generated path: "test/path/butThen/test.txt"
|
|
3
|
-
[DEBUG] butThenProxy writeFileSync: fp="test.txt" (type: string), contents="content" (type: string), testName="test" (type: string)
|
|
4
|
-
[DEBUG] Generated path: "test/path/butThen/test.txt"
|
|
5
|
-
[DEBUG] butThenProxy writeFileSync: fp="test.txt" (type: string), contents="content" (type: string), testName="test" (type: string)
|
|
6
|
-
[DEBUG] Generated path: "test/path/butThen/test.txt"
|
|
7
|
-
[DEBUG] butThenProxy writeFileSync: fp="test.txt" (type: string), contents="content" (type: string), testName="test" (type: string)
|
|
8
|
-
[DEBUG] Generated path: "test/path/butThen/test.txt"
|
|
9
|
-
[DEBUG] butThenProxy writeFileSync: fp="test.txt" (type: string), contents="content" (type: string), testName="test" (type: string)
|
|
10
|
-
[DEBUG] Generated path: "test/path/butThen/test.txt"
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
/Users/adam/Code/testeranto/src/lib/BaseThen.ts (76,41): A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
2
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (42,12): This expression is not callable.
|
|
3
|
-
Type 'unknown' has no call signatures.
|
|
4
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (50,12): This expression is not callable.
|
|
5
|
-
Type 'unknown' has no call signatures.
|
|
6
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/adapter.ts (13,3): Type '(subject: { proxies: import("/Users/adam/Code/testeranto/src/lib/pmProxy.test/index").ITestProxies; filepath: string; mockPm: import("/Users/adam/Code/testeranto/src/lib/types").IPM; }, initializer: (c?: any) => [...], testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, ini...' is not assignable to type '(subject: { proxies: import("/Users/adam/Code/testeranto/src/lib/pmProxy.test/index").ITestProxies; filepath: string; mockPm: import("/Users/adam/Code/testeranto/src/lib/types").IPM; }, initializer: (c?: any) => [...], testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, ini...'. Two different types with this name exist, but they are unrelated.
|
|
7
|
-
Type 'Promise<{ proxies: ITestProxies; filepath: string; mockPm: IPM; }>' is not assignable to type 'Promise<{ butThenProxy: IProxy; }>'.
|
|
8
|
-
Property 'butThenProxy' is missing in type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' but required in type '{ butThenProxy: IProxy; }'.
|
|
9
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/adapter.ts (24,3): Type '(store: { butThenProxy: import("/Users/adam/Code/testeranto/src/lib/pmProxy").IProxy; }, whenCB: (...args: any[]) => (proxies: { butThenProxy: import("/Users/adam/Code/testeranto/src/lib/pmProxy").IProxy; }) => { ...; }, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, p...' is not assignable to type '(store: { butThenProxy: import("/Users/adam/Code/testeranto/src/lib/pmProxy").IProxy; }, whenCB: (...args: any[]) => (proxies: { butThenProxy: import("/Users/adam/Code/testeranto/src/lib/pmProxy").IProxy; }) => { ...; }, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, p...'. Two different types with this name exist, but they are unrelated.
|
|
10
|
-
Type 'Promise<(proxies: { butThenProxy: IProxy; }) => { butThenProxy: IProxy; }>' is not assignable to type 'Promise<{ butThenProxy: IProxy; }>'.
|
|
11
|
-
Type '(proxies: { butThenProxy: IProxy; }) => { butThenProxy: IProxy; }' is not assignable to type '{ butThenProxy: IProxy; }'.
|
|
12
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/adapter.ts (37,12): This expression is not callable.
|
|
13
|
-
Type '[IPM, "string"]' has no call signatures.
|
|
14
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/adapter.ts (42,3): Type '(input: any, testResource: any, pm: any, theGivenString: any) => Promise<{ beforeEachProxy: any; }>' is not assignable to type '(input: { butThenProxy: IProxy; }, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<{ proxies: ITestProxies; filepath: string; mockPm: IPM; }>'.
|
|
15
|
-
Target signature provides too few arguments. Expected 4 or more, but got 3.
|
|
16
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/adapter.ts (51,3): Type '(actualResult: any, expectedResult: any) => void' is not assignable to type '(x: [IPM, "string"]) => any'.
|
|
17
|
-
Target signature provides too few arguments. Expected 2 or more, but got 1.
|
|
18
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/implementation.ts (56,5): Type '(method: string, expectedPath: string) => (store: { pathRewriter: PathRewriter; }) => Promise<string | undefined>' is not assignable to type '(...It: any) => (ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, "string"]'.
|
|
19
|
-
Type '(store: { pathRewriter: PathRewriter; }) => Promise<string | undefined>' is not assignable to type '(ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, "string"]'.
|
|
20
|
-
Types of parameters 'store' and 'ssel' are incompatible.
|
|
21
|
-
Property 'pathRewriter' is missing in type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' but required in type '{ pathRewriter: PathRewriter; }'.
|
|
22
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/implementation.ts (67,9): Type '(path: string, content: string, testName?: string) => Promise<any>' is not assignable to type '((x: any) => Promise<boolean>) | (() => Promise<boolean>) | ((x: any) => any)'.
|
|
23
|
-
Type '(path: string, content: string, testName?: string) => Promise<any>' is not assignable to type '(x: any) => Promise<boolean>'.
|
|
24
|
-
Target signature provides too few arguments. Expected 2 or more, but got 1.
|
|
25
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/implementation.ts (103,17): Expected 1 arguments, but got 3.
|
|
26
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/implementation.ts (115,19): Type '"screen.png"' is not assignable to type '`${string}.webm`'.
|
|
27
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/implementation.ts (137,5): Type '(expectedContent: any) => (result: any[]) => any[]' is not assignable to type '(...It: any) => (ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, "string"]'.
|
|
28
|
-
Type '(result: any[]) => any[]' is not assignable to type '(ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, "string"]'.
|
|
29
|
-
Types of parameters 'result' and 'ssel' are incompatible.
|
|
30
|
-
Type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' is missing the following properties from type 'any[]': length, pop, push, concat, and 35 more.
|
|
31
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/implementation.ts (150,13): Type '(store: { pathRewriter: PathRewriter; }) => Promise<string>' is not assignable to type '(ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, "string"]'.
|
|
32
|
-
Types of parameters 'store' and 'ssel' are incompatible.
|
|
33
|
-
Property 'pathRewriter' is missing in type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' but required in type '{ pathRewriter: PathRewriter; }'.
|
|
34
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/index.ts (17,3): Argument of type 'ITestImplementation<I, any, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<any>; givens: TestGivenImplementation<I, any>; whens: TestWhenImplementation<I, any>; thens: TestThenImplementation<...>; }, never>'.
|
|
35
|
-
Types of property 'givens' are incompatible.
|
|
36
|
-
Type '{ [x: string]: (...Iw: any) => string; }' is not assignable to type 'TestGivenImplementation<I, any>'.
|
|
37
|
-
'string' index signatures are incompatible.
|
|
38
|
-
Type '(...Iw: any) => string' is not assignable to type '(...Ig: any) => [string, string]'.
|
|
39
|
-
Type 'string' is not assignable to type '[string, string]'.
|
|
40
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/types.ts (19,17): Generic type 'Ibdd_out' requires between 0 and 4 type arguments.
|
|
41
|
-
/Users/adam/Code/testeranto/src/lib/Tiposkripto.ts (205,7): Argument of type 'Record<string, any>' is not assignable to parameter of type 'SuiteSpecification<I, O>'.
|
|
42
|
-
/Users/adam/Code/testeranto/src/lib/Tiposkripto.ts (263,15): Expected 1 arguments, but got 3.
|
|
43
|
-
/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 & { ...; }'.
|
|
44
|
-
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, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
|
|
45
|
-
/Users/adam/Code/testeranto/src/Node.ts (56,12): Cannot find name 'Testeranto'.
|
|
46
|
-
/Users/adam/Code/testeranto/src/PM/web.ts (59,12): Property 'mainFrame' does not exist on type 'string | Page'.
|
|
47
|
-
Property 'mainFrame' does not exist on type 'string'.
|
|
File without changes
|