testeranto 0.166.0 → 0.171.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/common/src/NavBar.js +45 -0
- package/dist/common/src/PM/main.js +81 -59
- package/dist/common/src/Pure.js +17 -15
- package/dist/common/src/ReportServer.js +48 -5
- package/dist/common/src/Web.js +35 -20
- package/dist/common/src/components/SunriseAnimation.test/implementation.js +1 -0
- package/dist/common/src/components/SunriseAnimation.test/index.js +1 -0
- package/dist/common/src/components/SunriseAnimation.test/interface.js +1 -0
- package/dist/common/src/components/SunriseAnimation.test/specification.js +1 -0
- package/dist/common/src/components/TestStatusBadge.js +55 -0
- package/dist/common/src/components/pure/ProjectPageView.js +204 -0
- package/dist/common/src/components/pure/ProjectPageView.test/adapter.js +20 -0
- package/dist/common/src/components/pure/ProjectPageView.test/implementation.js +71 -0
- package/dist/common/src/components/pure/ProjectPageView.test/index.js +10 -0
- package/dist/common/src/components/pure/ProjectPageView.test/specification.js +19 -0
- package/dist/common/src/components/pure/ProjectPageView.test/types.js +2 -0
- package/dist/common/src/lib/BaseSuite.js +3 -3
- package/dist/common/src/lib/BaseSuite.test/test.js +1 -1
- package/dist/common/src/lib/abstractBase.js +41 -14
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +1 -1
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.mock.js +1 -1
- package/dist/common/src/lib/basebuilder.js +9 -7
- package/dist/common/src/lib/core.test/MockCore.js +17 -15
- package/dist/common/src/lib/pmProxy.js +185 -64
- package/dist/common/testeranto.config.js +6 -0
- package/dist/common/tsconfig.common.tsbuildinfo +1 -1
- package/dist/module/src/App.js +3 -3
- package/dist/module/src/PM/main.js +81 -59
- package/dist/module/src/ProjectsPage.js +1 -110
- package/dist/module/src/Pure.js +17 -15
- package/dist/module/src/ReportServer.js +48 -5
- package/dist/module/src/TestPage.js +45 -16
- package/dist/module/src/Web.js +35 -20
- package/dist/module/src/components/SunriseAnimation.test/implementation.js +1 -0
- package/dist/module/src/components/SunriseAnimation.test/index.js +1 -0
- package/dist/module/src/components/SunriseAnimation.test/interface.js +1 -0
- package/dist/module/src/components/SunriseAnimation.test/specification.js +1 -0
- package/dist/module/src/components/pure/ProjectPageView.js +197 -0
- package/dist/module/src/components/pure/ProjectPageView.test/adapter.js +17 -0
- package/dist/module/src/components/pure/ProjectPageView.test/implementation.js +68 -0
- package/dist/module/src/components/pure/ProjectPageView.test/index.js +5 -0
- package/dist/module/src/components/pure/ProjectPageView.test/specification.js +15 -0
- package/dist/module/src/components/pure/ProjectPageView.test/types.js +1 -0
- package/dist/module/src/components/pure/ProjectsPageView.js +58 -0
- package/dist/module/src/components/pure/TestPageView.js +136 -0
- package/dist/module/src/components/stateful/ProjectPage.js +63 -0
- package/dist/module/src/components/stateful/ProjectsPage.js +55 -0
- package/dist/module/src/components/stateful/TestPage.js +82 -0
- package/dist/module/src/lib/BaseSuite.js +3 -3
- package/dist/module/src/lib/BaseSuite.test/test.js +1 -1
- package/dist/module/src/lib/abstractBase.js +41 -14
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +1 -1
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.mock.js +1 -1
- package/dist/module/src/lib/basebuilder.js +9 -7
- package/dist/module/src/lib/core.test/MockCore.js +17 -15
- package/dist/module/src/lib/pmProxy.js +185 -64
- package/dist/module/testeranto.config.js +6 -0
- package/dist/module/tsconfig.module.tsbuildinfo +1 -1
- package/dist/prebuild/App.js +541 -495
- package/dist/prebuild/ReportServer.mjs +44 -4
- package/dist/prebuild/run.mjs +67 -39
- package/dist/types/src/NavBar.d.ts +19 -0
- package/dist/types/src/PM/index.d.ts +3 -1
- package/dist/types/src/PM/main.d.ts +0 -4
- package/dist/types/src/PM/node.d.ts +2 -2
- package/dist/types/src/components/SunriseAnimation.test/interface.d.ts +0 -0
- package/dist/types/src/components/SunriseAnimation.test/specification.d.ts +0 -0
- package/dist/types/src/components/TestStatusBadge.d.ts +15 -0
- package/dist/types/src/components/pure/ProjectPageView.d.ts +14 -0
- package/dist/types/src/components/pure/ProjectPageView.test/adapter.d.ts +3 -0
- package/dist/types/src/components/pure/ProjectPageView.test/implementation.d.ts +3 -0
- package/dist/types/src/components/pure/ProjectPageView.test/index.d.ts +3 -0
- package/dist/types/src/components/pure/ProjectPageView.test/specification.d.ts +3 -0
- package/dist/types/src/components/pure/ProjectPageView.test/types.d.ts +39 -0
- package/dist/types/src/lib/BaseSuite.d.ts +2 -0
- package/dist/types/src/lib/abstractBase.d.ts +12 -0
- package/dist/types/src/lib/index.d.ts +0 -1
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +3 -2
- package/src/App.tsx +5 -9
- package/src/PM/index.ts +1 -1
- package/src/PM/main.ts +87 -82
- package/src/PM/node.ts +2 -2
- package/src/ProjectsPage.tsx +1 -164
- package/src/Pure.ts +17 -17
- package/src/ReportServer.ts +49 -6
- package/src/TestPage.tsx +78 -5
- package/src/Web.ts +35 -35
- package/src/components/SunriseAnimation.test/implementation.ts +0 -0
- package/src/components/SunriseAnimation.test/index.ts +0 -0
- package/src/components/SunriseAnimation.test/interface.ts +0 -0
- package/src/components/SunriseAnimation.test/specification.ts +0 -0
- package/src/components/pure/ProjectPageView.test/adapter.ts +21 -0
- package/src/components/pure/ProjectPageView.test/implementation.tsx +84 -0
- package/src/components/pure/ProjectPageView.test/index.ts +8 -0
- package/src/components/pure/ProjectPageView.test/specification.ts +31 -0
- package/src/components/pure/ProjectPageView.test/types.ts +55 -0
- package/src/components/pure/ProjectPageView.tsx +332 -0
- package/src/components/pure/ProjectsPageView.tsx +99 -0
- package/src/components/pure/TestPageView.tsx +278 -0
- package/src/components/stateful/ProjectPage.tsx +83 -0
- package/src/components/stateful/ProjectsPage.tsx +73 -0
- package/src/components/stateful/TestPage.tsx +107 -0
- package/src/lib/BaseSuite.test/test.ts +1 -1
- package/src/lib/BaseSuite.ts +9 -4
- package/src/lib/abstractBase.ts +45 -14
- package/src/lib/baseBuilder.test/baseBuilder.test.adapter.ts +1 -1
- package/src/lib/baseBuilder.test/baseBuilder.test.mock.ts +1 -1
- package/src/lib/basebuilder.ts +9 -9
- package/src/lib/core.test/MockCore.ts +26 -19
- package/src/lib/index.ts +1 -1
- package/src/lib/pmProxy.ts +184 -87
- package/testeranto/App.js +541 -495
- package/testeranto/bundles/node/allTests/{chunk-4ONUZRZ4.mjs → chunk-3EUGBAOM.mjs} +1 -1
- package/testeranto/bundles/node/allTests/{chunk-FFBRDUBH.mjs → chunk-E75CSRER.mjs} +247 -124
- package/testeranto/bundles/node/allTests/{chunk-NQEP7SN4.mjs → chunk-M6DO7VMB.mjs} +1 -1
- package/testeranto/bundles/node/allTests/metafile.json +41 -41
- package/testeranto/bundles/node/allTests/src/lib/BaseSuite.test/node.test.mjs +4 -4
- package/testeranto/bundles/node/allTests/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +4 -4
- package/testeranto/bundles/node/allTests/src/lib/classBuilder.test/classBuilder.test.mjs +3 -3
- package/testeranto/bundles/node/allTests/src/lib/core.test/core.test.mjs +11 -23
- package/testeranto/bundles/node/allTests/src/lib/pmProxy.test/index.mjs +2 -2
- package/testeranto/bundles/pure/allTests/{chunk-CSMXYJ65.mjs → chunk-KHDVEHF7.mjs} +3 -18
- package/testeranto/bundles/pure/allTests/{chunk-QK4IXLF6.mjs → chunk-VMUSFSZM.mjs} +247 -124
- package/testeranto/bundles/pure/allTests/metafile.json +77 -47
- package/testeranto/bundles/pure/allTests/src/Pure.test.mjs +2 -2
- package/testeranto/bundles/pure/allTests/src/lib/BaseSuite.test/pure.test.mjs +3 -3
- package/testeranto/bundles/pure/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +3 -30
- package/testeranto/bundles/web/allTests/chunk-HPYA4YZC.mjs +2283 -0
- package/testeranto/bundles/web/allTests/{chunk-TU3MJSSI.mjs → chunk-RLDR6LJN.mjs} +302 -127
- package/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs +997 -0
- package/testeranto/bundles/web/allTests/metafile.json +15065 -46
- package/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.html +19 -0
- package/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs +37524 -0
- package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs +20 -2
- package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +27 -3
- package/testeranto/reports/allTests/config.json +8 -0
- package/testeranto/reports/allTests/src/Pure.test/pure/type_errors.txt +9 -3
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/bdd_errors.txt +1 -0
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +13 -0
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/logs.txt +50 -0
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/message.txt +2 -0
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/prompt.txt +17 -0
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/tests.json +32 -0
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +68 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/logs.txt +0 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/tests.json +6 -3
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/type_errors.txt +8 -1
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/tests.json +6 -3
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +9 -3
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/logs.txt +0 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/prompt.txt +2 -2
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/tests.json +6 -3
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/type_errors.txt +10 -5
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/logs.txt +0 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +18 -9
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +8 -1
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +10 -5
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/logs.txt +0 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +2 -2
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +18 -9
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +10 -5
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/logs.txt +0 -0
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/tests.json +36 -18
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt +8 -1
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/lint_errors.txt +0 -12
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/logs.txt +2 -2
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/type_errors.txt +11 -8
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/logs.txt +0 -0
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/tests.json +28 -14
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/type_errors.txt +8 -1
- package/testeranto/reports/allTests/summary.json +16 -9
- package/testeranto/reportsweb_build_errors +25 -0
- package/testeranto.config.ts +7 -0
- package/tsc.log +313 -237
- package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test/manifest.json +0 -1
- package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/manifest.json +0 -1
- package/testeranto/reports/allTests/src/Pure.test/pure/manifest.json +0 -1
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/manifest.json +0 -1
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/manifest.json +0 -1
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/manifest.json +0 -1
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/manifest.json +0 -1
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/manifest.json +0 -1
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/manifest.json +0 -1
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/manifest.json +0 -1
- /package/{testeranto/reports/allTests/src/Pure.test/pure/logs.txt → dist/types/src/components/SunriseAnimation.test/implementation.d.ts} +0 -0
- /package/{testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/logs.txt → dist/types/src/components/SunriseAnimation.test/index.d.ts} +0 -0
package/tsc.log
CHANGED
|
@@ -1,4 +1,77 @@
|
|
|
1
1
|
$ /Users/adam/Code/testeranto/node_modules/.bin/tsc --noEmit
|
|
2
|
+
node_modules/testeranto-react/src/mocks/mockReactComponent.tsx(58,9): error TS2554: Expected 3 arguments, but got 2.
|
|
3
|
+
node_modules/testeranto-react/src/react-dom/component/dynamic.ts(6,19): error TS2305: Module '"testeranto/src/CoreTypes"' has no exported member 'ITestAdapter'.
|
|
4
|
+
node_modules/testeranto-react/src/react-dom/component/dynamic.ts(50,45): error TS2339: Property 'subject' does not exist on type 'Readonly<{}>'.
|
|
5
|
+
node_modules/testeranto-react/src/react-dom/component/web.ts(5,3): error TS2305: Module '"testeranto/src/CoreTypes"' has no exported member 'ITestAdapter'.
|
|
6
|
+
node_modules/testeranto-react/src/react/component/index.ts(3,44): error TS2307: Cannot find module '../../../Types' or its corresponding type declarations.
|
|
7
|
+
node_modules/testeranto/src/lib/basebuilder.ts(85,15): error TS2349: This expression is not callable.
|
|
8
|
+
Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
|
|
9
|
+
Type 'void' has no call signatures.
|
|
10
|
+
node_modules/testeranto/src/lib/classBuilder.ts(90,18): error TS2556: A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
11
|
+
node_modules/testeranto/src/lib/classBuilder.ts(105,28): error TS2556: A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
12
|
+
node_modules/testeranto/src/lib/index.ts(22,3): error TS2322: Type '(subject: T["isubject"], initialValues: T["iinitialValues"], x: unknown, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<T["isubject"]>' is not assignable to type '(subject: T["isubject"], initializer: (c?: any) => T["given"], testResource: ITTestResourceConfiguration, initialValues: any, pm: IPM) => Promise<...>'.
|
|
13
|
+
Types of parameters 'initialValues' and 'initializer' are incompatible.
|
|
14
|
+
Type '(c?: any) => T["given"]' is not assignable to type 'T["iinitialValues"]'.
|
|
15
|
+
'T["iinitialValues"]' could be instantiated with an arbitrary type which could be unrelated to '(c?: any) => T["given"]'.
|
|
16
|
+
node_modules/testeranto/src/lib/index.ts(24,20): error TS2536: Type '"iinitialValues"' cannot be used to index type 'T'.
|
|
17
|
+
node_modules/testeranto/src/lib/index.ts(46,13): error TS2349: This expression is not callable.
|
|
18
|
+
Type 'unknown' has no call signatures.
|
|
19
|
+
node_modules/testeranto/src/lib/index.ts(58,3): error TS2322: Type '{ assertThis?: ((x: T["then"]) => any) | undefined; andWhen?: ((store: T["istore"], whenCB: T["when"], testResource: ITTestResourceConfiguration, pm: IPM) => Promise<T["istore"]>) | undefined; ... 4 more ...; beforeEach?: ((subject: T["isubject"], initializer: (c?: any) => T["given"], testResource: ITTestResourceCon...' is not assignable to type 'ITestInterface<T>'.
|
|
20
|
+
Types of property 'assertThis' are incompatible.
|
|
21
|
+
Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
22
|
+
Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
23
|
+
node_modules/testeranto/src/PM/web.ts(56,12): error TS2304: Cannot find name 'opts'.
|
|
24
|
+
node_modules/testeranto/src/PM/web.ts(57,57): error TS2304: Cannot find name 'opts'.
|
|
25
|
+
node_modules/testeranto/src/PM/web.ts(59,7): error TS2663: Cannot find name 'page'. Did you mean the instance member 'this.page'?
|
|
26
|
+
node_modules/testeranto/src/Web.ts(40,7): error TS2345: 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<...>; checks: TestCheckImplementation<...>; }, keyof M> & M & { ...; }'.
|
|
27
|
+
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; checks: TestCheckImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; checks: Record<string, any>; }': suites, givens, whens, thens, checks
|
|
28
|
+
node_modules/testeranto/src/Web.ts(48,14): error TS2554: Expected 0 arguments, but got 1.
|
|
29
|
+
node_modules/testeranto/src/Web.ts(67,14): error TS2554: Expected 0 arguments, but got 1.
|
|
30
|
+
src/App.tsx(45,34): error TS2339: Property 'createRoot' does not exist on type 'typeof import("/Users/adam/Code/testeranto/node_modules/@types/react-dom/index")'.
|
|
31
|
+
src/App.tsx(55,10): error TS2339: Property 'App' does not exist on type 'Window & typeof globalThis'.
|
|
32
|
+
src/App.tsx(57,3): error TS2740: Type 'typeof import("/Users/adam/Code/testeranto/node_modules/@types/react-dom/client")' is missing the following properties from type 'typeof import("/Users/adam/Code/testeranto/node_modules/@types/react-dom/index")': findDOMNode, unmountComponentAtNode, createPortal, flushSync, and 5 more.
|
|
33
|
+
src/components/pure/ProjectPageView.test/adapter.ts(6,3): error TS2719: Type '(subject: import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView").IProjectPageViewProps, initializer: (c?: any) => (...args: any[]) => import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView").IProjectPageViewProps, testResource: import("/Users/adam/Code/testeranto/src/lib/index").I...' is not assignable to type '(subject: import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView").IProjectPageViewProps, initializer: (c?: any) => (...args: any[]) => import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView").IProjectPageViewProps, testResource: import("/Users/adam/Code/testeranto/src/lib/index").I...'. Two different types with this name exist, but they are unrelated.
|
|
34
|
+
Type 'Promise<(...args: any[]) => IProjectPageViewProps>' is not assignable to type 'Promise<IProjectPageViewProps & { container?: HTMLElement | undefined; }>'.
|
|
35
|
+
Type '(...args: any[]) => IProjectPageViewProps' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
36
|
+
Type '(...args: any[]) => IProjectPageViewProps' is not assignable to type 'IProjectPageViewProps'.
|
|
37
|
+
src/components/pure/ProjectPageView.test/adapter.ts(9,3): error TS2719: Type '(store: import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView").IProjectPageViewProps & { container?: HTMLElement | undefined; }, whenCB: () => (props: import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView").IProjectPageViewProps, utils: any) => import("/Users/adam/Code/testeranto...' is not assignable to type '(store: import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView").IProjectPageViewProps & { container?: HTMLElement | undefined; }, whenCB: () => (props: import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView").IProjectPageViewProps, utils: any) => import("/Users/adam/Code/testeranto...'. Two different types with this name exist, but they are unrelated.
|
|
38
|
+
Type 'Promise<(props: IProjectPageViewProps, utils: any) => IProjectPageViewProps & { container?: HTMLElement | undefined; }>' is not assignable to type 'Promise<IProjectPageViewProps & { container?: HTMLElement | undefined; }>'.
|
|
39
|
+
Type '(props: IProjectPageViewProps, utils: any) => IProjectPageViewProps & { container?: HTMLElement | undefined; }' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
40
|
+
Type '(props: IProjectPageViewProps, utils: any) => IProjectPageViewProps & { container?: HTMLElement | undefined; }' is not assignable to type 'IProjectPageViewProps'.
|
|
41
|
+
src/components/pure/ProjectPageView.test/adapter.ts(10,19): error TS2554: Expected 0 arguments, but got 2.
|
|
42
|
+
src/components/pure/ProjectPageView.test/adapter.ts(12,3): error TS2719: Type '(store: import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView").IProjectPageViewProps & { container?: HTMLElement | undefined; }, thenCB: () => (state: import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView").IProjectPageViewProps & { ...; }) => import("/Users/adam/Code/testeranto/...' is not assignable to type '(store: import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView").IProjectPageViewProps & { container?: HTMLElement | undefined; }, thenCB: () => (state: import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView").IProjectPageViewProps & { ...; }) => import("/Users/adam/Code/testeranto/...'. Two different types with this name exist, but they are unrelated.
|
|
43
|
+
Type 'Promise<(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }>' is not assignable to type 'Promise<IProjectPageViewProps & { container?: HTMLElement | undefined; }>'.
|
|
44
|
+
Type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
45
|
+
Type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }' is not assignable to type 'IProjectPageViewProps'.
|
|
46
|
+
src/components/pure/ProjectPageView.test/adapter.ts(13,19): error TS2554: Expected 0 arguments, but got 2.
|
|
47
|
+
src/components/pure/ProjectPageView.test/implementation.tsx(49,11): error TS2769: No overload matches this call.
|
|
48
|
+
The last overload gave the following error.
|
|
49
|
+
Argument of type 'Element' is not assignable to parameter of type 'ReactElement<unknown, string | JSXElementConstructor<any>>[]'.
|
|
50
|
+
Type 'ReactElement<any, any>' is missing the following properties from type 'ReactElement<unknown, string | JSXElementConstructor<any>>[]': length, pop, push, concat, and 35 more.
|
|
51
|
+
src/components/pure/ProjectPageView.test/implementation.tsx(49,12): error TS2686: 'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.
|
|
52
|
+
src/components/pure/ProjectPageView.test/implementation.tsx(69,9): error TS2322: Type '({ container }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => { container: HTMLElement | undefined; }' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
53
|
+
Type '{ container: HTMLElement | undefined; }' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
54
|
+
Type '{ container: HTMLElement | undefined; }' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 7 more.
|
|
55
|
+
src/components/pure/ProjectPageView.test/implementation.tsx(71,34): error TS18048: 'container' is possibly 'undefined'.
|
|
56
|
+
src/components/pure/ProjectPageView.test/implementation.tsx(73,73): error TS18048: 'container' is possibly 'undefined'.
|
|
57
|
+
src/components/pure/ProjectPageView.test/implementation.tsx(80,9): error TS2322: Type '({ container }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => { container: HTMLElement | undefined; }' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
58
|
+
Type '{ container: HTMLElement | undefined; }' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
59
|
+
Type '{ container: HTMLElement | undefined; }' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 7 more.
|
|
60
|
+
src/components/pure/ProjectPageView.test/implementation.tsx(81,18): error TS18048: 'container' is possibly 'undefined'.
|
|
61
|
+
src/components/pure/ProjectPageView.test/index.ts(8,27): error TS2344: Type 'I' does not satisfy the constraint 'Ibdd_out'.
|
|
62
|
+
Type 'I' is missing the following properties from type 'Ibdd_out': suites, givens, whens, thens, checks
|
|
63
|
+
src/components/pure/ProjectPageView.tsx(217,19): error TS18046: 'testData' is of type 'unknown'.
|
|
64
|
+
src/components/pure/ProjectPageView.tsx(218,29): error TS18046: 'testData' is of type 'unknown'.
|
|
65
|
+
src/components/pure/ProjectPageView.tsx(219,26): error TS18046: 'testData' is of type 'unknown'.
|
|
66
|
+
src/components/pure/ProjectPageView.tsx(220,28): error TS18046: 'testData' is of type 'unknown'.
|
|
67
|
+
src/components/pure/ProjectPageView.tsx(298,24): error TS2739: Type '{ testName: string; testsExist: boolean; runTimeErrors: number; }' is missing the following properties from type 'TestStatusBadgeProps': typeErrors, staticErrors
|
|
68
|
+
src/components/pure/ProjectsPageView.tsx(27,34): error TS2322: Type 'null' is not assignable to type 'string | undefined'.
|
|
69
|
+
src/components/pure/TestPageView.tsx(40,16): error TS2739: Type '{ testName: any; testsExist: any; runTimeErrors: any; variant: "compact"; }' is missing the following properties from type 'TestStatusBadgeProps': typeErrors, staticErrors
|
|
70
|
+
src/components/stateful/TestPage.tsx(52,17): error TS2345: Argument of type 'string | undefined' is not assignable to parameter of type 'SetStateAction<string>'.
|
|
71
|
+
Type 'undefined' is not assignable to type 'SetStateAction<string>'.
|
|
72
|
+
src/components/stateful/TestPage.tsx(77,18): error TS2345: Argument of type 'string' is not assignable to parameter of type 'SetStateAction<null>'.
|
|
73
|
+
src/components/stateful/TestPage.tsx(100,7): error TS2322: Type '{ route: string; setRoute: Dispatch<SetStateAction<string>>; navigate: NavigateFunction; projectName: string | undefined; testName: string; ... 10 more ...; summary: null; }' is not assignable to type 'IntrinsicAttributes & { route: any; setRoute: any; navigate: any; projectName: any; testName: any; decodedTestPath: any; runtime: any; testData: any; logs: any; typeErrors: any; lintErrors: any; testsExist: any; errorCounts: any; }'.
|
|
74
|
+
Property 'loading' does not exist on type 'IntrinsicAttributes & { route: any; setRoute: any; navigate: any; projectName: any; testName: any; decodedTestPath: any; runtime: any; testData: any; logs: any; typeErrors: any; lintErrors: any; testsExist: any; errorCounts: any; }'.
|
|
2
75
|
src/lib/abstractBase.test/adapter.ts(5,47): error TS2322: Type 'Promise<() => { testStore: { value: string; }; }>' is not assignable to type 'Promise<{ testStore: { value: string; }; error?: Error | undefined; }>'.
|
|
3
76
|
Type '() => { testStore: { value: string; }; }' is not assignable to type '{ testStore: { value: string; }; error?: Error | undefined; }'.
|
|
4
77
|
src/lib/abstractBase.test/adapter.ts(8,25): error TS2739: Type '{ testStore: { value: string; }; error?: Error | undefined; }' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
|
|
@@ -26,182 +99,170 @@ src/lib/abstractBase.test/MockGiven.ts(9,12): error TS2304: Cannot find name 'Ba
|
|
|
26
99
|
src/lib/abstractBase.test/MockGiven.ts(24,12): error TS2349: This expression is not callable.
|
|
27
100
|
Type 'unknown' has no call signatures.
|
|
28
101
|
src/lib/abstractBase.test/types.ts(13,17): error TS2707: Generic type 'Ibdd_out' requires between 0 and 4 type arguments.
|
|
29
|
-
src/lib/
|
|
30
|
-
src/lib/
|
|
31
|
-
src/lib/baseBuilder.test/baseBuilder.test.adapter.ts(
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
src/lib/baseBuilder.test/baseBuilder.test.
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(
|
|
48
|
-
Call signature return types '(builder: TestSubject) => TestSubject' and '(zel: BaseBuilder<any, any, any, any, any, any>, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: any) => any>' are incompatible.
|
|
49
|
-
Type 'MockBaseBuilder<any, any, any, any, any, any, {}>' is missing the following properties from type 'Promise<(store: any) => any>': then, catch, finally, [Symbol.toStringTag]
|
|
50
|
-
src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(60,25): error TS2304: Cannot find name 'ITestJob'.
|
|
51
|
-
src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(67,32): error TS2322: Type '(builder: TestSubject) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.
|
|
52
|
-
Type 'TestSubject' is not assignable to type '(store: any) => any'.
|
|
53
|
-
Type 'MockBaseBuilder<any, any, any, any, any, any, {}>' provides no match for the signature '(store: any): any'.
|
|
54
|
-
src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(73,27): error TS2322: Type '(builder: TestSubject) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.
|
|
55
|
-
Type 'TestSubject' is not assignable to type '(store: any) => any'.
|
|
56
|
-
Type 'MockBaseBuilder<any, any, any, any, any, any, {}>' provides no match for the signature '(store: any): any'.
|
|
57
|
-
src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(79,24): error TS2322: Type '(builder: TestSubject) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.
|
|
58
|
-
Type 'TestSubject' is not assignable to type '(store: any) => any'.
|
|
59
|
-
Type 'MockBaseBuilder<any, any, any, any, any, any, {}>' provides no match for the signature '(store: any): any'.
|
|
60
|
-
src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(85,29): error TS2322: Type '(builder: TestSubject) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.
|
|
61
|
-
Type 'TestSubject' is not assignable to type '(store: any) => any'.
|
|
62
|
-
Type 'MockBaseBuilder<any, any, any, any, any, any, {}>' provides no match for the signature '(store: any): any'.
|
|
63
|
-
src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(91,36): error TS2322: Type '(builder: TestSubject) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.
|
|
102
|
+
src/lib/abstractBase.ts(244,17): error TS1196: Catch clause variable type annotation must be 'any' or 'unknown' if specified.
|
|
103
|
+
src/lib/abstractBase.ts(301,39): error TS2554: Expected 1 arguments, but got 2.
|
|
104
|
+
src/lib/baseBuilder.test/baseBuilder.test.adapter.ts(8,49): error TS2322: Type 'Promise<{}>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.
|
|
105
|
+
Type '{}' is missing the following properties from type 'BaseBuilder<any, any, any, any, any, any>': specs, assertThis, testResourceRequirement, artifacts, and 12 more.
|
|
106
|
+
src/lib/baseBuilder.test/baseBuilder.test.adapter.ts(9,3): error TS2719: Type '(subject: import("/Users/adam/Code/testeranto/src/lib/basebuilder").BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => import("/Users/adam/Code/testeranto/src/lib/basebuilder").BaseBuilder<any, any, any, any, any, any>, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestR...' is not assignable to type '(subject: import("/Users/adam/Code/testeranto/src/lib/basebuilder").BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => import("/Users/adam/Code/testeranto/src/lib/basebuilder").BaseBuilder<any, any, any, any, any, any>, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestR...'. Two different types with this name exist, but they are unrelated.
|
|
107
|
+
Type 'Promise<() => BaseBuilder<any, any, any, any, any, any>>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.
|
|
108
|
+
Type '() => BaseBuilder<any, any, any, any, any, any>' is not assignable to type 'BaseBuilder<any, any, any, any, any, any>'.
|
|
109
|
+
src/lib/baseBuilder.test/baseBuilder.test.adapter.ts(20,26): error TS2554: Expected 1 arguments, but got 2.
|
|
110
|
+
src/lib/baseBuilder.test/baseBuilder.test.adapter.ts(23,26): error TS2554: Expected 1 arguments, but got 2.
|
|
111
|
+
src/lib/baseBuilder.test/baseBuilder.test.adapter.ts(25,25): error TS2739: Type 'BaseBuilder<any, any, any, any, any, any>' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
|
|
112
|
+
src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(19,5): error TS2322: Type '() => MockBaseBuilder<Ibdd_in_any, Ibdd_out_any, {}, {}, {}, {}>' is not assignable to type '() => () => BaseBuilder<any, any, any, any, any, any>'.
|
|
113
|
+
Type 'MockBaseBuilder<Ibdd_in_any, Ibdd_out_any, {}, {}, {}, {}>' is not assignable to type '() => BaseBuilder<any, any, any, any, any, any>'.
|
|
114
|
+
Type 'MockBaseBuilder<Ibdd_in_any, Ibdd_out_any, {}, {}, {}, {}>' provides no match for the signature '(): BaseBuilder<any, any, any, any, any, any>'.
|
|
115
|
+
src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(31,57): error TS2345: Argument of type '{}' is not assignable to parameter of type 'ITTestResourceRequest'.
|
|
116
|
+
Property 'ports' is missing in type '{}' but required in type 'ITTestResourceRequest'.
|
|
117
|
+
src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(34,54): error TS2345: Argument of type '{}' is not assignable to parameter of type 'ITTestResourceRequest'.
|
|
118
|
+
Property 'ports' is missing in type '{}' but required in type 'ITTestResourceRequest'.
|
|
119
|
+
src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(43,25): error TS2304: Cannot find name 'ITestJob'.
|
|
120
|
+
src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(50,32): error TS2322: Type '(builder: TestSubject) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.
|
|
64
121
|
Type 'TestSubject' is not assignable to type '(store: any) => any'.
|
|
65
|
-
Type 'MockBaseBuilder<any, any, any, any, any, any
|
|
66
|
-
src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(
|
|
122
|
+
Type 'MockBaseBuilder<any, any, any, any, any, any>' provides no match for the signature '(store: any): any'.
|
|
123
|
+
src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(54,100): error TS2339: Property 'constructor' does not exist on type 'never'.
|
|
124
|
+
src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(75,27): error TS2322: Type '(builder: TestSubject) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.
|
|
67
125
|
Type 'TestSubject' is not assignable to type '(store: any) => any'.
|
|
68
|
-
Type 'MockBaseBuilder<any, any, any, any, any, any
|
|
69
|
-
src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(
|
|
126
|
+
Type 'MockBaseBuilder<any, any, any, any, any, any>' provides no match for the signature '(store: any): any'.
|
|
127
|
+
src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(81,24): error TS2322: Type '(builder: TestSubject) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.
|
|
70
128
|
Type 'TestSubject' is not assignable to type '(store: any) => any'.
|
|
71
|
-
Type 'MockBaseBuilder<any, any, any, any, any, any
|
|
72
|
-
src/lib/baseBuilder.test/baseBuilder.test.
|
|
73
|
-
Type 'TestSubject' is not assignable to type '(store: any) => any'.
|
|
74
|
-
Type 'MockBaseBuilder<any, any, any, any, any, any, {}>' provides no match for the signature '(store: any): any'.
|
|
75
|
-
src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(115,37): error TS2322: Type '(builder: TestSubject) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.
|
|
76
|
-
Type 'TestSubject' is not assignable to type '(store: any) => any'.
|
|
77
|
-
Type 'MockBaseBuilder<any, any, any, any, any, any, {}>' provides no match for the signature '(store: any): any'.
|
|
78
|
-
src/lib/baseBuilder.test/baseBuilder.test.mock.ts(43,56): error TS2322: Type 'never[]' is not assignable to type 'number'.
|
|
79
|
-
src/lib/baseBuilder.test/baseBuilder.test.specification.ts(31,7): error TS2554: Expected 2 arguments, but got 3.
|
|
80
|
-
src/lib/baseBuilder.test/baseBuilder.test.types.ts(3,10): error TS2305: Module '"./baseBuilder.test.mock"' has no exported member 'TestBaseBuilder'.
|
|
81
|
-
src/lib/baseBuilder.test/baseBuilder.test.types.ts(7,3): error TS2304: Cannot find name 'BaseBuilder'.
|
|
82
|
-
src/lib/baseBuilder.test/baseBuilder.test.types.ts(8,3): error TS2304: Cannot find name 'BaseBuilder'.
|
|
83
|
-
src/lib/baseBuilder.test/baseBuilder.test.types.ts(9,3): error TS2304: Cannot find name 'BaseBuilder'.
|
|
84
|
-
src/lib/baseBuilder.test/baseBuilder.test.types.ts(10,9): error TS2304: Cannot find name 'BaseBuilder'.
|
|
85
|
-
src/lib/baseBuilder.test/baseBuilder.test.types.ts(15,17): error TS2707: Generic type 'Ibdd_out' requires between 0 and 4 type arguments.
|
|
129
|
+
Type 'MockBaseBuilder<any, any, any, any, any, any>' provides no match for the signature '(store: any): any'.
|
|
130
|
+
src/lib/baseBuilder.test/baseBuilder.test.specification.ts(18,16): error TS2339: Property 'artifactsTracked' does not exist on type 'ThenSpecification<I, O>'.
|
|
86
131
|
src/lib/basebuilder.ts(79,15): error TS2349: This expression is not callable.
|
|
87
132
|
Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
|
|
88
133
|
Type 'void' has no call signatures.
|
|
89
|
-
src/lib/BaseSuite.test/mock.ts(
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
134
|
+
src/lib/BaseSuite.test/mock.ts(36,9): error TS2416: Property 'andWhen' in type 'MockWhen' is not assignable to the same property in base type 'BaseWhen<I>'.
|
|
135
|
+
Type '(store: TestStore, whenCB: (store: TestStore) => Promise<TestStore>, testResource: any, pm: IPM) => Promise<TestStore>' is not assignable to type '(store: TestStore, whenCB: (x: TestSelection) => (store: TestStore) => Promise<TestSelection>, testResource: any, pm: IPM) => Promise<...>'.
|
|
136
|
+
Types of parameters 'whenCB' and 'whenCB' are incompatible.
|
|
137
|
+
Types of parameters 'x' and 'store' are incompatible.
|
|
138
|
+
Type 'TestStore' is not assignable to type 'TestSelection'.
|
|
139
|
+
Types of property 'testSelection' are incompatible.
|
|
140
|
+
Type 'boolean | undefined' is not assignable to type 'boolean'.
|
|
141
|
+
Type 'undefined' is not assignable to type 'boolean'.
|
|
142
|
+
src/lib/BaseSuite.test/mock.ts(66,9): error TS2416: Property 'butThen' in type 'MockThen' is not assignable to the same property in base type 'BaseThen<I>'.
|
|
93
143
|
Types of parameters 'thenCB' and 'thenCB' are incompatible.
|
|
94
144
|
Type 'Promise<BaseSuite<any, any>>' is not assignable to type 'Promise<TestSelection>'.
|
|
95
145
|
Property 'testSelection' is missing in type 'BaseSuite<any, any>' but required in type 'TestSelection'.
|
|
96
|
-
src/lib/BaseSuite.test/mock.ts(
|
|
146
|
+
src/lib/BaseSuite.test/mock.ts(83,7): error TS2353: Object literal may only specify known properties, and 'name' does not exist in type 'TestSelection'.
|
|
147
|
+
src/lib/BaseSuite.test/mock.ts(126,10): error TS2322: Type 'MockWhen' is not assignable to type 'BaseWhen<I>'.
|
|
97
148
|
Types of property 'andWhen' are incompatible.
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
149
|
+
Type '(store: TestStore, whenCB: (store: TestStore) => Promise<TestStore>, testResource: any, pm: IPM) => Promise<TestStore>' is not assignable to type '(store: TestStore, whenCB: (x: TestSelection) => (store: TestStore) => Promise<TestSelection>, testResource: any, pm: IPM) => Promise<...>'.
|
|
150
|
+
Types of parameters 'whenCB' and 'whenCB' are incompatible.
|
|
151
|
+
Types of parameters 'x' and 'store' are incompatible.
|
|
152
|
+
Type 'TestStore' is not assignable to type 'TestSelection'.
|
|
153
|
+
Types of property 'testSelection' are incompatible.
|
|
154
|
+
Type 'boolean | undefined' is not assignable to type 'boolean'.
|
|
155
|
+
Type 'undefined' is not assignable to type 'boolean'.
|
|
156
|
+
src/lib/BaseSuite.test/mock.ts(126,41): error TS2322: Type 'Promise<{ testStore: boolean; }>' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
|
|
101
157
|
Type 'Promise<{ testStore: boolean; }>' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
|
|
102
|
-
src/lib/BaseSuite.test/mock.ts(
|
|
158
|
+
src/lib/BaseSuite.test/mock.ts(129,13): error TS2322: Type 'Promise<{ testSelection: boolean; }>' is not assignable to type 'Promise<(store: TestStore) => Promise<TestSelection>>'.
|
|
103
159
|
Type '{ testSelection: boolean; }' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
|
|
104
160
|
Type '{ testSelection: boolean; }' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
|
|
105
|
-
src/lib/BaseSuite.test/test.ts(
|
|
106
|
-
|
|
107
|
-
Type '
|
|
108
|
-
|
|
109
|
-
src/lib/BaseSuite.test/test.ts(
|
|
110
|
-
src/lib/BaseSuite.test/test.ts(
|
|
111
|
-
src/lib/BaseSuite.test/test.ts(
|
|
112
|
-
src/lib/BaseSuite.test/test.ts(
|
|
113
|
-
src/lib/BaseSuite.test/test.ts(
|
|
114
|
-
src/lib/BaseSuite.test/test.ts(74,22): error TS2339: Property 'Default' does not exist on type 'WhenSpecification<I, O>'.
|
|
115
|
-
src/lib/BaseSuite.test/test.ts(77,13): error TS2339: Property 'StoreValid' does not exist on type 'WhenSpecification<I, O>'.
|
|
116
|
-
src/lib/BaseSuite.test/test.ts(77,32): error TS2339: Property 'NoErrorsOccurred' does not exist on type 'WhenSpecification<I, O>'.
|
|
117
|
-
src/lib/BaseSuite.test/test.ts(81,29): error TS2339: Property 'Default' does not exist on type 'WhenSpecification<I, O>'.
|
|
118
|
-
src/lib/BaseSuite.test/test.ts(83,13): error TS2339: Property 'AddFeature' does not exist on type 'WhenSpecification<I, O>'.
|
|
119
|
-
src/lib/BaseSuite.test/test.ts(85,14): error TS2339: Property 'FeaturesIncludes' does not exist on type 'WhenSpecification<I, O>'.
|
|
120
|
-
src/lib/BaseSuite.test/test.ts(86,14): error TS2339: Property 'FeaturesIncludes' does not exist on type 'WhenSpecification<I, O>'.
|
|
121
|
-
src/lib/BaseSuite.test/test.ts(87,14): error TS2339: Property 'FeatureCountMatches' does not exist on type 'WhenSpecification<I, O>'.
|
|
122
|
-
src/lib/BaseSuite.test/test.ts(92,26): error TS2339: Property 'Default' does not exist on type 'WhenSpecification<I, O>'.
|
|
123
|
-
src/lib/BaseSuite.test/test.ts(94,13): error TS2339: Property 'RunSuiteWithError' does not exist on type 'WhenSpecification<I, O>'.
|
|
124
|
-
src/lib/BaseSuite.test/test.ts(96,14): error TS2339: Property 'ErrorCountMatches' does not exist on type 'WhenSpecification<I, O>'.
|
|
125
|
-
src/lib/BaseSuite.test/test.ts(102,9): error TS2339: Property 'Default' does not exist on type 'ITestSpecification<I, O>'.
|
|
126
|
-
src/lib/BaseSuite.test/test.ts(103,26): error TS2339: Property 'Default' does not exist on type 'WhenSpecification<I, O>'.
|
|
127
|
-
src/lib/BaseSuite.test/test.ts(106,14): error TS2339: Property 'addArtifact' does not exist on type 'WhenSpecification<I, O>'.
|
|
128
|
-
src/lib/BaseSuite.test/test.ts(107,14): error TS2339: Property 'modifySpecs' does not exist on type 'WhenSpecification<I, O>'.
|
|
129
|
-
src/lib/BaseSuite.test/test.ts(108,14): error TS2339: Property 'modifyJobs' does not exist on type 'WhenSpecification<I, O>'.
|
|
130
|
-
src/lib/BaseSuite.test/test.ts(111,14): error TS2339: Property 'specsModified' does not exist on type 'WhenSpecification<I, O>'.
|
|
131
|
-
src/lib/BaseSuite.test/test.ts(112,14): error TS2339: Property 'jobsModified' does not exist on type 'WhenSpecification<I, O>'.
|
|
132
|
-
src/lib/BaseSuite.test/test.ts(113,14): error TS2339: Property 'artifactsTracked' does not exist on type 'WhenSpecification<I, O>'.
|
|
133
|
-
src/lib/BaseSuite.test/test.ts(114,14): error TS2339: Property 'testRunSuccessful' does not exist on type 'WhenSpecification<I, O>'.
|
|
134
|
-
src/lib/BaseSuite.test/test.ts(127,31): error TS2322: Type 'MockSuite' is not assignable to type '() => Promise<TestStore>'.
|
|
135
|
-
Type 'MockSuite' provides no match for the signature '(): Promise<TestStore>'.
|
|
136
|
-
src/lib/BaseSuite.test/test.ts(133,7): error TS2322: Type '(suite: MockSuite) => Promise<MockSuite>' is not assignable to type '(zel: TestSelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: TestStore) => Promise<TestStore>>'.
|
|
161
|
+
src/lib/BaseSuite.test/test.ts(126,5): error TS2322: Type '() => MockSuite' is not assignable to type '() => () => Promise<TestStore>'.
|
|
162
|
+
Type 'MockSuite' is not assignable to type '() => Promise<TestStore>'.
|
|
163
|
+
Type 'MockSuite' provides no match for the signature '(): Promise<TestStore>'.
|
|
164
|
+
src/lib/BaseSuite.test/test.ts(137,15): error TS2339: Property 'artifacts' does not exist on type 'MockSuite'.
|
|
165
|
+
src/lib/BaseSuite.test/test.ts(144,15): error TS2339: Property 'specs' does not exist on type 'MockSuite'.
|
|
166
|
+
src/lib/BaseSuite.test/test.ts(144,38): error TS2339: Property 'specs' does not exist on type 'MockSuite'.
|
|
167
|
+
src/lib/BaseSuite.test/test.ts(151,15): error TS2339: Property 'testJobs' does not exist on type 'MockSuite'.
|
|
168
|
+
src/lib/BaseSuite.test/test.ts(151,41): error TS2339: Property 'testJobs' does not exist on type 'MockSuite'.
|
|
169
|
+
src/lib/BaseSuite.test/test.ts(157,7): error TS2322: Type '(suite: MockSuite) => Promise<MockSuite>' is not assignable to type '(zel: TestSelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: TestStore) => Promise<TestStore>>'.
|
|
137
170
|
Types of parameters 'suite' and 'zel' are incompatible.
|
|
138
171
|
Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 9 more.
|
|
139
|
-
src/lib/BaseSuite.test/test.ts(
|
|
172
|
+
src/lib/BaseSuite.test/test.ts(178,11): error TS2322: Type '() => void' is not assignable to type '((selector: string) => boolean) | ((selector: string) => boolean) | ((selector: string, page: string) => Promise<unknown>)'.
|
|
140
173
|
Type '() => void' is not assignable to type '(selector: string) => boolean'.
|
|
141
174
|
Type 'void' is not assignable to type 'boolean'.
|
|
142
|
-
src/lib/BaseSuite.test/test.ts(
|
|
175
|
+
src/lib/BaseSuite.test/test.ts(180,11): error TS2322: Type '() => void' is not assignable to type '((p: any) => string) | ((p: any) => string) | ((p: any) => Promise<unknown>)'.
|
|
143
176
|
Type '() => void' is not assignable to type '(p: any) => string'.
|
|
144
177
|
Type 'void' is not assignable to type 'string'.
|
|
145
|
-
src/lib/BaseSuite.test/test.ts(
|
|
146
|
-
src/lib/BaseSuite.test/test.ts(
|
|
147
|
-
src/lib/BaseSuite.test/test.ts(
|
|
178
|
+
src/lib/BaseSuite.test/test.ts(185,11): error TS2345: Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'.
|
|
179
|
+
src/lib/BaseSuite.test/test.ts(199,13): error TS2345: Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'.
|
|
180
|
+
src/lib/BaseSuite.test/test.ts(224,5): error TS2322: Type '(expectedName: string) => ((suite: MockSuite) => MockSuite)' is not assignable to type '(It_0: string) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
181
|
+
Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
182
|
+
Types of parameters 'suite' and 'ssel' are incompatible.
|
|
183
|
+
Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 9 more.
|
|
184
|
+
src/lib/BaseSuite.test/test.ts(244,5): error TS2322: Type '(expectedIndex: number) => ((suite: MockSuite) => MockSuite)' is not assignable to type '(It_0: number) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
148
185
|
Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
149
186
|
Types of parameters 'suite' and 'ssel' are incompatible.
|
|
150
187
|
Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 9 more.
|
|
151
|
-
src/lib/BaseSuite.test/test.ts(
|
|
188
|
+
src/lib/BaseSuite.test/test.ts(255,5): error TS2322: Type '(feature: string) => ((suite: MockSuite) => MockSuite)' is not assignable to type '(feature: string) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
189
|
+
Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
190
|
+
Types of parameters 'suite' and 'ssel' are incompatible.
|
|
191
|
+
Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 9 more.
|
|
192
|
+
src/lib/BaseSuite.test/test.ts(276,58): error TS2322: Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
152
193
|
Types of parameters 'suite' and 'ssel' are incompatible.
|
|
153
194
|
Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 9 more.
|
|
154
|
-
src/lib/BaseSuite.test/test.ts(
|
|
155
|
-
src/lib/BaseSuite.test/test.ts(
|
|
156
|
-
src/lib/BaseSuite.test/test.ts(
|
|
157
|
-
src/lib/BaseSuite.test/test.ts(
|
|
195
|
+
src/lib/BaseSuite.test/test.ts(328,19): error TS2339: Property 'specs' does not exist on type 'MockSuite'.
|
|
196
|
+
src/lib/BaseSuite.test/test.ts(337,19): error TS2339: Property 'testJobs' does not exist on type 'MockSuite'.
|
|
197
|
+
src/lib/BaseSuite.test/test.ts(345,19): error TS2339: Property 'artifacts' does not exist on type 'MockSuite'.
|
|
198
|
+
src/lib/BaseSuite.test/test.ts(378,22): error TS2339: Property 'index' does not exist on type '() => Promise<TestStore>'.
|
|
199
|
+
src/lib/BaseSuite.test/test.ts(379,22): error TS2339: Property 'store' does not exist on type '() => Promise<TestStore>'.
|
|
200
|
+
src/lib/BaseSuite.test/test.ts(383,22): error TS2339: Property 'index' does not exist on type '() => Promise<TestStore>'.
|
|
201
|
+
src/lib/BaseSuite.test/test.ts(386,19): error TS2339: Property 'store' does not exist on type '() => Promise<TestStore>'.
|
|
202
|
+
src/lib/BaseSuite.test/test.ts(399,44): error TS2554: Expected 1 arguments, but got 2.
|
|
203
|
+
src/lib/BaseSuite.test/test.ts(401,3): error TS2322: Type '(store: TestStore, thenCB: (selection: TestSelection) => Promise<TestSelection>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<TestSelection>' is not assignable to type '(store: TestStore, thenCB: (store: TestStore) => Promise<TestSelection>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<...>'.
|
|
204
|
+
Types of parameters 'thenCB' and 'thenCB' are incompatible.
|
|
205
|
+
Type '(store: TestStore) => Promise<TestSelection>' is not assignable to type '(selection: TestSelection) => Promise<TestSelection>'.
|
|
206
|
+
Types of parameters 'store' and 'selection' are incompatible.
|
|
207
|
+
Property 'testStore' is missing in type 'TestSelection' but required in type 'TestStore'.
|
|
208
|
+
src/lib/BaseSuite.test/test.ts(441,3): error TS2322: Type '(store: I["istore"]) => I["istore"]' is not assignable to type '(store: TestStore, key: string, pm: IPM) => Promise<unknown>'.
|
|
158
209
|
Type 'TestStore' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
|
|
159
|
-
src/lib/classBuilder.test/classBuilder.test.adapter.ts(
|
|
210
|
+
src/lib/classBuilder.test/classBuilder.test.adapter.ts(9,3): error TS2322: Type '() => Promise<void>' is not assignable to type '(input: {}, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<BaseBuilder<any, any, any, any, any, any>>'.
|
|
211
|
+
Type 'Promise<void>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.
|
|
212
|
+
Type 'void' is not assignable to type 'BaseBuilder<any, any, any, any, any, any>'.
|
|
213
|
+
src/lib/classBuilder.test/classBuilder.test.adapter.ts(10,3): error TS2322: Type '(subject: BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => BaseBuilder<any, any, any, any, any, any>) => Promise<() => BaseBuilder<any, any, any, any, any, any>>' is not assignable to type '(subject: BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => BaseBuilder<any, any, any, any, any, any>, testResource: ITTestResourceConfiguration, initialValues: any, pm: IPM) => Promise<...>'.
|
|
214
|
+
Type 'Promise<() => BaseBuilder<any, any, any, any, any, any>>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.
|
|
215
|
+
Type '() => BaseBuilder<any, any, any, any, any, any>' is not assignable to type 'BaseBuilder<any, any, any, any, any, any>'.
|
|
160
216
|
src/lib/classBuilder.test/classBuilder.test.adapter.ts(17,26): error TS2554: Expected 1 arguments, but got 2.
|
|
161
|
-
src/lib/classBuilder.test/classBuilder.test.
|
|
162
|
-
src/lib/classBuilder.test/classBuilder.test.
|
|
163
|
-
src/lib/classBuilder.test/classBuilder.test.implementation.ts(
|
|
164
|
-
src/lib/classBuilder.test/classBuilder.test.implementation.ts(
|
|
165
|
-
|
|
166
|
-
src/lib/classBuilder.test/classBuilder.test.implementation.ts(
|
|
167
|
-
src/lib/classBuilder.test/classBuilder.test.implementation.ts(
|
|
217
|
+
src/lib/classBuilder.test/classBuilder.test.adapter.ts(20,26): error TS2554: Expected 1 arguments, but got 2.
|
|
218
|
+
src/lib/classBuilder.test/classBuilder.test.adapter.ts(22,25): error TS2739: Type 'BaseBuilder<any, any, any, any, any, any>' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
|
|
219
|
+
src/lib/classBuilder.test/classBuilder.test.implementation.ts(7,10): error TS2724: '"../classBuilder"' has no exported member named 'TestClassBuilder'. Did you mean 'ClassBuilder'?
|
|
220
|
+
src/lib/classBuilder.test/classBuilder.test.implementation.ts(28,9): error TS2345: Argument of type 'typeof MockSuite' is not assignable to parameter of type 'ISuiteKlasser<I, O>'.
|
|
221
|
+
Type 'typeof MockSuite' provides no match for the signature '(name: string, index: number, givens: IGivens<I>): BaseSuite<I, O>'.
|
|
222
|
+
src/lib/classBuilder.test/classBuilder.test.implementation.ts(47,9): error TS2554: Expected 8 arguments, but got 9.
|
|
223
|
+
src/lib/classBuilder.test/classBuilder.test.implementation.ts(60,9): error TS2554: Expected 8 arguments, but got 9.
|
|
224
|
+
src/lib/classBuilder.test/classBuilder.test.implementation.ts(73,9): error TS2554: Expected 8 arguments, but got 9.
|
|
225
|
+
src/lib/classBuilder.test/classBuilder.test.implementation.ts(86,9): error TS2554: Expected 8 arguments, but got 9.
|
|
226
|
+
src/lib/classBuilder.test/classBuilder.test.implementation.ts(207,30): error TS2322: Type '(builder: ClassBuilder<any, any, any>) => Promise<ClassBuilder<any, any, any>>' is not assignable to type '(builder: ClassBuilder<any, any, any>) => ClassBuilder<any, any, any>'.
|
|
168
227
|
Type 'Promise<ClassBuilder<any, any, any>>' is missing the following properties from type 'ClassBuilder<any, any, any>': specs, assertThis, testResourceRequirement, artifacts, and 12 more.
|
|
169
|
-
src/lib/classBuilder.test/classBuilder.test.implementation.ts(
|
|
170
|
-
src/lib/classBuilder.test/classBuilder.test.specification.ts(
|
|
171
|
-
src/lib/classBuilder.test/classBuilder.test.
|
|
228
|
+
src/lib/classBuilder.test/classBuilder.test.implementation.ts(209,23): error TS2339: Property 'testRun' does not exist on type 'ClassBuilder<any, any, any>'.
|
|
229
|
+
src/lib/classBuilder.test/classBuilder.test.specification.ts(19,26): error TS2554: Expected 4 arguments, but got 3.
|
|
230
|
+
src/lib/classBuilder.test/classBuilder.test.specification.ts(24,35): error TS2554: Expected 4 arguments, but got 3.
|
|
231
|
+
src/lib/classBuilder.test/classBuilder.test.specification.ts(64,37): error TS2554: Expected 4 arguments, but got 3.
|
|
232
|
+
src/lib/classBuilder.test/classBuilder.test.specification.ts(69,36): error TS2554: Expected 4 arguments, but got 3.
|
|
233
|
+
src/lib/classBuilder.test/classBuilder.test.specification.ts(83,54): error TS2304: Cannot find name 'ITestJob'.
|
|
234
|
+
src/lib/classBuilder.test/classBuilder.test.specification.ts(101,7): error TS2554: Expected 2 arguments, but got 3.
|
|
172
235
|
src/lib/classBuilder.test/mock.ts(45,7): error TS2345: 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 & { ...; }'.
|
|
173
236
|
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
|
|
174
237
|
src/lib/classBuilder.ts(86,18): error TS2556: A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
175
238
|
src/lib/classBuilder.ts(101,28): error TS2556: A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
176
|
-
src/lib/core.test/core.test.adapter.ts(
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
src/lib/core.test/core.test.
|
|
180
|
-
src/lib/core.test/core.test.
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
src/lib/core.test/core.test.implementation.ts(
|
|
184
|
-
src/lib/core.test/core.test.implementation.ts(
|
|
185
|
-
src/lib/core.test/core.test.implementation.ts(
|
|
186
|
-
src/lib/core.test/core.test.implementation.ts(
|
|
187
|
-
src/lib/core.test/core.test.implementation.ts(
|
|
188
|
-
src/lib/core.test/core.test.implementation.ts(
|
|
189
|
-
src/lib/core.test/core.test.implementation.ts(
|
|
190
|
-
src/lib/core.test/core.test.implementation.ts(
|
|
191
|
-
src/lib/core.test/core.test.implementation.ts(
|
|
192
|
-
src/lib/core.test/core.test.implementation.ts(
|
|
193
|
-
src/lib/core.test/core.test.implementation.ts(
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
src/lib/core.test/core.test.specification.ts(
|
|
197
|
-
src/lib/core.test/core.test.specification.ts(
|
|
198
|
-
src/lib/core.test/core.test.specification.ts(
|
|
199
|
-
src/lib/core.test/core.test.specification.ts(
|
|
200
|
-
src/lib/core.test/core.test.specification.ts(86,14): error TS2304: Cannot find name 'implementation'.
|
|
201
|
-
src/lib/core.test/core.test.ts(14,3): error TS2554: Expected 4-5 arguments, but got 6.
|
|
239
|
+
src/lib/core.test/core.test.adapter.ts(33,26): error TS2554: Expected 1 arguments, but got 2.
|
|
240
|
+
src/lib/core.test/core.test.adapter.ts(36,26): error TS2554: Expected 1 arguments, but got 2.
|
|
241
|
+
src/lib/core.test/core.test.adapter.ts(38,25): error TS2739: Type 'MockCore<any, any, any>' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
|
|
242
|
+
src/lib/core.test/core.test.implementation.ts(25,11): error TS2304: Cannot find name 'specification'.
|
|
243
|
+
src/lib/core.test/core.test.implementation.ts(27,11): error TS2345: Argument of type '{ ports: number[]; }' is not assignable to parameter of type 'ITTestResourceRequest'.
|
|
244
|
+
Types of property 'ports' are incompatible.
|
|
245
|
+
Type 'number[]' is not assignable to type 'number'.
|
|
246
|
+
src/lib/core.test/core.test.implementation.ts(28,11): error TS2304: Cannot find name 'testAdapter'.
|
|
247
|
+
src/lib/core.test/core.test.implementation.ts(41,9): error TS2304: Cannot find name 'specification'.
|
|
248
|
+
src/lib/core.test/core.test.implementation.ts(43,11): error TS2322: Type 'never[]' is not assignable to type 'number'.
|
|
249
|
+
src/lib/core.test/core.test.implementation.ts(44,9): error TS2304: Cannot find name 'testAdapter'.
|
|
250
|
+
src/lib/core.test/core.test.implementation.ts(51,9): error TS2304: Cannot find name 'specification'.
|
|
251
|
+
src/lib/core.test/core.test.implementation.ts(54,9): error TS2304: Cannot find name 'testAdapter'.
|
|
252
|
+
src/lib/core.test/core.test.implementation.ts(61,9): error TS2304: Cannot find name 'specification'.
|
|
253
|
+
src/lib/core.test/core.test.implementation.ts(63,11): error TS2322: Type 'never[]' is not assignable to type 'number'.
|
|
254
|
+
src/lib/core.test/core.test.implementation.ts(64,14): error TS2304: Cannot find name 'testAdapter'.
|
|
255
|
+
src/lib/core.test/core.test.implementation.ts(97,65): error TS2339: Property 'constructor' does not exist on type 'never'.
|
|
256
|
+
src/lib/core.test/core.test.implementation.ts(141,30): error TS2322: Type '(builder: MockCore<any, any, any>) => Promise<MockCore<any, any, any>>' is not assignable to type '(builder: MockCore<any, any, any>) => MockCore<any, any, any>'.
|
|
257
|
+
Type 'Promise<MockCore<any, any, any>>' is missing the following properties from type 'MockCore<any, any, any>': specs, testJobs, artifacts, testResourceRequirement, and 14 more.
|
|
258
|
+
src/lib/core.test/core.test.specification.ts(29,7): error TS2554: Expected 2 arguments, but got 4.
|
|
259
|
+
src/lib/core.test/core.test.specification.ts(42,13): error TS2353: Object literal may only specify known properties, and 'test' does not exist in type 'string[]'.
|
|
260
|
+
src/lib/core.test/core.test.specification.ts(49,13): error TS2353: Object literal may only specify known properties, and 'ports' does not exist in type 'string[]'.
|
|
261
|
+
src/lib/core.test/core.test.specification.ts(55,13): error TS2353: Object literal may only specify known properties, and 'assertThis' does not exist in type 'string[]'.
|
|
262
|
+
src/lib/core.test/core.test.specification.ts(82,105): error TS2554: Expected 2 arguments, but got 3.
|
|
202
263
|
src/lib/core.test/core.test.types.ts(15,17): error TS2707: Generic type 'Ibdd_out' requires between 0 and 4 type arguments.
|
|
203
|
-
src/lib/core.test/MockCore.ts(
|
|
204
|
-
src/lib/core.test/MockCore.ts(
|
|
264
|
+
src/lib/core.test/MockCore.ts(32,56): error TS2322: Type 'never[]' is not assignable to type 'number'.
|
|
265
|
+
src/lib/core.test/MockCore.ts(72,7): error TS2345: 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 & { ...; }'.
|
|
205
266
|
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
|
|
206
267
|
src/lib/core.ts(46,7): error TS2345: Argument of type 'Omit<{ suites: import("/Users/adam/Code/testeranto/src/Types").TestSuiteImplementation<O>; givens: import("/Users/adam/Code/testeranto/src/Types").TestGivenImplementation<I, O>; whens: import("/Users/adam/Code/testeranto/src/Types").TestWhenImplementation<...>; thens: import("/Users/adam/Code/testeranto/src/Types")....' is not assignable to parameter of type 'Omit<{ suites: import("/Users/adam/Code/testeranto/src/Types").TestSuiteImplementation<O>; givens: import("/Users/adam/Code/testeranto/src/Types").TestGivenImplementation<I, O>; whens: import("/Users/adam/Code/testeranto/src/Types").TestWhenImplementation<...>; thens: import("/Users/adam/Code/testeranto/src/Types")....'.
|
|
207
268
|
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }' is not assignable to type '{ suites: Record<string, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'.
|
|
@@ -269,9 +330,9 @@ src/lib/pmProxy.test/types.ts(21,17): error TS2707: Generic type 'Ibdd_out' requ
|
|
|
269
330
|
src/mothership/test.ts(66,7): error TS2554: Expected 2 arguments, but got 3.
|
|
270
331
|
src/mothership/test.ts(72,13): error TS2322: Type '(x: any) => any' is not assignable to type 'string'.
|
|
271
332
|
src/mothership/test.ts(101,20): error TS2304: Cannot find name 'IPartialNodeAdapter'.
|
|
333
|
+
src/NavBar.tsx(76,23): error TS2353: Object literal may only specify known properties, and '':hover'' does not exist in type 'Properties<string | number, string & {}>'.
|
|
272
334
|
src/Node.ts(34,7): error TS2345: 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 & { ...; }'.
|
|
273
335
|
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
|
|
274
|
-
src/Node.ts(59,24): error TS2304: Cannot find name 'INodeAdapter'.
|
|
275
336
|
src/PM/__tests__/nodeSidecar.testeranto.ts(51,43): error TS2304: Cannot find name 'I'.
|
|
276
337
|
src/PM/__tests__/nodeSidecar.testeranto.ts(52,13): error TS2322: Type '(x: any) => any' is not assignable to type 'string'.
|
|
277
338
|
src/PM/__tests__/nodeSidecar.testeranto.ts(93,29): error TS2454: Variable 'callbackFn' is used before being assigned.
|
|
@@ -298,104 +359,119 @@ src/PM/__tests__/webSidecar.testeranto.ts(94,38): error TS2322: Type 'boolean' i
|
|
|
298
359
|
src/PM/__tests__/webSidecar.testeranto.ts(109,18): error TS2339: Property 'removeListenerCalled' does not exist on type 'PM'.
|
|
299
360
|
src/PM/__tests__/webSidecar.testeranto.ts(118,20): error TS2304: Cannot find name 'IPartialNodeAdapter'.
|
|
300
361
|
src/PM/__tests__/webSidecar.testeranto.ts(118,40): error TS2304: Cannot find name 'I'.
|
|
301
|
-
src/PM/main.ts(
|
|
362
|
+
src/PM/main.ts(817,38): error TS2345: Argument of type 'number | null' is not assignable to parameter of type 'number'.
|
|
302
363
|
Type 'null' is not assignable to type 'number'.
|
|
303
|
-
src/PM/main.ts(
|
|
364
|
+
src/PM/main.ts(818,31): error TS2345: Argument of type 'number | null' is not assignable to parameter of type 'number'.
|
|
304
365
|
Type 'null' is not assignable to type 'number'.
|
|
305
|
-
src/PM/main.ts(
|
|
306
|
-
src/PM/main.ts(
|
|
307
|
-
src/PM/main.ts(
|
|
308
|
-
src/PM/main.ts(
|
|
309
|
-
src/PM/main.ts(
|
|
310
|
-
src/PM/main.ts(
|
|
311
|
-
src/PM/
|
|
366
|
+
src/PM/main.ts(984,6): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.
|
|
367
|
+
src/PM/main.ts(1022,27): error TS2345: Argument of type 'string' is not assignable to parameter of type 'number'.
|
|
368
|
+
src/PM/main.ts(1150,16): error TS2339: Property 'sidecars' does not exist on type 'PM_Main'.
|
|
369
|
+
src/PM/main.ts(1188,27): error TS2345: Argument of type 'string' is not assignable to parameter of type 'number'.
|
|
370
|
+
src/PM/main.ts(1203,9): error TS2322: Type 'undefined' is not assignable to type '[number, ITTestResourceConfiguration]'.
|
|
371
|
+
src/PM/main.ts(1473,9): error TS2532: Object is possibly 'undefined'.
|
|
372
|
+
src/PM/pure.ts(114,3): error TS2416: Property 'customScreenShot' in type 'PM_Pure' is not assignable to the same property in base type 'PM'.
|
|
373
|
+
Type '(opts: ScreencastOptions, page: string) => any' is not assignable to type '(opts: { path: string; }, page?: string | undefined) => any'.
|
|
374
|
+
Types of parameters 'opts' and 'opts' are incompatible.
|
|
375
|
+
Type '{ path: string; }' is not assignable to type 'ScreencastOptions'.
|
|
376
|
+
Types of property 'path' are incompatible.
|
|
377
|
+
Type 'string' is not assignable to type '`${string}.webm`'.
|
|
312
378
|
src/PM/web.ts(56,12): error TS2304: Cannot find name 'opts'.
|
|
313
379
|
src/PM/web.ts(57,57): error TS2304: Cannot find name 'opts'.
|
|
314
380
|
src/PM/web.ts(59,7): error TS2663: Cannot find name 'page'. Did you mean the instance member 'this.page'?
|
|
315
|
-
src/
|
|
316
|
-
src/
|
|
317
|
-
src/
|
|
318
|
-
|
|
319
|
-
src/
|
|
320
|
-
|
|
321
|
-
src/
|
|
322
|
-
|
|
323
|
-
src/
|
|
324
|
-
|
|
325
|
-
src/
|
|
326
|
-
src/
|
|
327
|
-
|
|
328
|
-
src/
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
src/
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
src/
|
|
336
|
-
src/
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
src/
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
src/
|
|
343
|
-
src/
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
src/
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
src/
|
|
350
|
-
|
|
351
|
-
src/
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
src/
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
src/
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
src/Pure.test.ts(
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
381
|
+
src/ProjectPage.tsx(290,35): error TS2339: Property 'tests' does not exist on type 'object'.
|
|
382
|
+
src/ProjectPage.tsx(314,19): error TS2801: This condition will always return true since this 'Promise<boolean>' is always defined.
|
|
383
|
+
src/ProjectPage.tsx(314,47): error TS2339: Property 'testsExist' does not exist on type 'string | { runTimeErrors: number | "?" | undefined; typeErrors: number | "?" | undefined; staticErrors: number | "?" | undefined; prompt: string | undefined; failingFeatures: object | undefined; }'.
|
|
384
|
+
Property 'testsExist' does not exist on type 'string'.
|
|
385
|
+
src/ProjectPage.tsx(315,38): error TS2339: Property 'runTimeErrors' does not exist on type 'string | { runTimeErrors: number | "?" | undefined; typeErrors: number | "?" | undefined; staticErrors: number | "?" | undefined; prompt: string | undefined; failingFeatures: object | undefined; }'.
|
|
386
|
+
Property 'runTimeErrors' does not exist on type 'string'.
|
|
387
|
+
src/ProjectPage.tsx(316,35): error TS2339: Property 'typeErrors' does not exist on type 'string | { runTimeErrors: number | "?" | undefined; typeErrors: number | "?" | undefined; staticErrors: number | "?" | undefined; prompt: string | undefined; failingFeatures: object | undefined; }'.
|
|
388
|
+
Property 'typeErrors' does not exist on type 'string'.
|
|
389
|
+
src/ProjectPage.tsx(317,37): error TS2339: Property 'staticErrors' does not exist on type 'string | { runTimeErrors: number | "?" | undefined; typeErrors: number | "?" | undefined; staticErrors: number | "?" | undefined; prompt: string | undefined; failingFeatures: object | undefined; }'.
|
|
390
|
+
Property 'staticErrors' does not exist on type 'string'.
|
|
391
|
+
src/ProjectPage.tsx(397,45): error TS2339: Property 'tests' does not exist on type 'object'.
|
|
392
|
+
src/Pure.test.ts(58,20): error TS2322: Type '{ pm: IPM; config: {}; proxies: { butThenProxy: (pm: IPM, path: string) => { writeFileSync: (p: string, c: string) => any; server: PuppetMasterServer; testResourceConfiguration: ITTestResourceConfiguration; } | { ...; } | { ...; }; andWhenProxy: (pm: IPM, path: string) => { ...; } | ... 1 more ... | { ...; }; before...' is not assignable to type '() => IPM'.
|
|
393
|
+
Type '{ pm: IPM; config: {}; proxies: { butThenProxy: (pm: IPM, path: string) => { writeFileSync: (p: string, c: string) => any; server: PuppetMasterServer; testResourceConfiguration: ITTestResourceConfiguration; } | { ...; } | { ...; }; andWhenProxy: (pm: IPM, path: string) => { ...; } | ... 1 more ... | { ...; }; before...' provides no match for the signature '(): IPM'.
|
|
394
|
+
src/Pure.test.ts(82,5): error TS2322: Type '(proxyType: string) => (store: { pm: IPM; }) => { pm: IPM; } | { pm: {}; } | { largePayload: boolean; pm: { writeFileSync: (p: string, c: string) => boolean; server: PuppetMasterServer; testResourceConfiguration: ITTestResourceConfiguration; } | { ...; } | { ...; }; } | { ...; }' is not assignable to type '(Iw_0: string) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>'.
|
|
395
|
+
Call signature return types '(store: { pm: IPM; }) => { pm: IPM; } | { pm: {}; } | { largePayload: boolean; pm: { writeFileSync: (p: string, c: string) => boolean; server: PuppetMasterServer; testResourceConfiguration: ITTestResourceConfiguration; } | { ...; } | { ...; }; } | { ...; }' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>' are incompatible.
|
|
396
|
+
Type '{ pm: IPM; } | { pm: {}; } | { largePayload: boolean; pm: { writeFileSync: (p: string, c: string) => boolean; server: PuppetMasterServer; testResourceConfiguration: ITTestResourceConfiguration; } | { ...; } | { ...; }; } | { ...; }' is not assignable to type 'Promise<(store: { pm: IPM; }) => { pm: IPM; }>'.
|
|
397
|
+
Type '{ pm: IPM; }' is missing the following properties from type 'Promise<(store: { pm: IPM; }) => { pm: IPM; }>': then, catch, finally, [Symbol.toStringTag]
|
|
398
|
+
src/Pure.test.ts(115,5): error TS2322: Type '(artifact: Promise<string>) => (store: { pm: IPM; }) => { artifacts: any[]; pm: IPM; }' is not assignable to type '(Iw_0: Promise<string>) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>'.
|
|
399
|
+
Call signature return types '(store: { pm: IPM; }) => { artifacts: any[]; pm: IPM; }' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>' are incompatible.
|
|
400
|
+
Type '{ artifacts: any[]; pm: IPM; }' is missing the following properties from type 'Promise<(store: { pm: IPM; }) => { pm: IPM; }>': then, catch, finally, [Symbol.toStringTag]
|
|
401
|
+
src/Pure.test.ts(119,31): error TS2339: Property 'artifacts' does not exist on type '{ pm: IPM; }'.
|
|
402
|
+
src/Pure.test.ts(122,5): error TS2322: Type '(jobs: any[]) => (store: { pm: IPM; }) => { testJobs: any[]; pm: IPM; }' is not assignable to type '(Iw_0: any[]) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>'.
|
|
403
|
+
Call signature return types '(store: { pm: IPM; }) => { testJobs: any[]; pm: IPM; }' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>' are incompatible.
|
|
404
|
+
Type '{ testJobs: any[]; pm: IPM; }' is missing the following properties from type 'Promise<(store: { pm: IPM; }) => { pm: IPM; }>': then, catch, finally, [Symbol.toStringTag]
|
|
405
|
+
src/Pure.test.ts(129,5): error TS2322: Type '(modifier: (specs: any) => any[]) => (store: { pm: IPM; }) => { specs: any[]; pm: IPM; }' is not assignable to type '(Iw_0: (specs: any) => any[]) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>'.
|
|
406
|
+
Call signature return types '(store: { pm: IPM; }) => { specs: any[]; pm: IPM; }' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>' are incompatible.
|
|
407
|
+
Type '{ specs: any[]; pm: IPM; }' is missing the following properties from type 'Promise<(store: { pm: IPM; }) => { pm: IPM; }>': then, catch, finally, [Symbol.toStringTag]
|
|
408
|
+
src/Pure.test.ts(133,31): error TS2339: Property 'specs' does not exist on type '{ pm: IPM; }'.
|
|
409
|
+
src/Pure.test.ts(139,32): error TS2322: Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
|
|
410
|
+
Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
|
|
411
|
+
Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
|
|
412
|
+
src/Pure.test.ts(145,27): error TS2322: Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
|
|
413
|
+
Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
|
|
414
|
+
Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
|
|
415
|
+
src/Pure.test.ts(146,20): error TS2339: Property 'getCallCount' does not exist on type 'IPM'.
|
|
416
|
+
Property 'getCallCount' does not exist on type 'PM_Pure'.
|
|
417
|
+
src/Pure.test.ts(151,24): error TS2322: Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
|
|
418
|
+
Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
|
|
419
|
+
Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
|
|
420
|
+
src/Pure.test.ts(155,29): error TS2322: Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
|
|
421
|
+
Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
|
|
422
|
+
Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
|
|
423
|
+
src/Pure.test.ts(159,30): error TS2322: Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
|
|
424
|
+
Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
|
|
425
|
+
Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
|
|
426
|
+
src/Pure.test.ts(160,20): error TS2339: Property 'getCallCount' does not exist on type 'IPM'.
|
|
427
|
+
Property 'getCallCount' does not exist on type 'PM_Pure'.
|
|
428
|
+
src/Pure.test.ts(165,5): error TS2322: Type '(expectedCount: number) => (store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(It_0: number) => (ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
|
|
429
|
+
Call signature return types '(store: { pm: IPM; }) => { pm: IPM; }' and '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }' are incompatible.
|
|
430
|
+
Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
|
|
431
|
+
Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
|
|
432
|
+
src/Pure.test.ts(166,36): error TS2339: Property 'getCallCount' does not exist on type 'IPM'.
|
|
433
|
+
Property 'getCallCount' does not exist on type 'PM_Pure'.
|
|
434
|
+
src/Pure.test.ts(174,5): error TS2322: Type '(expectedPath: string) => (store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(It_0: string) => (ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
|
|
435
|
+
Call signature return types '(store: { pm: IPM; }) => { pm: IPM; }' and '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }' are incompatible.
|
|
436
|
+
Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
|
|
437
|
+
Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
|
|
438
|
+
src/Pure.test.ts(177,35): error TS2339: Property 'getLastCall' does not exist on type 'IPM'.
|
|
439
|
+
Property 'getLastCall' does not exist on type 'PM_Pure'.
|
|
440
|
+
src/Pure.test.ts(183,26): error TS2322: Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
|
|
441
|
+
Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
|
|
442
|
+
Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
|
|
443
|
+
src/Pure.test.ts(184,20): error TS2339: Property 'getCallCount' does not exist on type 'IPM'.
|
|
444
|
+
Property 'getCallCount' does not exist on type 'PM_Pure'.
|
|
445
|
+
src/Pure.test.ts(189,5): error TS2322: Type '(expectedError: string) => (store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(It_0: string) => (ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
|
|
446
|
+
Call signature return types '(store: { pm: IPM; }) => { pm: IPM; }' and '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }' are incompatible.
|
|
447
|
+
Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
|
|
448
|
+
Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
|
|
449
|
+
src/Pure.test.ts(202,33): error TS2322: Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
|
|
450
|
+
Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
|
|
451
|
+
Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
|
|
452
|
+
src/Pure.test.ts(208,31): error TS2322: Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
|
|
453
|
+
Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
|
|
454
|
+
Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
|
|
455
|
+
src/Pure.test.ts(216,29): error TS2322: Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
|
|
456
|
+
Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
|
|
457
|
+
Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
|
|
368
458
|
src/Pure.ts(32,7): error TS2345: 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 & { ...; }'.
|
|
369
459
|
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
|
|
370
|
-
src/
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
src/
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
src/
|
|
382
|
-
src/
|
|
383
|
-
src/
|
|
384
|
-
src/ReportApp.tsx(33,11): error TS2304: Cannot find name 'fetchRuntimeLogs'.
|
|
385
|
-
src/ReportApp.tsx(34,11): error TS2304: Cannot find name 'fetchRuntimeLogs'.
|
|
386
|
-
src/ReportApp.tsx(80,37): error TS2304: Cannot find name 'ProjectOverview'.
|
|
387
|
-
src/ReportApp.tsx(81,53): error TS2304: Cannot find name 'ProjectDetail'.
|
|
388
|
-
src/ReportApp.tsx(82,68): error TS2304: Cannot find name 'TestReport'.
|
|
389
|
-
src/TestReport.tsx(180,26): error TS2531: Object is possibly 'null'.
|
|
390
|
-
src/TestReport.tsx(411,19): error TS2345: Argument of type 'FunctionComponentElement<{}>' is not assignable to parameter of type 'ReactNode'.
|
|
391
|
-
Property 'children' is missing in type 'FunctionComponentElement<{}>' but required in type 'ReactPortal'.
|
|
392
|
-
src/utils/buildTemplates.ts(29,34): error TS2769: No overload matches this call.
|
|
393
|
-
Overload 1 of 2, '(o: {}): string[]', gave the following error.
|
|
394
|
-
Argument of type 'unknown' is not assignable to parameter of type '{}'.
|
|
395
|
-
Overload 2 of 2, '(o: object): string[]', gave the following error.
|
|
396
|
-
Argument of type 'unknown' is not assignable to parameter of type 'object'.
|
|
397
|
-
src/Web.ts(40,7): error TS2345: 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 & { ...; }'.
|
|
460
|
+
src/ReportServer.ts(107,33): error TS2339: Property 'status' does not exist on type 'Error'.
|
|
461
|
+
src/TestPage.tsx(72,17): error TS2345: Argument of type 'string | undefined' is not assignable to parameter of type 'SetStateAction<string>'.
|
|
462
|
+
Type 'undefined' is not assignable to type 'SetStateAction<string>'.
|
|
463
|
+
src/TestPage.tsx(131,22): error TS2339: Property 'fails' does not exist on type 'TestData'.
|
|
464
|
+
src/TestPage.tsx(163,16): error TS2739: Type '{ testName: string; testsExist: boolean; runTimeErrors: number; variant: "compact"; }' is missing the following properties from type 'TestStatusBadgeProps': typeErrors, staticErrors
|
|
465
|
+
src/TestPage.tsx(258,32): error TS2339: Property 'artifacts' does not exist on type '{ name: string; whens: { name: string; error?: string | undefined; }[]; thens: { name: string; error?: string | undefined; }[]; }'.
|
|
466
|
+
src/TestPage.tsx(265,49): error TS2339: Property 'artifacts' does not exist on type '{ name: string; whens: { name: string; error?: string | undefined; }[]; thens: { name: string; error?: string | undefined; }[]; }'.
|
|
467
|
+
src/TestPage.tsx(268,38): error TS2339: Property 'artifacts' does not exist on type '{ name: string; whens: { name: string; error?: string | undefined; }[]; thens: { name: string; error?: string | undefined; }[]; }'.
|
|
468
|
+
src/TestPage.tsx(293,35): error TS2339: Property 'artifacts' does not exist on type '{ name: string; error?: string | undefined; }'.
|
|
469
|
+
src/TestPage.tsx(297,41): error TS2339: Property 'artifacts' does not exist on type '{ name: string; error?: string | undefined; }'.
|
|
470
|
+
src/TestPage.tsx(322,35): error TS2339: Property 'artifacts' does not exist on type '{ name: string; error?: string | undefined; }'.
|
|
471
|
+
src/TestPage.tsx(326,41): error TS2339: Property 'artifacts' does not exist on type '{ name: string; error?: string | undefined; }'.
|
|
472
|
+
src/utils/api.ts(69,54): error TS2304: Cannot find name 'testName'.
|
|
473
|
+
src/Web.ts(43,7): error TS2345: 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 & { ...; }'.
|
|
398
474
|
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
|
|
399
|
-
src/Web.ts(
|
|
400
|
-
src/Web.ts(
|
|
475
|
+
src/Web.ts(51,14): error TS2554: Expected 0 arguments, but got 1.
|
|
476
|
+
src/Web.ts(73,14): error TS2554: Expected 0 arguments, but got 1.
|
|
401
477
|
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
|