testeranto 0.199.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 +2 -2
- 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
package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/type_errors.txt
DELETED
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic.ts (33,14): Type '(testInput: typeof Component) => { beforeAll: (subject: typeof Component, artificer: ITTestResourceConfiguration) => Promise<{ htmlElement: HTMLElement; }>; ... 5 more ...; assertThis: (x: (s: ISelection) => ISelection) => (s: ISelection) => ISelection; }' is not assignable to type '(testInput: typeof Component) => ITestAdapter<I>'.
|
|
2
|
-
Call signature return types '{ beforeAll: (subject: typeof Component, artificer: ITTestResourceConfiguration) => Promise<{ htmlElement: HTMLElement; }>; ... 5 more ...; assertThis: (x: (s: ISelection) => ISelection) => (s: ISelection) => ISelection; }' and 'ITestAdapter<I>' are incompatible.
|
|
3
|
-
The types returned by 'beforeAll(...)' are incompatible between these types.
|
|
4
|
-
Type 'Promise<{ htmlElement: HTMLElement; }>' is not assignable to type 'Promise<ISubject>'.
|
|
5
|
-
Property 'domRoot' is missing in type '{ htmlElement: HTMLElement; }' but required in type 'ISubject'.
|
|
6
|
-
/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic.ts (47,45): Property 'subject' does not exist on type 'Readonly<{}>'.
|
|
7
|
-
/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic.ts (114,9): Expected 1 arguments, but got 3.
|
|
8
|
-
/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react/component/index.ts (21,3): Type '{ beforeEach: () => Promise<CElement<any, any>>; andWhen: (s: CElement<any, any>, whenCB: () => (s: CElement<any, any>) => any) => any; }' is missing the following properties from type 'ITestAdapter<I>': assertThis, butThen, afterAll, afterEach, beforeAll
|
|
9
|
-
/Users/adam/Code/testeranto/src/components/pure/NavBar.tsx (87,21): Type '{ children: (ReactNode | Element)[]; key: number; as: "div" | ForwardRefExoticComponent<LinkProps & RefAttributes<HTMLAnchorElement>>; to: string | undefined; active: boolean | undefined; className: string; title: string | undefined; }' is not assignable to type 'IntrinsicAttributes & Omit<(Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & { ...; }) | (LinkProps & RefAttributes<...>), BsPrefixProps<...> & NavLinkProps> & BsPrefixProps<...> & NavLinkProps & { ...; }'.
|
|
10
|
-
Property 'to' does not exist on type 'IntrinsicAttributes & Omit<(Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & { ...; }) | (LinkProps & RefAttributes<...>), BsPrefixProps<...> & NavLinkProps> & BsPrefixProps<...> & NavLinkProps & { ...; }'.
|
|
11
|
-
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/implementation.tsx (10,3): Property 'Navigation' is missing in type '{ Default: () => { summary: { "test-suite-1": { testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; }; "test-suite-2": { testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; }; }; ... 14 more ...; domRoot: any; }; WithError: () => { ...; }; }' but required in type '{ Default: (...args: any[]) => IProjectPageViewProps; WithError: (...args: any[]) => IProjectPageViewProps; Navigation: (...args: any[]) => IProjectPageViewProps; }'.
|
|
12
|
-
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/implementation.tsx (138,37): Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
13
|
-
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/implementation.tsx (147,37): Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
14
|
-
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/implementation.tsx (156,37): Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
15
|
-
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/implementation.tsx (165,37): Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
16
|
-
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/implementation.tsx (174,37): Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
17
|
-
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/implementation.tsx (177,24): 'el' is of type 'unknown'.
|
|
18
|
-
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/implementation.tsx (185,37): Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
19
|
-
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/implementation.tsx (188,24): 'el' is of type 'unknown'.
|
|
20
|
-
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/implementation.tsx (195,37): Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
21
|
-
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/implementation.tsx (205,5): Type '(name: string) => (state: any, pm: any) => Promise<any>' is not assignable to type '(...args: any[]) => (state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { ...; }'.
|
|
22
|
-
Type '(state: any, pm: any) => Promise<any>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
23
|
-
Target signature provides too few arguments. Expected 2 or more, but got 1.
|
|
24
|
-
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/index.tsx (16,3): Argument of type 'import("/Users/adam/Code/testeranto/src/CoreTypes").ITestSpecification<import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").I, import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").O>' is not assignable to parameter of type 'import("/Users/adam/Code/testeranto/src/CoreTypes").ITestSpecification<import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I, import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").O>'.
|
|
25
|
-
Types of parameters 'Suite' and 'Suite' are incompatible.
|
|
26
|
-
Type 'import("/Users/adam/Code/testeranto/src/Types").SuiteSpecification<import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I, import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").O>' is not assignable to type 'import("/Users/adam/Code/testeranto/src/Types").SuiteSpecification<import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").I, import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").O>'.
|
|
27
|
-
Types of property 'Default' are incompatible.
|
|
28
|
-
Type '(name: string, givens: import("/Users/adam/Code/testeranto/src/lib/BaseGiven").IGivens<import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I>) => import("/Users/adam/Code/testeranto/src/lib/BaseSuite").BaseSuite<...>' is not assignable to type '(name: string, givens: import("/Users/adam/Code/testeranto/src/lib/BaseGiven").IGivens<import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").I>) => import("/Users/adam/Code/testeranto/src/lib/BaseSuite").BaseSuite<...>'.
|
|
29
|
-
Types of parameters 'givens' and 'givens' are incompatible.
|
|
30
|
-
Type 'import("/Users/adam/Code/testeranto/src/lib/BaseGiven").IGivens<import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").I>' is not assignable to type 'import("/Users/adam/Code/testeranto/src/lib/BaseGiven").IGivens<import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I>'.
|
|
31
|
-
Type 'import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").I' is not assignable to type 'import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I'.
|
|
32
|
-
Types of property 'iinput' are incompatible.
|
|
33
|
-
Property 'prototype' is missing in type 'IProjectPageViewProps' but required in type 'typeof Component'.
|
|
34
|
-
/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.
|
|
35
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (42,12): This expression is not callable.
|
|
36
|
-
Type 'unknown' has no call signatures.
|
|
37
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (50,12): This expression is not callable.
|
|
38
|
-
Type 'unknown' has no call signatures.
|
|
39
|
-
/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>'.
|
|
40
|
-
/Users/adam/Code/testeranto/src/lib/Tiposkripto.ts (263,15): Expected 1 arguments, but got 3.
|
|
41
|
-
/Users/adam/Code/testeranto/src/PM/web.ts (59,12): Property 'mainFrame' does not exist on type 'string | Page'.
|
|
42
|
-
Property 'mainFrame' does not exist on type 'string'.
|
|
43
|
-
/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 & { ...; }'.
|
|
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/Web.ts (92,12): Cannot find name 'Testeranto'. Did you mean 'WebTesteranto'?
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0
|
package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/lint_errors.txt
DELETED
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
src/components/pure/TestPageView.test/implementation.ts
|
|
2
|
-
20:3 The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
|
|
3
|
-
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
|
|
4
|
-
- If you want a type meaning "any object", you probably want `object` instead.
|
|
5
|
-
- If you want a type meaning "any value", you probably want `unknown` instead. (@typescript-eslint/no-empty-object-type)
|
|
6
|
-
- undefined (fix)
|
|
7
|
-
- undefined (fix)
|
|
8
|
-
87:69 'tr' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
9
|
-
87:102 'utils' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
10
|
-
98:59 'tr' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
11
|
-
98:92 'utils' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
12
|
-
109:22 'name' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
13
|
-
109:46 'ssel' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
14
|
-
109:64 'utils' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
15
|
-
113:33 'ssel' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
16
|
-
113:51 'utils' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
17
|
-
118:49 'ssel' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
18
|
-
118:67 'utils' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
19
|
-
123:36 'ssel' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
20
|
-
123:54 'utils' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
21
|
-
129:36 'ssel' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
22
|
-
129:54 'utils' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
23
|
-
137:29 'ssel' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
24
|
-
137:47 'utils' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
25
|
-
143:35 'ssel' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
26
|
-
143:53 'utils' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
27
|
-
149:35 'ssel' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
28
|
-
149:53 'utils' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
29
|
-
155:44 'ssel' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
30
|
-
155:62 'utils' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
31
|
-
|
|
32
|
-
src/components/pure/TestPageView.test/specification.ts
|
|
33
|
-
6:13 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
|
|
34
|
-
- undefined (fix)
|
|
35
|
-
- undefined (fix)
|
|
36
|
-
7:15 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
|
|
37
|
-
- undefined (fix)
|
|
38
|
-
- undefined (fix)
|
|
39
|
-
10:12 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
|
|
40
|
-
- undefined (fix)
|
|
41
|
-
- undefined (fix)
|
|
42
|
-
11:11 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
|
|
43
|
-
- undefined (fix)
|
|
44
|
-
- undefined (fix)
|
|
45
|
-
12:11 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
|
|
46
|
-
- undefined (fix)
|
|
47
|
-
- undefined (fix)
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
There are 3 types of test reports.
|
|
3
|
-
1) bdd (highest priority)
|
|
4
|
-
2) type checker
|
|
5
|
-
3) static analysis (lowest priority)
|
|
6
|
-
|
|
7
|
-
"tests.json" is the detailed result of the bdd tests.
|
|
8
|
-
if these files do not exist, then something has gone badly wrong and needs to be addressed.
|
|
9
|
-
|
|
10
|
-
"type_errors.txt" is the result of the type checker.
|
|
11
|
-
if this file does not exist, then type check passed without errors;
|
|
12
|
-
|
|
13
|
-
"lint_errors.txt" is the result of the static analysis.
|
|
14
|
-
if this file does not exist, then static analysis passed without errors;
|
|
15
|
-
|
|
16
|
-
BDD failures are the highest priority. Focus on passing BDD tests before addressing other concerns.
|
|
17
|
-
Do not add error throwing/catching to the tests themselves.
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/add src/components/pure/TestPageView.test/index.tsx
|
|
3
|
-
/add src/components/pure/TestPageView.test/implementation.ts
|
|
4
|
-
/add src/components/pure/TestPageView.test/specification.ts
|
|
5
|
-
/add src/components/pure/TestPageView.tsx
|
|
6
|
-
/add src/utils/logFiles.ts
|
|
7
|
-
|
|
8
|
-
/read node_modules/testeranto/docs/index.md
|
|
9
|
-
/read node_modules/testeranto/docs/style.md
|
|
10
|
-
/read node_modules/testeranto/docs/testing.ai.txt
|
|
11
|
-
/read node_modules/testeranto/src/CoreTypes.ts
|
|
12
|
-
|
|
13
|
-
/read testeranto/reports/core/src/components/pure/TestPageView.test/index/web/tests.json
|
|
14
|
-
/read testeranto/reports/core/src/components/pure/TestPageView.test/index/web/type_errors.txt
|
|
15
|
-
/read testeranto/reports/core/src/components/pure/TestPageView.test/index/web/lint_errors.txt
|
|
16
|
-
|
|
17
|
-
/read testeranto/reports/core/src/components/pure/TestPageView.test/index/web/tests.json testeranto/reports/core/src/components/pure/TestPageView.test/index/web/type_errors.txt testeranto/reports/core/src/components/pure/TestPageView.test/index/web/lint_errors.txt testeranto/reports/core/src/components/pure/TestPageView.test/index/web/exit.log testeranto/reports/core/src/components/pure/TestPageView.test/index/web/message.txt testeranto/reports/core/src/components/pure/TestPageView.test/index/web/prompt.txt testeranto/reports/core/src/components/pure/TestPageView.test/index/web/info.log testeranto/reports/core/src/components/pure/TestPageView.test/index/web/error.log testeranto/reports/core/src/components/pure/TestPageView.test/index/web/warn.log testeranto/reports/core/src/components/pure/TestPageView.test/index/web/debug.log
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "TestPageView basic rendering",
|
|
3
|
-
"givens": [
|
|
4
|
-
{
|
|
5
|
-
"key": "renders navigation bar",
|
|
6
|
-
"name": [],
|
|
7
|
-
"whens": [
|
|
8
|
-
{
|
|
9
|
-
"name": "RendersNavBar: ",
|
|
10
|
-
"error": "TypeError: Cannot read properties of undefined (reading 'querySelector')\n at file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.mjs?cacheBust=1756077043716:172:36\n at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.mjs?cacheBust=1756077043716:57:14)\n at async BaseThen.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2829:22)\n at async BaseGiven.give (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2601:9)\n at async BaseSuite.run (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2322:20)\n at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2852:21\n at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2884:31)\n at async WebTesteranto.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2947:12)\n at async pptr:evaluate;file%3A%2F%2F%2FUsers%2Fadam%2FCode%2Ftesteranto%2Fsrc%2FPM%2Fmain.ts%3A17%3A996:4:12",
|
|
11
|
-
"artifacts": []
|
|
12
|
-
}
|
|
13
|
-
],
|
|
14
|
-
"thens": [],
|
|
15
|
-
"error": null,
|
|
16
|
-
"features": [],
|
|
17
|
-
"artifacts": []
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
"key": "shows error counts",
|
|
21
|
-
"name": [],
|
|
22
|
-
"whens": [
|
|
23
|
-
{
|
|
24
|
-
"name": "ShowsErrorCounts: ",
|
|
25
|
-
"error": "TypeError: Cannot read properties of undefined (reading 'querySelectorAll')\n at file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.mjs?cacheBust=1756077043716:181:36\n at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.mjs?cacheBust=1756077043716:57:14)\n at async BaseThen.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2829:22)\n at async BaseGiven.give (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2601:9)\n at async BaseSuite.run (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2322:20)\n at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2852:21\n at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2884:31)\n at async WebTesteranto.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2947:12)\n at async pptr:evaluate;file%3A%2F%2F%2FUsers%2Fadam%2FCode%2Ftesteranto%2Fsrc%2FPM%2Fmain.ts%3A17%3A996:4:12",
|
|
26
|
-
"artifacts": []
|
|
27
|
-
}
|
|
28
|
-
],
|
|
29
|
-
"thens": [],
|
|
30
|
-
"error": null,
|
|
31
|
-
"features": [],
|
|
32
|
-
"artifacts": []
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
"key": "shows test results when data exists",
|
|
36
|
-
"name": [],
|
|
37
|
-
"whens": [
|
|
38
|
-
{
|
|
39
|
-
"name": "takeScreenshot: shot.png",
|
|
40
|
-
"error": false,
|
|
41
|
-
"artifacts": []
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
"name": "ShowsTestResults: ",
|
|
45
|
-
"error": false,
|
|
46
|
-
"artifacts": []
|
|
47
|
-
}
|
|
48
|
-
],
|
|
49
|
-
"thens": [],
|
|
50
|
-
"error": null,
|
|
51
|
-
"features": [],
|
|
52
|
-
"artifacts": []
|
|
53
|
-
}
|
|
54
|
-
],
|
|
55
|
-
"fails": 0,
|
|
56
|
-
"features": []
|
|
57
|
-
}
|
package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/type_errors.txt
DELETED
|
@@ -1,99 +0,0 @@
|
|
|
1
|
-
/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts (4,39): Module '"testeranto/src/lib"' declares 'IPM' locally, but it is not exported.
|
|
2
|
-
/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts (29,5): Type '(subject: HTMLElement, initializer: (c?: any) => unknown, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, initialValues: any, pm: import("/Users/adam/Code/testeranto/src/lib/types").IPM) => Promise<...>' is not assignable to type '(subject: HTMLElement, initializer: (c?: any) => unknown, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, initialValues: any, pm: import("/Users/adam/Code/testeranto/src/lib/types").IPM) => Promise<...>'. Two different types with this name exist, but they are unrelated.
|
|
3
|
-
Type 'Promise<unknown>' is not assignable to type 'Promise<HTMLElement>'.
|
|
4
|
-
Type 'unknown' is not assignable to type 'HTMLElement'.
|
|
5
|
-
/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts (42,17): Property 'container' does not exist on type 'HTMLElement'. Did you mean 'contains'?
|
|
6
|
-
/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts (43,15): Property 'domRoot' does not exist on type 'HTMLElement'.
|
|
7
|
-
/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts (44,15): Property 'container' does not exist on type 'HTMLElement'. Did you mean 'contains'?
|
|
8
|
-
/Users/adam/Code/testeranto/src/components/pure/NavBar.tsx (87,21): Type '{ children: (Element | ReactNode)[]; key: number; as: "div" | ForwardRefExoticComponent<LinkProps & RefAttributes<HTMLAnchorElement>>; to: string | undefined; active: boolean | undefined; className: string; title: string | undefined; }' is not assignable to type 'IntrinsicAttributes & Omit<(Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & { ...; }) | (LinkProps & RefAttributes<...>), BsPrefixProps<...> & NavLinkProps> & BsPrefixProps<...> & NavLinkProps & { ...; }'.
|
|
9
|
-
Property 'to' does not exist on type 'IntrinsicAttributes & Omit<(Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & { ...; }) | (LinkProps & RefAttributes<...>), BsPrefixProps<...> & NavLinkProps> & BsPrefixProps<...> & NavLinkProps & { ...; }'.
|
|
10
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (7,39): Module '"../../../lib"' declares 'IPM' locally, but it is not exported.
|
|
11
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (29,20): Type '(props: IInput) => { summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; error: string | null; projectName: string; activeTab: string; setActiveTab: (tab: string) => void; container: HTMLDivElement; reactElement: React.DetailedReactHTMLElement<...>; domRoot: ReactDom.Root; }' is not assignable to type '(props: IProjectPageViewProps) => ISelection'.
|
|
12
|
-
Property 'htmlElement' is missing in type '{ summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; error: string | null; projectName: string; activeTab: string; setActiveTab: (tab: string) => void; container: HTMLDivElement; reactElement: React.DetailedReactHTMLElement<...>; domRoot: ReactDom.Root; }' but required in type 'ISelection'.
|
|
13
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (34,48): No overload matches this call.
|
|
14
|
-
The last overload gave the following error.
|
|
15
|
-
Argument of type 'IProjectPageViewProps' is not assignable to parameter of type 'string | FunctionComponent<{}> | ComponentClass<{}, any>'.
|
|
16
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (45,23): Type '(props: IInput) => { errorCounts: { runTimeErrors: number; typeErrors: number; staticErrors: number; }; summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; ... 6 more ...; domRoot: ReactDom.Root; }' is not assignable to type '(props: IProjectPageViewProps) => ISelection'.
|
|
17
|
-
Property 'htmlElement' is missing in type '{ errorCounts: { runTimeErrors: number; typeErrors: number; staticErrors: number; }; summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; error: string | null; ... 5 more ...; domRoot: ReactDom.Root; }' but required in type 'ISelection'.
|
|
18
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (49,48): No overload matches this call.
|
|
19
|
-
The last overload gave the following error.
|
|
20
|
-
Argument of type 'IProjectPageViewProps' is not assignable to parameter of type 'string | FunctionComponent<{}> | ComponentClass<{}, any>'.
|
|
21
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (65,21): Type '(props: IInput) => { logs: { 'tests.json': string; 'stdout.log': string; }; summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; error: string | null; projectName: string; ... 4 more ...; domRoot: ReactDom.Root; }' is not assignable to type '(props: IProjectPageViewProps) => ISelection'.
|
|
22
|
-
Property 'htmlElement' is missing in type '{ logs: { 'tests.json': string; 'stdout.log': string; }; summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; error: string | null; projectName: string; activeTab: string; setActiveTab: (tab: string) => void; container: HTMLDivElement; reactElement: React.DetailedReactHTMLElement<...' but required in type 'ISelection'.
|
|
23
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (69,48): No overload matches this call.
|
|
24
|
-
The last overload gave the following error.
|
|
25
|
-
Argument of type 'IProjectPageViewProps' is not assignable to parameter of type 'string | FunctionComponent<{}> | ComponentClass<{}, any>'.
|
|
26
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (87,5): Type '(tabName: string) => (selection: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => { reactElement: React.ReactElement<any, string | React.JSXElementConstructor<any>>; activeTab: string; htmlElement: HTMLElement; domRoot: ReactDom.Root; }>' is not assignable to type '(Iw_0: string) => (zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>>'.
|
|
27
|
-
Call signature return types '(selection: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => { reactElement: ReactElement<any, string | JSXElementConstructor<...>>; activeTab: string; htmlElement: HTMLElement; domRoot: Root; }>' and '(zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>>' are incompatible.
|
|
28
|
-
Type 'Promise<(sel: ISelection) => { reactElement: ReactElement<any, string | JSXElementConstructor<any>>; activeTab: string; htmlElement: HTMLElement; domRoot: Root; }>' is not assignable to type 'Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>>'.
|
|
29
|
-
Type '(sel: ISelection) => { reactElement: React.ReactElement<any, string | React.JSXElementConstructor<any>>; activeTab: string; htmlElement: HTMLElement; domRoot: ReactDom.Root; }' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
30
|
-
Type '{ reactElement: ReactElement<any, string | JSXElementConstructor<any>>; activeTab: string; htmlElement: HTMLElement; domRoot: Root; }' is missing the following properties from type 'Promise<(sel: ISelection) => ISelection>': then, catch, finally, [Symbol.toStringTag]
|
|
31
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (98,29): Type '(selection: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>' is not assignable to type '(zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>>'.
|
|
32
|
-
Type 'Promise<(sel: ISelection) => ISelection>' is not assignable to type 'Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>>'.
|
|
33
|
-
Type '(sel: ISelection) => ISelection' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
34
|
-
Type 'ISelection' is missing the following properties from type 'Promise<(sel: ISelection) => ISelection>': then, catch, finally, [Symbol.toStringTag]
|
|
35
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (100,32): Property 'container' does not exist on type 'ISelection'.
|
|
36
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (109,5): Type '(name: string) => (ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(It_0: string) => (ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>'.
|
|
37
|
-
Call signature return types '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' and '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>' are incompatible.
|
|
38
|
-
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
39
|
-
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
40
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (113,26): Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
41
|
-
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
42
|
-
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
43
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (114,26): Property 'container' does not exist on type 'ISelection'.
|
|
44
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (118,5): Type '(tabName: string) => (ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(It_0: string) => (ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>'.
|
|
45
|
-
Call signature return types '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' and '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>' are incompatible.
|
|
46
|
-
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
47
|
-
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
48
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (120,24): Property 'activeTab' does not exist on type 'ISelection'.
|
|
49
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (123,29): Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
50
|
-
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
51
|
-
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
52
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (125,26): Property 'container' does not exist on type 'ISelection'.
|
|
53
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (129,29): Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
54
|
-
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
55
|
-
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
56
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (131,15): Property 'testsExist' does not exist on type 'ISelection'.
|
|
57
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (132,33): Property 'container' does not exist on type 'ISelection'.
|
|
58
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (137,22): Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
59
|
-
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
60
|
-
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
61
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (139,24): Property 'container' does not exist on type 'ISelection'.
|
|
62
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (143,28): Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
63
|
-
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
64
|
-
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
65
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (145,30): Property 'container' does not exist on type 'ISelection'.
|
|
66
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (149,28): Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
67
|
-
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
68
|
-
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
69
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (151,30): Property 'container' does not exist on type 'ISelection'.
|
|
70
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (155,37): Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
71
|
-
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
72
|
-
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
73
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (157,31): Property 'container' does not exist on type 'ISelection'.
|
|
74
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/index.tsx (18,3): Argument of type 'ITestSpecification<{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }, O>' is not assignable to parameter of type 'ITestSpecification<I, O>'.
|
|
75
|
-
Types of parameters 'Suite' and 'Suite' are incompatible.
|
|
76
|
-
Type 'SuiteSpecification<I, O>' is not assignable to type 'SuiteSpecification<{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }, O>'.
|
|
77
|
-
Types of property 'Default' are incompatible.
|
|
78
|
-
Type '(name: string, givens: IGivens<I>) => BaseSuite<I, O>' is not assignable to type '(name: string, givens: IGivens<{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }>) => BaseSuite<{ iinput: any; ... 5 more ...; then: any; }, O>'.
|
|
79
|
-
Types of parameters 'givens' and 'givens' are incompatible.
|
|
80
|
-
Type 'IGivens<{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }>' is not assignable to type 'IGivens<I>'.
|
|
81
|
-
Type '{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }' is not assignable to type 'I'.
|
|
82
|
-
Types of property 'istore' are incompatible.
|
|
83
|
-
Type 'ISelection' is missing the following properties from type 'HTMLElement': accessKey, accessKeyLabel, autocapitalize, autocorrect, and 314 more.
|
|
84
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.tsx (64,13): 'node' is of type 'unknown'.
|
|
85
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.tsx (72,45): 'node' is of type 'unknown'.
|
|
86
|
-
/Users/adam/Code/testeranto/src/components/pure/TestPageView.tsx (1011,11): Type '{ testName: string; testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; variant: "compact"; className: string; }' is not assignable to type 'IntrinsicAttributes & TestStatusBadgeProps'.
|
|
87
|
-
Property 'className' does not exist on type 'IntrinsicAttributes & TestStatusBadgeProps'.
|
|
88
|
-
/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.
|
|
89
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (42,12): This expression is not callable.
|
|
90
|
-
Type 'unknown' has no call signatures.
|
|
91
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (50,12): This expression is not callable.
|
|
92
|
-
Type 'unknown' has no call signatures.
|
|
93
|
-
/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>'.
|
|
94
|
-
/Users/adam/Code/testeranto/src/lib/Tiposkripto.ts (263,15): Expected 1 arguments, but got 3.
|
|
95
|
-
/Users/adam/Code/testeranto/src/PM/web.ts (59,12): Property 'mainFrame' does not exist on type 'string | Page'.
|
|
96
|
-
Property 'mainFrame' does not exist on type 'string'.
|
|
97
|
-
/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 & { ...; }'.
|
|
98
|
-
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
|
|
99
|
-
/Users/adam/Code/testeranto/src/Web.ts (92,12): Cannot find name 'Testeranto'. Did you mean 'WebTesteranto'?
|
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
255
|
|
File without changes
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
There are 3 types of test reports.
|
|
3
|
-
1) bdd (highest priority)
|
|
4
|
-
2) type checker
|
|
5
|
-
3) static analysis (lowest priority)
|
|
6
|
-
|
|
7
|
-
"tests.json" is the detailed result of the bdd tests.
|
|
8
|
-
if these files do not exist, then something has gone badly wrong and needs to be addressed.
|
|
9
|
-
|
|
10
|
-
"type_errors.txt" is the result of the type checker.
|
|
11
|
-
if this file does not exist, then type check passed without errors;
|
|
12
|
-
|
|
13
|
-
"lint_errors.txt" is the result of the static analysis.
|
|
14
|
-
if this file does not exist, then static analysis passed without errors;
|
|
15
|
-
|
|
16
|
-
BDD failures are the highest priority. Focus on passing BDD tests before addressing other concerns.
|
|
17
|
-
Do not add error throwing/catching to the tests themselves.
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/add src/lib/TipoSkripto.test/MockTiposkripto.ts
|
|
3
|
-
/add src/lib/TipoSkripto.test/Tiposkripto.adapter.ts
|
|
4
|
-
/add src/lib/TipoSkripto.test/Tiposkripto.implementation.ts
|
|
5
|
-
/add src/lib/TipoSkripto.test/Tiposkripto.specification.ts
|
|
6
|
-
/add src/lib/TipoSkripto.test/TipoSkripto.ts
|
|
7
|
-
|
|
8
|
-
/read node_modules/testeranto/docs/index.md
|
|
9
|
-
/read node_modules/testeranto/docs/style.md
|
|
10
|
-
/read node_modules/testeranto/docs/testing.ai.txt
|
|
11
|
-
/read node_modules/testeranto/src/CoreTypes.ts
|
|
12
|
-
|
|
13
|
-
/read testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/tests.json
|
|
14
|
-
/read testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/type_errors.txt
|
|
15
|
-
/read testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/lint_errors.txt
|
|
16
|
-
|
|
17
|
-
/read testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/tests.json testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/type_errors.txt testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/lint_errors.txt testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/exit.log testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/message.txt testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/prompt.txt testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/stdout.log testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/stderr.log
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
TypeError: Then.initializedProperly is not a function
|
|
2
|
-
at specification (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/src/lib/TipoSkripto.test/TipoSkripto.mjs:286:15)
|
|
3
|
-
at new Tiposkripto (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:930:18)
|
|
4
|
-
at new NodeTesteranto (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:1022:5)
|
|
5
|
-
at testeranto (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:1040:15)
|
|
6
|
-
at file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/src/lib/TipoSkripto.test/TipoSkripto.mjs:374:27
|
|
7
|
-
at ModuleJob.run (node:internal/modules/esm/module_job:263:25)
|
|
8
|
-
at async ModuleLoader.import (node:internal/modules/esm/loader:540:24)
|
|
9
|
-
at async asyncRunEntryPointWithESMLoader (node:internal/modules/run_main:117:5)
|
|
10
|
-
TypeError: Then.initializedProperly is not a function
|
|
11
|
-
at specification (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/src/lib/TipoSkripto.test/TipoSkripto.mjs:286:15)
|
|
12
|
-
at new Tiposkripto (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:930:18)
|
|
13
|
-
at new NodeTesteranto (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:1022:5)
|
|
14
|
-
at testeranto (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:1040:15)
|
|
15
|
-
at file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/src/lib/TipoSkripto.test/TipoSkripto.mjs:374:27
|
|
16
|
-
at ModuleJob.run (node:internal/modules/esm/module_job:263:25)
|
|
17
|
-
at async ModuleLoader.import (node:internal/modules/esm/loader:540:24)
|
|
18
|
-
at async asyncRunEntryPointWithESMLoader (node:internal/modules/run_main:117:5)
|
|
File without changes
|
|
@@ -1,32 +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/Tiposkripto.test/MockTiposkripto.ts (32,56): Type 'never[]' is not assignable to type 'number'.
|
|
7
|
-
/Users/adam/Code/testeranto/src/lib/Tiposkripto.test/MockTiposkripto.ts (47,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 & { ...; }'.
|
|
8
|
-
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
|
|
9
|
-
/Users/adam/Code/testeranto/src/lib/Tiposkripto.test/Tiposkripto.adapter.ts (29,26): Expected 1 arguments, but got 2.
|
|
10
|
-
/Users/adam/Code/testeranto/src/lib/Tiposkripto.test/Tiposkripto.adapter.ts (32,26): Expected 1 arguments, but got 2.
|
|
11
|
-
/Users/adam/Code/testeranto/src/lib/Tiposkripto.test/Tiposkripto.adapter.ts (34,25): Type 'Tiposkripto<any, any, any>' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
|
|
12
|
-
/Users/adam/Code/testeranto/src/lib/Tiposkripto.test/Tiposkripto.implementation.ts (28,13): Type 'never[]' is not assignable to type 'number'.
|
|
13
|
-
/Users/adam/Code/testeranto/src/lib/Tiposkripto.test/Tiposkripto.implementation.ts (42,11): Type 'never[]' is not assignable to type 'number'.
|
|
14
|
-
/Users/adam/Code/testeranto/src/lib/Tiposkripto.test/Tiposkripto.implementation.ts (62,11): Type 'never[]' is not assignable to type 'number'.
|
|
15
|
-
/Users/adam/Code/testeranto/src/lib/Tiposkripto.test/Tiposkripto.implementation.ts (72,11): Type 'never[]' is not assignable to type 'number'.
|
|
16
|
-
/Users/adam/Code/testeranto/src/lib/Tiposkripto.test/Tiposkripto.implementation.ts (82,11): Type 'never[]' is not assignable to type 'number'.
|
|
17
|
-
/Users/adam/Code/testeranto/src/lib/Tiposkripto.test/Tiposkripto.implementation.ts (189,20): Property 'testAdapter' does not exist on type 'Tiposkripto<any, any, any>'.
|
|
18
|
-
/Users/adam/Code/testeranto/src/lib/Tiposkripto.test/Tiposkripto.implementation.ts (210,30): Type '(builder: Tiposkripto<any, any, any>) => Promise<Tiposkripto<any, any, any>>' is not assignable to type '(builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>'.
|
|
19
|
-
Type 'Promise<Tiposkripto<any, any, any>>' is missing the following properties from type 'Tiposkripto<any, any, any>': receiveTestResourceConfig, specs, assertThis, testResourceRequirement, and 14 more.
|
|
20
|
-
/Users/adam/Code/testeranto/src/lib/Tiposkripto.test/Tiposkripto.specification.ts (20,26): Expected 4 arguments, but got 3.
|
|
21
|
-
/Users/adam/Code/testeranto/src/lib/Tiposkripto.test/Tiposkripto.specification.ts (25,35): Expected 4 arguments, but got 3.
|
|
22
|
-
/Users/adam/Code/testeranto/src/lib/Tiposkripto.test/Tiposkripto.specification.ts (59,37): Expected 4 arguments, but got 3.
|
|
23
|
-
/Users/adam/Code/testeranto/src/lib/Tiposkripto.test/Tiposkripto.specification.ts (71,35): Expected 4 arguments, but got 3.
|
|
24
|
-
/Users/adam/Code/testeranto/src/lib/Tiposkripto.test/Tiposkripto.specification.ts (76,34): Expected 4 arguments, but got 3.
|
|
25
|
-
/Users/adam/Code/testeranto/src/lib/Tiposkripto.test/Tiposkripto.specification.ts (90,52): Cannot find name 'ITestJob'.
|
|
26
|
-
/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>'.
|
|
27
|
-
/Users/adam/Code/testeranto/src/lib/Tiposkripto.ts (263,15): Expected 1 arguments, but got 3.
|
|
28
|
-
/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 & { ...; }'.
|
|
29
|
-
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
|
|
30
|
-
/Users/adam/Code/testeranto/src/Node.ts (56,12): Cannot find name 'Testeranto'.
|
|
31
|
-
/Users/adam/Code/testeranto/src/PM/web.ts (59,12): Property 'mainFrame' does not exist on type 'string | Page'.
|
|
32
|
-
Property 'mainFrame' does not exist on type 'string'.
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
255
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
src/lib/pmProxy.test/implementation.ts
|
|
2
|
-
4:10 'IProxy' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
3
|
-
11:10 'createPathRewriter' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
4
|
-
57:24 'expectedPath' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
5
|
-
58:14 'store' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
6
|
-
98:9 Unnecessary try/catch wrapper. (no-useless-catch)
|
|
7
|
-
150:20 'store' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
8
|
-
|
|
9
|
-
src/lib/pmProxy.test/index.ts
|
|
10
|
-
11:33 The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
|
|
11
|
-
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
|
|
12
|
-
- If you want a type meaning "any object", you probably want `object` instead.
|
|
13
|
-
- If you want a type meaning "any value", you probably want `unknown` instead. (@typescript-eslint/no-empty-object-type)
|
|
14
|
-
- undefined (fix)
|
|
15
|
-
- undefined (fix)
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
There are 3 types of test reports.
|
|
3
|
-
1) bdd (highest priority)
|
|
4
|
-
2) type checker
|
|
5
|
-
3) static analysis (lowest priority)
|
|
6
|
-
|
|
7
|
-
"tests.json" is the detailed result of the bdd tests.
|
|
8
|
-
if these files do not exist, then something has gone badly wrong and needs to be addressed.
|
|
9
|
-
|
|
10
|
-
"type_errors.txt" is the result of the type checker.
|
|
11
|
-
if this file does not exist, then type check passed without errors;
|
|
12
|
-
|
|
13
|
-
"lint_errors.txt" is the result of the static analysis.
|
|
14
|
-
if this file does not exist, then static analysis passed without errors;
|
|
15
|
-
|
|
16
|
-
BDD failures are the highest priority. Focus on passing BDD tests before addressing other concerns.
|
|
17
|
-
Do not add error throwing/catching to the tests themselves.
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/add src/lib/pmProxy.test/mockPMBase.ts
|
|
3
|
-
/add src/lib/pmProxy.test/implementation.ts
|
|
4
|
-
/add src/lib/pmProxy.test/specification.ts
|
|
5
|
-
/add src/lib/pmProxy.test/adapter.ts
|
|
6
|
-
/add src/lib/pmProxy.test/index.ts
|
|
7
|
-
|
|
8
|
-
/read node_modules/testeranto/docs/index.md
|
|
9
|
-
/read node_modules/testeranto/docs/style.md
|
|
10
|
-
/read node_modules/testeranto/docs/testing.ai.txt
|
|
11
|
-
/read node_modules/testeranto/src/CoreTypes.ts
|
|
12
|
-
|
|
13
|
-
/read testeranto/reports/core/src/lib/pmProxy.test/index/node/tests.json
|
|
14
|
-
/read testeranto/reports/core/src/lib/pmProxy.test/index/node/type_errors.txt
|
|
15
|
-
/read testeranto/reports/core/src/lib/pmProxy.test/index/node/lint_errors.txt
|
|
16
|
-
|
|
17
|
-
/read testeranto/reports/core/src/lib/pmProxy.test/index/node/tests.json testeranto/reports/core/src/lib/pmProxy.test/index/node/type_errors.txt testeranto/reports/core/src/lib/pmProxy.test/index/node/lint_errors.txt testeranto/reports/core/src/lib/pmProxy.test/index/node/exit.log testeranto/reports/core/src/lib/pmProxy.test/index/node/message.txt testeranto/reports/core/src/lib/pmProxy.test/index/node/prompt.txt testeranto/reports/core/src/lib/pmProxy.test/index/node/stdout.log testeranto/reports/core/src/lib/pmProxy.test/index/node/stderr.log
|