testeranto 0.172.0 → 0.173.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -4
- package/dist/common/src/PM/base.js +4 -0
- package/dist/common/src/PM/main.js +11 -4
- package/dist/common/src/PM/node.js +1 -1
- package/dist/common/src/PM/web.js +3 -3
- package/dist/common/src/ReportServer.js +2 -126
- package/dist/common/src/ReportServer.test.ts/index.js +78 -0
- package/dist/common/src/ReportServerLib.js +135 -0
- package/dist/common/src/components/pure/ProjectPageView.test/implementation.js +1 -1
- package/dist/common/src/lib/abstractBase.js +2 -0
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +10 -9
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.specification.js +7 -7
- package/dist/common/src/lib/basebuilder.js +8 -2
- package/dist/common/src/lib/pmProxy.js +54 -150
- package/dist/common/testeranto.config.js +35 -20
- package/dist/common/tsconfig.common.tsbuildinfo +1 -1
- package/dist/module/src/PM/base.js +4 -0
- package/dist/module/src/PM/main.js +11 -4
- package/dist/module/src/PM/node.js +1 -1
- package/dist/module/src/PM/web.js +3 -3
- package/dist/module/src/ReportServer.js +2 -123
- package/dist/module/src/ReportServer.test.ts/index.js +73 -0
- package/dist/module/src/ReportServerLib.js +128 -0
- package/dist/module/src/TestPage.js +29 -17
- package/dist/module/src/components/pure/ProjectPageView.test/implementation.js +1 -1
- package/dist/module/src/components/pure/TestPageView.js +29 -17
- package/dist/module/src/lib/abstractBase.js +2 -0
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +10 -9
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.specification.js +7 -7
- package/dist/module/src/lib/basebuilder.js +8 -2
- package/dist/module/src/lib/pmProxy.js +54 -150
- package/dist/module/testeranto.config.js +35 -20
- package/dist/module/tsconfig.module.tsbuildinfo +1 -1
- package/dist/prebuild/App.js +3 -3
- package/dist/prebuild/ReportServer.mjs +15 -9
- package/dist/prebuild/run.mjs +14 -4
- package/dist/types/src/PM/node.d.ts +1 -1
- package/dist/types/src/PM/web.d.ts +1 -1
- package/dist/types/src/ReportServer.test.ts/index.d.ts +29 -0
- package/dist/types/src/ReportServerLib.d.ts +2 -0
- package/dist/types/src/Types.d.ts +0 -1
- package/dist/types/src/components/pure/ProjectPageView.test/index.d.ts +2 -1
- package/dist/types/src/lib/abstractBase.d.ts +1 -1
- package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.types.d.ts +7 -4
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/PM/base.ts +5 -0
- package/src/PM/main.ts +12 -4
- package/src/PM/node.ts +1 -1
- package/src/PM/web.ts +3 -3
- package/src/ReportServer.test.ts/index.ts +194 -0
- package/src/ReportServer.ts +2 -132
- package/src/ReportServerLib.ts +144 -0
- package/src/TestPage.tsx +65 -5
- package/src/Types.ts +0 -1
- package/src/components/pure/ProjectPageView.test/implementation.tsx +1 -1
- package/src/components/pure/TestPageView.tsx +65 -5
- package/src/lib/abstractBase.ts +4 -1
- package/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts +22 -10
- package/src/lib/baseBuilder.test/baseBuilder.test.specification.ts +9 -9
- package/src/lib/baseBuilder.test/baseBuilder.test.types.ts +7 -4
- package/src/lib/basebuilder.ts +7 -4
- package/src/lib/pmProxy.ts +78 -155
- package/testeranto/App.js +3 -3
- package/testeranto/bundles/node/allTests/metafile.json +38 -781
- package/testeranto/bundles/node/allTests/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +983 -24
- package/testeranto/bundles/node/core/metafile.json +486 -0
- package/testeranto/bundles/{pure/allTests/chunk-VMUSFSZM.mjs → node/core/src/lib/baseBuilder.test/baseBuilder.test.node.mjs} +797 -412
- package/testeranto/bundles/node/staticSite/metafile.json +593 -0
- package/testeranto/bundles/node/staticSite/src/ReportServer.test.ts/index.mjs +1594 -0
- package/testeranto/bundles/pure/allTests/metafile.json +122 -550
- package/testeranto/bundles/pure/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +740 -27
- package/testeranto/bundles/pure/core/metafile.json +626 -0
- package/testeranto/bundles/{node/allTests/chunk-E75CSRER.mjs → pure/core/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs} +777 -483
- package/testeranto/bundles/pure/staticSite/metafile.json +8 -0
- package/testeranto/bundles/web/allTests/metafile.json +777 -22
- package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +893 -45
- package/testeranto/bundles/web/core/metafile.json +780 -0
- package/testeranto/bundles/web/core/src/lib/baseBuilder.test/baseBuilder.test.web.html +19 -0
- package/testeranto/bundles/web/{allTests/chunk-U7AW26HL.mjs → core/src/lib/baseBuilder.test/baseBuilder.test.web.mjs} +506 -411
- package/testeranto/bundles/web/staticSite/metafile.json +8 -0
- package/testeranto/projects.json +2 -1
- package/testeranto/reports/allTests/config.json +0 -64
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.txt +2 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/logs.txt +11 -13
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/prompt.txt +10 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/suite-0/given-testInitialization/then-0/butThen/hello.txt +1 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +10 -18
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +25 -13
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.txt +2 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/prompt.txt +8 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +24 -12
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/lint_errors.txt +2 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/logs.txt +49 -55
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +12 -2
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/suite-0/given-testInitialization/then-0/butThen/hello.txt +1 -0
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +10 -18
- package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +24 -12
- package/testeranto/reports/allTests/summary.json +6 -62
- package/testeranto/reports/core/config.json +24 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.txt +2 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/logs.txt +32 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/message.txt +2 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/prompt.txt +26 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/suite-0/given-testInitialization/then-0/butThen/hello.txt +1 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +69 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +74 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.txt +2 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/message.txt +2 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/prompt.txt +26 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +74 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/lint_errors.txt +2 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/logs.txt +61 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/message.txt +2 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +26 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/suite-0/given-testInitialization/then-0/butThen/hello.txt +1 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +69 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +74 -0
- package/testeranto/reports/core/summary.json +23 -0
- package/testeranto/reports/staticSite/config.json +24 -0
- package/testeranto/reports/staticSite/src/ReportServer.test.ts/index/node/lint_errors.txt +5 -0
- package/testeranto/reports/staticSite/src/ReportServer.test.ts/index/node/logs.txt +44 -0
- package/testeranto/reports/staticSite/src/ReportServer.test.ts/index/node/message.txt +2 -0
- package/testeranto/reports/staticSite/src/ReportServer.test.ts/index/node/prompt.txt +23 -0
- package/testeranto/reports/{allTests/src/lib/core.test/core.test → staticSite/src/ReportServer.test.ts/index}/node/type_errors.txt +21 -32
- package/testeranto/reports/staticSite/summary.json +9 -0
- package/testeranto/reportsnode_build_errors +8 -11
- package/testeranto.config.ts +37 -20
- package/testeranto/bundles/node/allTests/chunk-3EUGBAOM.mjs +0 -113
- package/testeranto/bundles/node/allTests/chunk-M6DO7VMB.mjs +0 -252
- package/testeranto/bundles/node/allTests/src/lib/BaseSuite.test/node.test.mjs +0 -323
- package/testeranto/bundles/node/allTests/src/lib/classBuilder.test/classBuilder.test.mjs +0 -411
- package/testeranto/bundles/node/allTests/src/lib/core.test/core.test.mjs +0 -528
- package/testeranto/bundles/node/allTests/src/lib/pmProxy.test/index.mjs +0 -4752
- package/testeranto/bundles/pure/allTests/chunk-KHDVEHF7.mjs +0 -185
- package/testeranto/bundles/pure/allTests/src/Pure.test.mjs +0 -429
- package/testeranto/bundles/pure/allTests/src/lib/BaseSuite.test/pure.test.mjs +0 -425
- package/testeranto/bundles/web/allTests/chunk-HPYA4YZC.mjs +0 -2283
- package/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.html +0 -19
- package/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs +0 -37524
- package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.html +0 -19
- package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs +0 -440
- package/testeranto/reports/allTests/src/Pure.test/pure/lint_errors.txt +0 -0
- package/testeranto/reports/allTests/src/Pure.test/pure/message.txt +0 -2
- package/testeranto/reports/allTests/src/Pure.test/pure/prompt.txt +0 -13
- package/testeranto/reports/allTests/src/Pure.test/pure/type_errors.txt +0 -101
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +0 -13
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/logs.txt +0 -50
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/message.txt +0 -2
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/prompt.txt +0 -17
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/tests.json +0 -32
- package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +0 -68
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/lint_errors.txt +0 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/logs.txt +0 -52
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/prompt.txt +0 -13
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/tests.json +0 -31
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/type_errors.txt +0 -111
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/bdd_errors.txt +0 -1
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/lint_errors.txt +0 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/prompt.txt +0 -14
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/tests.json +0 -31
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +0 -111
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/bdd_errors.txt +0 -1
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/lint_errors.txt +0 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/logs.txt +0 -108
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/prompt.txt +0 -14
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/tests.json +0 -31
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/type_errors.txt +0 -111
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/bdd_errors.txt +0 -1
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/lint_errors.txt +0 -0
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/logs.txt +0 -700
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/prompt.txt +0 -16
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/tests.json +0 -164
- package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt +0 -138
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/lint_errors.txt +0 -21
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/logs.txt +0 -7
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/core.test/core.test/node/prompt.txt +0 -18
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/bdd_errors.txt +0 -1
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/lint_errors.txt +0 -20
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/logs.txt +0 -31
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/message.txt +0 -2
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/prompt.txt +0 -16
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/tests.json +0 -134
- package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/type_errors.txt +0 -76
- package/testeranto/reportspure_build_errors +0 -343
- package/testeranto/reportsweb_build_errors +0 -25
- /package/testeranto/reports/{allTests/src/components/pure/ProjectPageView.test/index/web → core/src/lib/baseBuilder.test/baseBuilder.test.node/node}/bdd_errors.txt +0 -0
- /package/testeranto/reports/{allTests/src/lib/BaseSuite.test/node.test/node → core/src/lib/baseBuilder.test/baseBuilder.test.web/web}/bdd_errors.txt +0 -0
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
/Users/adam/Code/testeranto/src/lib/abstractBase.ts (244,17): Catch clause variable type annotation must be 'any' or 'unknown' if specified.
|
|
2
|
-
/Users/adam/Code/testeranto/src/lib/abstractBase.ts (301,39): Expected 1 arguments, but got 2.
|
|
3
|
-
/Users/adam/Code/testeranto/src/lib/basebuilder.ts (79,15): This expression is not callable.
|
|
4
|
-
Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
|
|
5
|
-
Type 'void' has no call signatures.
|
|
6
|
-
/Users/adam/Code/testeranto/src/lib/classBuilder.ts (86,18): A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
7
|
-
/Users/adam/Code/testeranto/src/lib/classBuilder.ts (101,28): A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
8
|
-
/Users/adam/Code/testeranto/src/lib/core.ts (46,7): Argument of type 'Omit<{ suites: import("/Users/adam/Code/testeranto/src/Types").TestSuiteImplementation<O>; givens: import("/Users/adam/Code/testeranto/src/Types").TestGivenImplementation<I, O>; whens: import("/Users/adam/Code/testeranto/src/Types").TestWhenImplementation<...>; thens: import("/Users/adam/Code/testeranto/src/Types")....' is not assignable to parameter of type 'Omit<{ suites: import("/Users/adam/Code/testeranto/src/Types").TestSuiteImplementation<O>; givens: import("/Users/adam/Code/testeranto/src/Types").TestGivenImplementation<I, O>; whens: import("/Users/adam/Code/testeranto/src/Types").TestWhenImplementation<...>; thens: import("/Users/adam/Code/testeranto/src/Types")....'.
|
|
9
|
-
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>; }'.
|
|
10
|
-
Types of property 'suites' are incompatible.
|
|
11
|
-
Type 'Record<string, any>' is not assignable to type 'Record<string, never>'.
|
|
12
|
-
'string' index signatures are incompatible.
|
|
13
|
-
Type 'any' is not assignable to type 'never'.
|
|
14
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (16,3): Type '(subject: T["isubject"], initialValues: T["iinitialValues"], x: unknown, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<T["isubject"]>' is not assignable to type '(subject: T["isubject"], initializer: (c?: any) => T["given"], testResource: ITTestResourceConfiguration, initialValues: any, pm: IPM) => Promise<...>'.
|
|
15
|
-
Types of parameters 'initialValues' and 'initializer' are incompatible.
|
|
16
|
-
Type '(c?: any) => T["given"]' is not assignable to type 'T["iinitialValues"]'.
|
|
17
|
-
'T["iinitialValues"]' could be instantiated with an arbitrary type which could be unrelated to '(c?: any) => T["given"]'.
|
|
18
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (18,20): Type '"iinitialValues"' cannot be used to index type 'T'.
|
|
19
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (40,13): This expression is not callable.
|
|
20
|
-
Type 'unknown' has no call signatures.
|
|
21
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (52,3): Type '{ assertThis?: ((x: T["then"]) => any) | undefined; andWhen?: ((store: T["istore"], whenCB: T["when"], testResource: ITTestResourceConfiguration, pm: IPM) => Promise<T["istore"]>) | undefined; ... 4 more ...; beforeEach?: ((subject: T["isubject"], initializer: (c?: any) => T["given"], testResource: ITTestResourceCon...' is not assignable to type 'ITestAdapter<T>'.
|
|
22
|
-
Types of property 'assertThis' are incompatible.
|
|
23
|
-
Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
24
|
-
Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
25
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/adapter.ts (13,3): Type '(subject: { proxies: import("/Users/adam/Code/testeranto/src/lib/pmProxy.test/index").ITestProxies; filepath: string; mockPm: import("/Users/adam/Code/testeranto/src/lib/types").IPM; }, initializer: (c?: any) => [...], testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, ini...' is not assignable to type '(subject: { proxies: import("/Users/adam/Code/testeranto/src/lib/pmProxy.test/index").ITestProxies; filepath: string; mockPm: import("/Users/adam/Code/testeranto/src/lib/types").IPM; }, initializer: (c?: any) => [...], testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, ini...'. Two different types with this name exist, but they are unrelated.
|
|
26
|
-
Type 'Promise<{ proxies: ITestProxies; filepath: string; mockPm: IPM; }>' is not assignable to type 'Promise<{ butThenProxy: IProxy; }>'.
|
|
27
|
-
Property 'butThenProxy' is missing in type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' but required in type '{ butThenProxy: IProxy; }'.
|
|
28
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/adapter.ts (24,3): Type '(store: { butThenProxy: import("/Users/adam/Code/testeranto/src/lib/pmProxy").IProxy; }, whenCB: (...args: any[]) => (proxies: { butThenProxy: import("/Users/adam/Code/testeranto/src/lib/pmProxy").IProxy; }) => { ...; }, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, p...' is not assignable to type '(store: { butThenProxy: import("/Users/adam/Code/testeranto/src/lib/pmProxy").IProxy; }, whenCB: (...args: any[]) => (proxies: { butThenProxy: import("/Users/adam/Code/testeranto/src/lib/pmProxy").IProxy; }) => { ...; }, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, p...'. Two different types with this name exist, but they are unrelated.
|
|
29
|
-
Type 'Promise<(proxies: { butThenProxy: IProxy; }) => { butThenProxy: IProxy; }>' is not assignable to type 'Promise<{ butThenProxy: IProxy; }>'.
|
|
30
|
-
Type '(proxies: { butThenProxy: IProxy; }) => { butThenProxy: IProxy; }' is not assignable to type '{ butThenProxy: IProxy; }'.
|
|
31
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/adapter.ts (31,12): This expression is not callable.
|
|
32
|
-
Type '[IPM, "string"]' has no call signatures.
|
|
33
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/adapter.ts (36,3): Type '(input: any, testResource: any, pm: any, theGivenString: any) => Promise<{ beforeEachProxy: any; }>' is not assignable to type '(input: { butThenProxy: IProxy; }, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<{ proxies: ITestProxies; filepath: string; mockPm: IPM; }>'.
|
|
34
|
-
Target signature provides too few arguments. Expected 4 or more, but got 3.
|
|
35
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/adapter.ts (45,3): Type '(returnedFilePath: any, expectation: any) => void' is not assignable to type '(x: [IPM, "string"]) => any'.
|
|
36
|
-
Target signature provides too few arguments. Expected 2 or more, but got 1.
|
|
37
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/implementation.ts (22,5): Type '(method: IProxiedFunctions, expectedPath: string) => (store: { butThenProxy: IProxy; }) => [undefined, undefined] | [string, string, any] | [any, string]' is not assignable to type '(...It: any) => (ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, "string"]'.
|
|
38
|
-
Type '(store: { butThenProxy: IProxy; }) => [undefined, undefined] | [string, string, any] | [any, string]' is not assignable to type '(ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, "string"]'.
|
|
39
|
-
Types of parameters 'store' and 'ssel' are incompatible.
|
|
40
|
-
Property 'butThenProxy' is missing in type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' but required in type '{ butThenProxy: IProxy; }'.
|
|
41
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/implementation.ts (50,35): Property 'getLastCall' does not exist on type 'IPM'.
|
|
42
|
-
Property 'getLastCall' does not exist on type 'PM_Pure'.
|
|
43
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/implementation.ts (51,38): Property 'getLastCall' does not exist on type 'IPM'.
|
|
44
|
-
Property 'getLastCall' does not exist on type 'PM_Pure'.
|
|
45
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/implementation.ts (58,35): Property 'getLastCall' does not exist on type 'IPM'.
|
|
46
|
-
Property 'getLastCall' does not exist on type 'PM_Pure'.
|
|
47
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/implementation.ts (64,19): Type '"screen.png"' is not assignable to type '`${string}.webm`'.
|
|
48
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/implementation.ts (70,35): Property 'getLastCall' does not exist on type 'IPM'.
|
|
49
|
-
Property 'getLastCall' does not exist on type 'PM_Pure'.
|
|
50
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/implementation.ts (71,38): Property 'getLastCall' does not exist on type 'IPM'.
|
|
51
|
-
Property 'getLastCall' does not exist on type 'PM_Pure'.
|
|
52
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/implementation.ts (75,44): Type '"shot.png"' is not assignable to type '`${string}.webm`'.
|
|
53
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/implementation.ts (76,35): Property 'getLastCall' does not exist on type 'IPM'.
|
|
54
|
-
Property 'getLastCall' does not exist on type 'PM_Pure'.
|
|
55
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/implementation.ts (93,5): Type '(expectedContent: any) => (result: any[]) => any[]' is not assignable to type '(...It: any) => (ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, "string"]'.
|
|
56
|
-
Type '(result: any[]) => any[]' is not assignable to type '(ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, "string"]'.
|
|
57
|
-
Types of parameters 'result' and 'ssel' are incompatible.
|
|
58
|
-
Type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' is missing the following properties from type 'any[]': length, pop, push, concat, and 35 more.
|
|
59
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/index.ts (17,3): Argument of type 'ITestImplementation<I, any, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<any>; givens: TestGivenImplementation<I, any>; whens: TestWhenImplementation<I, any>; thens: TestThenImplementation<...>; }, never>'.
|
|
60
|
-
Types of property 'givens' are incompatible.
|
|
61
|
-
Type '{ [x: string]: (...Iw: any) => string; }' is not assignable to type 'TestGivenImplementation<I, any>'.
|
|
62
|
-
'string' index signatures are incompatible.
|
|
63
|
-
Type '(...Iw: any) => string' is not assignable to type '(...Ig: any) => [string, string]'.
|
|
64
|
-
Type 'string' is not assignable to type '[string, string]'.
|
|
65
|
-
/Users/adam/Code/testeranto/src/lib/pmProxy.test/types.ts (21,17): Generic type 'Ibdd_out' requires between 0 and 4 type arguments.
|
|
66
|
-
/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 & { ...; }'.
|
|
67
|
-
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
|
|
68
|
-
/Users/adam/Code/testeranto/src/PM/pure.ts (114,3): Property 'customScreenShot' in type 'PM_Pure' is not assignable to the same property in base type 'PM'.
|
|
69
|
-
Type '(opts: ScreencastOptions, page: string) => any' is not assignable to type '(opts: { path: string; }, page?: string | undefined) => any'.
|
|
70
|
-
Types of parameters 'opts' and 'opts' are incompatible.
|
|
71
|
-
Type '{ path: string; }' is not assignable to type 'ScreencastOptions'.
|
|
72
|
-
Types of property 'path' are incompatible.
|
|
73
|
-
Type 'string' is not assignable to type '`${string}.webm`'.
|
|
74
|
-
/Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
|
|
75
|
-
/Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
|
|
76
|
-
/Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
|
|
@@ -1,343 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"errors": [
|
|
3
|
-
{
|
|
4
|
-
"id": "",
|
|
5
|
-
"location": {
|
|
6
|
-
"column": 31,
|
|
7
|
-
"file": "package.json",
|
|
8
|
-
"length": 1,
|
|
9
|
-
"line": 169,
|
|
10
|
-
"lineText": " \"testeranto-react\": \"0.0.5\",",
|
|
11
|
-
"namespace": "",
|
|
12
|
-
"suggestion": ""
|
|
13
|
-
},
|
|
14
|
-
"notes": [],
|
|
15
|
-
"pluginName": "",
|
|
16
|
-
"text": "JSON does not support trailing commas"
|
|
17
|
-
}
|
|
18
|
-
],
|
|
19
|
-
"warnings": [
|
|
20
|
-
{
|
|
21
|
-
"id": "",
|
|
22
|
-
"location": null,
|
|
23
|
-
"notes": [],
|
|
24
|
-
"pluginName": "console-detector",
|
|
25
|
-
"text": "call of \"console.debug\" was detected, which is not supported in the pure runtime."
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"id": "",
|
|
29
|
-
"location": {
|
|
30
|
-
"column": 27,
|
|
31
|
-
"file": "src/Pure.test.ts",
|
|
32
|
-
"length": 31,
|
|
33
|
-
"line": 11,
|
|
34
|
-
"lineText": "import { MockPMBase } from \"./lib/pmProxy.test/mockPMBase\";",
|
|
35
|
-
"namespace": "",
|
|
36
|
-
"suggestion": ""
|
|
37
|
-
},
|
|
38
|
-
"notes": [],
|
|
39
|
-
"pluginName": "console-detector",
|
|
40
|
-
"text": "call of \"console.debug\" was detected, which is not supported in the pure runtime."
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
"id": "",
|
|
44
|
-
"location": {
|
|
45
|
-
"column": 24,
|
|
46
|
-
"file": "src/Pure.ts",
|
|
47
|
-
"length": 14,
|
|
48
|
-
"line": 15,
|
|
49
|
-
"lineText": "import { PM_Pure } from \"./PM/pure.js\";",
|
|
50
|
-
"namespace": "",
|
|
51
|
-
"suggestion": ""
|
|
52
|
-
},
|
|
53
|
-
"notes": [],
|
|
54
|
-
"pluginName": "console-detector",
|
|
55
|
-
"text": "call of \"console.error\" was detected, which is not supported in the pure runtime."
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"id": "",
|
|
59
|
-
"location": {
|
|
60
|
-
"column": 23,
|
|
61
|
-
"file": "src/Web.ts",
|
|
62
|
-
"length": 10,
|
|
63
|
-
"line": 11,
|
|
64
|
-
"lineText": "import { PM_Web } from \"./PM/web\";",
|
|
65
|
-
"namespace": "",
|
|
66
|
-
"suggestion": ""
|
|
67
|
-
},
|
|
68
|
-
"notes": [],
|
|
69
|
-
"pluginName": "console-detector",
|
|
70
|
-
"text": "call of \"console.log\" was detected, which is not supported in the pure runtime."
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
"id": "",
|
|
74
|
-
"location": {
|
|
75
|
-
"column": 7,
|
|
76
|
-
"file": "src/Web.ts",
|
|
77
|
-
"length": 16,
|
|
78
|
-
"line": 18,
|
|
79
|
-
"lineText": "} from \"./lib/index.js\";",
|
|
80
|
-
"namespace": "",
|
|
81
|
-
"suggestion": ""
|
|
82
|
-
},
|
|
83
|
-
"notes": [],
|
|
84
|
-
"pluginName": "console-detector",
|
|
85
|
-
"text": "call of \"console.error\" was detected, which is not supported in the pure runtime."
|
|
86
|
-
},
|
|
87
|
-
{
|
|
88
|
-
"id": "",
|
|
89
|
-
"location": {
|
|
90
|
-
"column": 23,
|
|
91
|
-
"file": "src/lib/BaseSuite.test/pure.test.ts",
|
|
92
|
-
"length": 12,
|
|
93
|
-
"line": 2,
|
|
94
|
-
"lineText": "import Testeranto from \"../../Pure\";",
|
|
95
|
-
"namespace": "",
|
|
96
|
-
"suggestion": ""
|
|
97
|
-
},
|
|
98
|
-
"notes": [],
|
|
99
|
-
"pluginName": "console-detector",
|
|
100
|
-
"text": "call of \"console.error\" was detected, which is not supported in the pure runtime."
|
|
101
|
-
},
|
|
102
|
-
{
|
|
103
|
-
"id": "",
|
|
104
|
-
"location": {
|
|
105
|
-
"column": 23,
|
|
106
|
-
"file": "src/lib/BaseSuite.test/pure.test.ts",
|
|
107
|
-
"length": 12,
|
|
108
|
-
"line": 2,
|
|
109
|
-
"lineText": "import Testeranto from \"../../Pure\";",
|
|
110
|
-
"namespace": "",
|
|
111
|
-
"suggestion": ""
|
|
112
|
-
},
|
|
113
|
-
"notes": [],
|
|
114
|
-
"pluginName": "console-detector",
|
|
115
|
-
"text": "call of \"console.log\" was detected, which is not supported in the pure runtime."
|
|
116
|
-
},
|
|
117
|
-
{
|
|
118
|
-
"id": "",
|
|
119
|
-
"location": {
|
|
120
|
-
"column": 26,
|
|
121
|
-
"file": "src/lib/BaseSuite.test/pure.test.ts",
|
|
122
|
-
"length": 14,
|
|
123
|
-
"line": 4,
|
|
124
|
-
"lineText": "import { BaseSuite } from \"../BaseSuite\";",
|
|
125
|
-
"namespace": "",
|
|
126
|
-
"suggestion": ""
|
|
127
|
-
},
|
|
128
|
-
"notes": [],
|
|
129
|
-
"pluginName": "console-detector",
|
|
130
|
-
"text": "call of \"console.debug\" was detected, which is not supported in the pure runtime."
|
|
131
|
-
},
|
|
132
|
-
{
|
|
133
|
-
"id": "",
|
|
134
|
-
"location": {
|
|
135
|
-
"column": 26,
|
|
136
|
-
"file": "src/lib/BaseSuite.test/pure.test.ts",
|
|
137
|
-
"length": 14,
|
|
138
|
-
"line": 4,
|
|
139
|
-
"lineText": "import { BaseSuite } from \"../BaseSuite\";",
|
|
140
|
-
"namespace": "",
|
|
141
|
-
"suggestion": ""
|
|
142
|
-
},
|
|
143
|
-
"notes": [],
|
|
144
|
-
"pluginName": "console-detector",
|
|
145
|
-
"text": "call of \"console.error\" was detected, which is not supported in the pure runtime."
|
|
146
|
-
},
|
|
147
|
-
{
|
|
148
|
-
"id": "",
|
|
149
|
-
"location": {
|
|
150
|
-
"column": 26,
|
|
151
|
-
"file": "src/lib/BaseSuite.test/pure.test.ts",
|
|
152
|
-
"length": 14,
|
|
153
|
-
"line": 4,
|
|
154
|
-
"lineText": "import { BaseSuite } from \"../BaseSuite\";",
|
|
155
|
-
"namespace": "",
|
|
156
|
-
"suggestion": ""
|
|
157
|
-
},
|
|
158
|
-
"notes": [],
|
|
159
|
-
"pluginName": "console-detector",
|
|
160
|
-
"text": "call of \"console.log\" was detected, which is not supported in the pure runtime."
|
|
161
|
-
},
|
|
162
|
-
{
|
|
163
|
-
"id": "",
|
|
164
|
-
"location": {
|
|
165
|
-
"column": 65,
|
|
166
|
-
"file": "src/lib/BaseSuite.test/pure.test.ts",
|
|
167
|
-
"length": 8,
|
|
168
|
-
"line": 6,
|
|
169
|
-
"lineText": "import { I, implementation, O, specification, testAdapter } from \"./test\";",
|
|
170
|
-
"namespace": "",
|
|
171
|
-
"suggestion": ""
|
|
172
|
-
},
|
|
173
|
-
"notes": [],
|
|
174
|
-
"pluginName": "console-detector",
|
|
175
|
-
"text": "call of \"console.error\" was detected, which is not supported in the pure runtime."
|
|
176
|
-
},
|
|
177
|
-
{
|
|
178
|
-
"id": "",
|
|
179
|
-
"location": {
|
|
180
|
-
"column": 65,
|
|
181
|
-
"file": "src/lib/BaseSuite.test/pure.test.ts",
|
|
182
|
-
"length": 8,
|
|
183
|
-
"line": 6,
|
|
184
|
-
"lineText": "import { I, implementation, O, specification, testAdapter } from \"./test\";",
|
|
185
|
-
"namespace": "",
|
|
186
|
-
"suggestion": ""
|
|
187
|
-
},
|
|
188
|
-
"notes": [],
|
|
189
|
-
"pluginName": "console-detector",
|
|
190
|
-
"text": "call of \"console.log\" was detected, which is not supported in the pure runtime."
|
|
191
|
-
},
|
|
192
|
-
{
|
|
193
|
-
"id": "",
|
|
194
|
-
"location": {
|
|
195
|
-
"column": 26,
|
|
196
|
-
"file": "src/lib/BaseSuite.test/test.ts",
|
|
197
|
-
"length": 8,
|
|
198
|
-
"line": 14,
|
|
199
|
-
"lineText": "import { MockSuite } from \"./mock\";",
|
|
200
|
-
"namespace": "",
|
|
201
|
-
"suggestion": ""
|
|
202
|
-
},
|
|
203
|
-
"notes": [],
|
|
204
|
-
"pluginName": "console-detector",
|
|
205
|
-
"text": "call of \"console.error\" was detected, which is not supported in the pure runtime."
|
|
206
|
-
},
|
|
207
|
-
{
|
|
208
|
-
"id": "",
|
|
209
|
-
"location": {
|
|
210
|
-
"column": 26,
|
|
211
|
-
"file": "src/lib/BaseSuite.test/test.ts",
|
|
212
|
-
"length": 8,
|
|
213
|
-
"line": 14,
|
|
214
|
-
"lineText": "import { MockSuite } from \"./mock\";",
|
|
215
|
-
"namespace": "",
|
|
216
|
-
"suggestion": ""
|
|
217
|
-
},
|
|
218
|
-
"notes": [],
|
|
219
|
-
"pluginName": "console-detector",
|
|
220
|
-
"text": "call of \"console.log\" was detected, which is not supported in the pure runtime."
|
|
221
|
-
},
|
|
222
|
-
{
|
|
223
|
-
"id": "",
|
|
224
|
-
"location": {
|
|
225
|
-
"column": 46,
|
|
226
|
-
"file": "src/lib/BaseSuite.ts",
|
|
227
|
-
"length": 11,
|
|
228
|
-
"line": 5,
|
|
229
|
-
"lineText": "import { beforeAllProxy, afterAllProxy } from \"./pmProxy\";",
|
|
230
|
-
"namespace": "",
|
|
231
|
-
"suggestion": ""
|
|
232
|
-
},
|
|
233
|
-
"notes": [],
|
|
234
|
-
"pluginName": "console-detector",
|
|
235
|
-
"text": "call of \"console.log\" was detected, which is not supported in the pure runtime."
|
|
236
|
-
},
|
|
237
|
-
{
|
|
238
|
-
"id": "",
|
|
239
|
-
"location": {
|
|
240
|
-
"column": 46,
|
|
241
|
-
"file": "src/lib/BaseSuite.ts",
|
|
242
|
-
"length": 11,
|
|
243
|
-
"line": 5,
|
|
244
|
-
"lineText": "import { beforeAllProxy, afterAllProxy } from \"./pmProxy\";",
|
|
245
|
-
"namespace": "",
|
|
246
|
-
"suggestion": ""
|
|
247
|
-
},
|
|
248
|
-
"notes": [],
|
|
249
|
-
"pluginName": "console-detector",
|
|
250
|
-
"text": "call of \"console.warn\" was detected, which is not supported in the pure runtime."
|
|
251
|
-
},
|
|
252
|
-
{
|
|
253
|
-
"id": "",
|
|
254
|
-
"location": {
|
|
255
|
-
"column": 23,
|
|
256
|
-
"file": "src/lib/baseBuilder.test/baseBuilder.test.pure.ts",
|
|
257
|
-
"length": 11,
|
|
258
|
-
"line": 2,
|
|
259
|
-
"lineText": "import Testeranto from \"../../Web\";",
|
|
260
|
-
"namespace": "",
|
|
261
|
-
"suggestion": ""
|
|
262
|
-
},
|
|
263
|
-
"notes": [],
|
|
264
|
-
"pluginName": "console-detector",
|
|
265
|
-
"text": "call of \"console.log\" was detected, which is not supported in the pure runtime."
|
|
266
|
-
},
|
|
267
|
-
{
|
|
268
|
-
"id": "",
|
|
269
|
-
"location": {
|
|
270
|
-
"column": 31,
|
|
271
|
-
"file": "src/lib/baseBuilder.test/baseBuilder.test.pure.ts",
|
|
272
|
-
"length": 35,
|
|
273
|
-
"line": 5,
|
|
274
|
-
"lineText": "import { implementation } from \"./baseBuilder.test.implementation\";",
|
|
275
|
-
"namespace": "",
|
|
276
|
-
"suggestion": ""
|
|
277
|
-
},
|
|
278
|
-
"notes": [],
|
|
279
|
-
"pluginName": "console-detector",
|
|
280
|
-
"text": "call of \"console.error\" was detected, which is not supported in the pure runtime."
|
|
281
|
-
},
|
|
282
|
-
{
|
|
283
|
-
"id": "",
|
|
284
|
-
"location": {
|
|
285
|
-
"column": 28,
|
|
286
|
-
"file": "src/lib/baseBuilder.test/baseBuilder.test.pure.ts",
|
|
287
|
-
"length": 28,
|
|
288
|
-
"line": 6,
|
|
289
|
-
"lineText": "import { testAdapter } from \"./baseBuilder.test.adapter\";",
|
|
290
|
-
"namespace": "",
|
|
291
|
-
"suggestion": ""
|
|
292
|
-
},
|
|
293
|
-
"notes": [],
|
|
294
|
-
"pluginName": "console-detector",
|
|
295
|
-
"text": "call of \"console.log\" was detected, which is not supported in the pure runtime."
|
|
296
|
-
},
|
|
297
|
-
{
|
|
298
|
-
"id": "",
|
|
299
|
-
"location": {
|
|
300
|
-
"column": 46,
|
|
301
|
-
"file": "src/lib/core.ts",
|
|
302
|
-
"length": 19,
|
|
303
|
-
"line": 20,
|
|
304
|
-
"lineText": "import { BaseGiven, BaseWhen, BaseThen } from \"./abstractBase.js\";",
|
|
305
|
-
"namespace": "",
|
|
306
|
-
"suggestion": ""
|
|
307
|
-
},
|
|
308
|
-
"notes": [],
|
|
309
|
-
"pluginName": "console-detector",
|
|
310
|
-
"text": "call of \"console.debug\" was detected, which is not supported in the pure runtime."
|
|
311
|
-
},
|
|
312
|
-
{
|
|
313
|
-
"id": "",
|
|
314
|
-
"location": {
|
|
315
|
-
"column": 46,
|
|
316
|
-
"file": "src/lib/core.ts",
|
|
317
|
-
"length": 19,
|
|
318
|
-
"line": 20,
|
|
319
|
-
"lineText": "import { BaseGiven, BaseWhen, BaseThen } from \"./abstractBase.js\";",
|
|
320
|
-
"namespace": "",
|
|
321
|
-
"suggestion": ""
|
|
322
|
-
},
|
|
323
|
-
"notes": [],
|
|
324
|
-
"pluginName": "console-detector",
|
|
325
|
-
"text": "call of \"console.error\" was detected, which is not supported in the pure runtime."
|
|
326
|
-
},
|
|
327
|
-
{
|
|
328
|
-
"id": "",
|
|
329
|
-
"location": {
|
|
330
|
-
"column": 46,
|
|
331
|
-
"file": "src/lib/core.ts",
|
|
332
|
-
"length": 19,
|
|
333
|
-
"line": 20,
|
|
334
|
-
"lineText": "import { BaseGiven, BaseWhen, BaseThen } from \"./abstractBase.js\";",
|
|
335
|
-
"namespace": "",
|
|
336
|
-
"suggestion": ""
|
|
337
|
-
},
|
|
338
|
-
"notes": [],
|
|
339
|
-
"pluginName": "console-detector",
|
|
340
|
-
"text": "call of \"console.log\" was detected, which is not supported in the pure runtime."
|
|
341
|
-
}
|
|
342
|
-
]
|
|
343
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"errors": [
|
|
3
|
-
{
|
|
4
|
-
"id": "",
|
|
5
|
-
"location": {
|
|
6
|
-
"column": 23,
|
|
7
|
-
"file": "node_modules/testeranto-react/src/react-dom/component/web.ts",
|
|
8
|
-
"length": 20,
|
|
9
|
-
"line": 2,
|
|
10
|
-
"lineText": "import Testeranto from \"testeranto/src/Web\";",
|
|
11
|
-
"namespace": "",
|
|
12
|
-
"suggestion": ""
|
|
13
|
-
},
|
|
14
|
-
"notes": [
|
|
15
|
-
{
|
|
16
|
-
"location": null,
|
|
17
|
-
"text": "You can mark the path \"testeranto/src/Web\" as external to exclude it from the bundle, which will remove this error."
|
|
18
|
-
}
|
|
19
|
-
],
|
|
20
|
-
"pluginName": "",
|
|
21
|
-
"text": "Could not resolve \"testeranto/src/Web\""
|
|
22
|
-
}
|
|
23
|
-
],
|
|
24
|
-
"warnings": []
|
|
25
|
-
}
|
|
File without changes
|