testeranto 0.111.0 → 0.112.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/Init.js +68 -0
- package/dist/common/Node.js +27 -0
- package/dist/common/PM/index.js +7 -0
- package/dist/common/PM/main.js +1176 -0
- package/dist/common/PM/node.js +128 -0
- package/dist/common/PM/web.js +121 -0
- package/dist/common/ReportServer.js +22 -0
- package/dist/common/SubPackages/react/component/node.js +19 -0
- package/dist/common/SubPackages/react/component/web.js +19 -0
- package/dist/common/SubPackages/react/jsx/index.js +21 -0
- package/dist/common/SubPackages/react/jsx/node.js +10 -0
- package/dist/common/SubPackages/react/jsx/web.js +10 -0
- package/dist/common/SubPackages/react-dom/component/node.js +88 -0
- package/dist/common/SubPackages/react-dom/component/web.js +67 -0
- package/dist/common/SubPackages/react-dom/jsx/index.js +2 -0
- package/dist/common/SubPackages/react-dom/jsx/node.js +39 -0
- package/dist/common/SubPackages/react-dom/jsx/web.js +128 -0
- package/dist/common/SubPackages/react-test-renderer/MemoExoticComponent/node.js +54 -0
- package/dist/common/SubPackages/react-test-renderer/component/index.js +2 -0
- package/dist/common/SubPackages/react-test-renderer/component/interface.js +70 -0
- package/dist/common/SubPackages/react-test-renderer/component/node.js +8 -0
- package/dist/common/SubPackages/react-test-renderer/component/web.js +8 -0
- package/dist/common/SubPackages/react-test-renderer/fc/node.js +60 -0
- package/dist/common/SubPackages/react-test-renderer/fc/web.js +60 -0
- package/dist/common/SubPackages/react-test-renderer/jsx/index.js +67 -0
- package/dist/common/SubPackages/react-test-renderer/jsx/node.js +10 -0
- package/dist/common/SubPackages/react-test-renderer/jsx/web.js +10 -0
- package/dist/common/SubPackages/react-test-renderer/jsx-promised/index.js +52 -0
- package/dist/common/SubPackages/react-test-renderer/jsx-promised/node.js +10 -0
- package/dist/common/SubPackages/react-test-renderer/jsx-promised/web.js +10 -0
- package/dist/common/Types.js +2 -0
- package/dist/common/Web.js +49 -0
- package/dist/common/build.js +222 -0
- package/dist/common/defaultConfig.js +20 -0
- package/dist/common/esbuildConfigs/eslint-formatter-testeranto.js +6 -0
- package/dist/common/esbuildConfigs/featuresPlugin.js +39 -0
- package/dist/common/esbuildConfigs/index.js +21 -0
- package/dist/common/esbuildConfigs/inputFilesPlugin.js +27 -0
- package/dist/common/esbuildConfigs/node.js +37 -0
- package/dist/common/esbuildConfigs/web.js +50 -0
- package/dist/common/init-docs.js +53 -0
- package/dist/common/lib/abstractBase.js +329 -0
- package/dist/common/lib/basebuilder.js +98 -0
- package/dist/common/lib/classBuilder.js +40 -0
- package/dist/common/lib/core.js +117 -0
- package/dist/common/lib/index.js +21 -0
- package/dist/common/lib/types.js +2 -0
- package/dist/common/package.json +3 -0
- package/dist/common/puppeteerConfiger.js +24 -0
- package/dist/common/run.js +62 -0
- package/dist/common/tsconfig.common.tsbuildinfo +1 -0
- package/dist/common/utils.js +43 -0
- package/dist/common/web.html.js +22 -0
- package/dist/module/Footer.js +4 -0
- package/dist/module/Init.js +63 -0
- package/dist/module/Node.js +20 -0
- package/dist/module/PM/index.js +3 -0
- package/dist/module/PM/main.js +1136 -0
- package/dist/module/PM/node.js +121 -0
- package/dist/module/PM/web.js +117 -0
- package/dist/module/ReportClient.js +97 -0
- package/dist/module/ReportServer.js +17 -0
- package/dist/module/SubPackages/react/component/node.js +14 -0
- package/dist/module/SubPackages/react/component/web.js +14 -0
- package/dist/module/SubPackages/react/jsx/index.js +15 -0
- package/dist/module/SubPackages/react/jsx/node.js +5 -0
- package/dist/module/SubPackages/react/jsx/web.js +5 -0
- package/dist/module/SubPackages/react-dom/component/node.js +80 -0
- package/dist/module/SubPackages/react-dom/component/web.js +62 -0
- package/dist/module/SubPackages/react-dom/jsx/index.js +1 -0
- package/dist/module/SubPackages/react-dom/jsx/node.js +31 -0
- package/dist/module/SubPackages/react-dom/jsx/web.js +90 -0
- package/dist/module/SubPackages/react-test-renderer/MemoExoticComponent/node.js +16 -0
- package/dist/module/SubPackages/react-test-renderer/component/index.js +1 -0
- package/dist/module/SubPackages/react-test-renderer/component/interface.js +31 -0
- package/dist/module/SubPackages/react-test-renderer/component/node.js +3 -0
- package/dist/module/SubPackages/react-test-renderer/component/web.js +3 -0
- package/dist/module/SubPackages/react-test-renderer/fc/node.js +22 -0
- package/dist/module/SubPackages/react-test-renderer/fc/web.js +22 -0
- package/dist/module/SubPackages/react-test-renderer/jsx/index.js +28 -0
- package/dist/module/SubPackages/react-test-renderer/jsx/node.js +5 -0
- package/dist/module/SubPackages/react-test-renderer/jsx/web.js +5 -0
- package/dist/module/SubPackages/react-test-renderer/jsx-promised/index.js +16 -0
- package/dist/module/SubPackages/react-test-renderer/jsx-promised/node.js +5 -0
- package/dist/module/SubPackages/react-test-renderer/jsx-promised/web.js +5 -0
- package/dist/module/TestReport.js +91 -0
- package/dist/module/Types.js +1 -0
- package/dist/module/Web.js +42 -0
- package/dist/module/build.js +184 -0
- package/dist/module/defaultConfig.js +18 -0
- package/dist/module/esbuildConfigs/eslint-formatter-testeranto.js +3 -0
- package/dist/module/esbuildConfigs/featuresPlugin.js +34 -0
- package/dist/module/esbuildConfigs/index.js +19 -0
- package/dist/module/esbuildConfigs/inputFilesPlugin.js +22 -0
- package/dist/module/esbuildConfigs/node.js +32 -0
- package/dist/module/esbuildConfigs/web.js +45 -0
- package/dist/module/init-docs.js +15 -0
- package/dist/module/lib/abstractBase.js +321 -0
- package/dist/module/lib/basebuilder.js +94 -0
- package/dist/module/lib/classBuilder.js +36 -0
- package/dist/module/lib/core.js +114 -0
- package/dist/module/lib/index.js +17 -0
- package/dist/module/lib/types.js +1 -0
- package/dist/module/package.json +3 -0
- package/dist/module/puppeteerConfiger.js +19 -0
- package/dist/module/run.js +24 -0
- package/dist/module/tsconfig.module.tsbuildinfo +1 -0
- package/dist/module/utils.js +29 -0
- package/dist/module/web.html.js +20 -0
- package/dist/prebuild/ReportClient.css +11367 -0
- package/dist/prebuild/ReportClient.js +24641 -0
- package/dist/prebuild/ReportServer.mjs +16 -0
- package/dist/prebuild/TestReport.css +11367 -0
- package/dist/prebuild/TestReport.js +27484 -0
- package/dist/prebuild/build.mjs +376 -0
- package/dist/prebuild/esbuildConfigs/eslint-formatter-testeranto.mjs +9 -0
- package/dist/prebuild/init-docs.mjs +104 -0
- package/dist/prebuild/run.mjs +1153 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/dist/types/Init.d.ts +2 -0
- package/dist/types/Node.d.ts +12 -0
- package/dist/types/PM/index.d.ts +34 -0
- package/dist/types/PM/main.d.ts +66 -0
- package/dist/types/PM/node.d.ts +40 -0
- package/dist/types/PM/web.d.ts +38 -0
- package/dist/types/ReportServer.d.ts +1 -0
- package/dist/types/SubPackages/react/component/node.d.ts +7 -0
- package/dist/types/SubPackages/react/component/web.d.ts +7 -0
- package/dist/types/SubPackages/react/jsx/index.d.ts +12 -0
- package/dist/types/SubPackages/react/jsx/node.d.ts +4 -0
- package/dist/types/SubPackages/react/jsx/web.d.ts +4 -0
- package/dist/types/SubPackages/react-dom/component/node.d.ts +11 -0
- package/dist/types/SubPackages/react-dom/component/web.d.ts +20 -0
- package/dist/types/SubPackages/react-dom/jsx/index.d.ts +6 -0
- package/dist/types/SubPackages/react-dom/jsx/node.d.ts +7 -0
- package/dist/types/SubPackages/react-dom/jsx/web.d.ts +5 -0
- package/dist/types/SubPackages/react-test-renderer/MemoExoticComponent/node.d.ts +6 -0
- package/dist/types/SubPackages/react-test-renderer/component/index.d.ts +13 -0
- package/dist/types/SubPackages/react-test-renderer/component/interface.d.ts +9 -0
- package/dist/types/SubPackages/react-test-renderer/component/node.d.ts +4 -0
- package/dist/types/SubPackages/react-test-renderer/component/web.d.ts +4 -0
- package/dist/types/SubPackages/react-test-renderer/fc/node.d.ts +8 -0
- package/dist/types/SubPackages/react-test-renderer/fc/web.d.ts +9 -0
- package/dist/types/SubPackages/react-test-renderer/jsx/index.d.ts +16 -0
- package/dist/types/SubPackages/react-test-renderer/jsx/node.d.ts +9 -0
- package/dist/types/SubPackages/react-test-renderer/jsx/web.d.ts +9 -0
- package/dist/types/SubPackages/react-test-renderer/jsx-promised/index.d.ts +15 -0
- package/dist/types/SubPackages/react-test-renderer/jsx-promised/node.d.ts +5 -0
- package/dist/types/SubPackages/react-test-renderer/jsx-promised/web.d.ts +5 -0
- package/dist/types/Types.d.ts +61 -0
- package/dist/types/Web.d.ts +9 -0
- package/dist/types/build.d.ts +1 -0
- package/dist/types/defaultConfig.d.ts +3 -0
- package/dist/types/esbuildConfigs/eslint-formatter-testeranto.d.ts +2 -0
- package/dist/types/esbuildConfigs/featuresPlugin.d.ts +5 -0
- package/dist/types/esbuildConfigs/index.d.ts +4 -0
- package/dist/types/esbuildConfigs/inputFilesPlugin.d.ts +6 -0
- package/dist/types/esbuildConfigs/node.d.ts +4 -0
- package/dist/types/esbuildConfigs/web.d.ts +4 -0
- package/dist/types/init-docs.d.ts +1 -0
- package/dist/types/lib/abstractBase.d.ts +110 -0
- package/dist/types/lib/basebuilder.d.ts +27 -0
- package/dist/types/lib/classBuilder.d.ts +7 -0
- package/dist/types/lib/core.d.ts +7 -0
- package/dist/types/lib/index.d.ts +83 -0
- package/dist/types/lib/types.d.ts +14 -0
- package/dist/types/puppeteerConfiger.d.ts +4 -0
- package/dist/types/run.d.ts +1 -0
- package/dist/types/tsconfig.types.tsbuildinfo +1 -0
- package/dist/types/utils.d.ts +15 -0
- package/dist/types/web.html.d.ts +2 -0
- package/package.json +1 -1
- package/src/PM/main.ts +25 -57
- package/src/ReportClient.tsx +43 -41
- package/src/run.ts +8 -5
- package/src/utils.ts +10 -0
- package/tsc.log +8 -8
package/src/ReportClient.tsx
CHANGED
|
@@ -7,6 +7,7 @@ import "./style.css"
|
|
|
7
7
|
import { IRunTime, ITestTypes, IBuiltConfig } from "./lib";
|
|
8
8
|
import { Footer } from "./Footer";
|
|
9
9
|
import { Table } from "react-bootstrap";
|
|
10
|
+
import { ISummary } from "./utils";
|
|
10
11
|
|
|
11
12
|
|
|
12
13
|
type ICollation = {
|
|
@@ -16,10 +17,10 @@ type ICollation = {
|
|
|
16
17
|
ports: number;
|
|
17
18
|
};
|
|
18
19
|
sidecars: ITestTypes[];
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
staticAnalysis: number | "?";
|
|
21
|
+
typeErrors: number | "?";
|
|
22
|
+
bddErrors: number | "?";
|
|
23
|
+
prompt: string | "?";
|
|
23
24
|
};
|
|
24
25
|
|
|
25
26
|
type ICollations = ICollation[];
|
|
@@ -39,10 +40,10 @@ const BigBoard = () => {
|
|
|
39
40
|
})();
|
|
40
41
|
}, []);
|
|
41
42
|
|
|
42
|
-
const [bigBoard, setBigBoard] = useState<Record<string,
|
|
43
|
+
const [bigBoard, setBigBoard] = useState<Record<string, ISummary>>({});
|
|
43
44
|
useEffect(() => {
|
|
44
45
|
(async () => {
|
|
45
|
-
fetch('/kokomoBay/docs/
|
|
46
|
+
fetch('/kokomoBay/docs/summary.json')
|
|
46
47
|
.then(response => response.json())
|
|
47
48
|
.then(json => {
|
|
48
49
|
setBigBoard(json)
|
|
@@ -52,49 +53,49 @@ const BigBoard = () => {
|
|
|
52
53
|
})();
|
|
53
54
|
}, []);
|
|
54
55
|
|
|
55
|
-
const [staticAnalysis, setStaticAnalysis] = useState<Record<string, string>>({});
|
|
56
|
-
useEffect(() => {
|
|
57
|
-
|
|
56
|
+
// const [staticAnalysis, setStaticAnalysis] = useState<Record<string, string>>({});
|
|
57
|
+
// useEffect(() => {
|
|
58
|
+
// (async () => {
|
|
58
59
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
60
|
+
// let accumulator = {};
|
|
61
|
+
// for (const t of (configs || { tests: [] as ITestTypes[] }).tests) {
|
|
62
|
+
// accumulator[t[0]] = await (await fetch(`/kokomoBay/docs/${t[1]}/${t[0].split(".").slice(0, -1).join(".")}/lint_errors.txt`)).text()
|
|
63
|
+
// }
|
|
64
|
+
// setStaticAnalysis(accumulator);
|
|
64
65
|
|
|
65
66
|
|
|
66
|
-
|
|
67
|
-
}, [configs, bigBoard]);
|
|
67
|
+
// })();
|
|
68
|
+
// }, [configs, bigBoard]);
|
|
68
69
|
|
|
69
|
-
const [typeErrors, setTypeErrors] = useState<Record<string, string>>({});
|
|
70
|
-
useEffect(() => {
|
|
71
|
-
|
|
70
|
+
// const [typeErrors, setTypeErrors] = useState<Record<string, string>>({});
|
|
71
|
+
// useEffect(() => {
|
|
72
|
+
// (async () => {
|
|
72
73
|
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
74
|
+
// let accumulator = {};
|
|
75
|
+
// for (const t of (configs || { tests: [] as ITestTypes[] }).tests) {
|
|
76
|
+
// accumulator[t[0]] = await (await fetch(`/kokomoBay/docs/${t[1]}/${t[0].split(".").slice(0, -1).join(".")}/type_errors.txt`)).text()
|
|
77
|
+
// }
|
|
78
|
+
// setTypeErrors(accumulator);
|
|
78
79
|
|
|
79
80
|
|
|
80
|
-
|
|
81
|
-
}, [configs, bigBoard]);
|
|
81
|
+
// })();
|
|
82
|
+
// }, [configs, bigBoard]);
|
|
82
83
|
|
|
83
|
-
const [bddErrors, setBddErrors] = useState<Record<string, string>>({});
|
|
84
|
-
useEffect(() => {
|
|
85
|
-
|
|
84
|
+
// const [bddErrors, setBddErrors] = useState<Record<string, string>>({});
|
|
85
|
+
// useEffect(() => {
|
|
86
|
+
// (async () => {
|
|
86
87
|
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
88
|
+
// let accumulator = {};
|
|
89
|
+
// for (const t of (configs || { tests: [] as ITestTypes[] }).tests) {
|
|
90
|
+
// accumulator[t[0]] = await (await fetch(`/kokomoBay/docs/${t[1]}/${t[0].split(".").slice(0, -1).join(".")}/bdd_errors.txt`)).text()
|
|
91
|
+
// }
|
|
92
|
+
// setBddErrors(accumulator);
|
|
92
93
|
|
|
93
94
|
|
|
94
|
-
|
|
95
|
-
}, [configs, bigBoard]);
|
|
95
|
+
// })();
|
|
96
|
+
// }, [configs, bigBoard]);
|
|
96
97
|
|
|
97
|
-
if (!configs
|
|
98
|
+
if (!configs) {
|
|
98
99
|
return <div>loading...</div>
|
|
99
100
|
}
|
|
100
101
|
|
|
@@ -105,9 +106,10 @@ const BigBoard = () => {
|
|
|
105
106
|
runTime: c[1],
|
|
106
107
|
tr: c[2],
|
|
107
108
|
sidecars: c[3],
|
|
108
|
-
staticAnalysis:
|
|
109
|
-
typeErrors:
|
|
110
|
-
bddErrors:
|
|
109
|
+
staticAnalysis: bigBoard[c[0]].staticErrors,
|
|
110
|
+
typeErrors: bigBoard[c[0]].typeErrors,
|
|
111
|
+
bddErrors: bigBoard[c[0]].runTimeError,
|
|
112
|
+
prompt: bigBoard[c[0]].prompt
|
|
111
113
|
} as ICollation
|
|
112
114
|
});
|
|
113
115
|
|
|
@@ -138,7 +140,7 @@ const BigBoard = () => {
|
|
|
138
140
|
|
|
139
141
|
<td>
|
|
140
142
|
<pre>
|
|
141
|
-
|
|
143
|
+
{c.prompt}
|
|
142
144
|
</pre>
|
|
143
145
|
</td>
|
|
144
146
|
|
package/src/run.ts
CHANGED
|
@@ -4,11 +4,10 @@ import readline from "readline";
|
|
|
4
4
|
import { PM_Main } from "./PM/main";
|
|
5
5
|
import { IBaseConfig, IBuiltConfig } from "./lib";
|
|
6
6
|
|
|
7
|
-
console.log(ansiC.inverse("Press 'x' to shutdown forcefully."));
|
|
8
|
-
|
|
9
7
|
readline.emitKeypressEvents(process.stdin);
|
|
10
8
|
if (process.stdin.isTTY) process.stdin.setRawMode(true);
|
|
11
9
|
|
|
10
|
+
console.log(ansiC.inverse("Press 'x' to shutdown forcefully."));
|
|
12
11
|
process.stdin.on("keypress", (str, key) => {
|
|
13
12
|
if (key.name === "x") {
|
|
14
13
|
console.log(ansiC.inverse("Shutting down forcefully..."));
|
|
@@ -24,8 +23,12 @@ import(process.cwd() + "/" + process.argv[2]).then(async (module) => {
|
|
|
24
23
|
buildDir: process.cwd() + "/" + rawConfig.outdir,
|
|
25
24
|
};
|
|
26
25
|
|
|
27
|
-
|
|
28
|
-
// const fileHashes = {};
|
|
29
|
-
let pm: PM_Main | undefined = new PM_Main(config);
|
|
26
|
+
const pm = new PM_Main(config);
|
|
30
27
|
pm.start();
|
|
28
|
+
|
|
29
|
+
process.stdin.on("keypress", (str, key) => {
|
|
30
|
+
if (key.name === "q") {
|
|
31
|
+
pm.stop();
|
|
32
|
+
}
|
|
33
|
+
});
|
|
31
34
|
});
|
package/src/utils.ts
CHANGED
|
@@ -2,6 +2,16 @@ import path from "path";
|
|
|
2
2
|
|
|
3
3
|
import { IRunTime, IBuiltConfig } from "./lib";
|
|
4
4
|
|
|
5
|
+
export type ISummary = Record<
|
|
6
|
+
string,
|
|
7
|
+
{
|
|
8
|
+
runTimeError?: number | "?";
|
|
9
|
+
typeErrors?: number | "?";
|
|
10
|
+
staticErrors?: number | "?";
|
|
11
|
+
prompt?: string | "?";
|
|
12
|
+
}
|
|
13
|
+
>;
|
|
14
|
+
|
|
5
15
|
export const destinationOfRuntime = (
|
|
6
16
|
f: string,
|
|
7
17
|
r: IRunTime,
|
package/tsc.log
CHANGED
|
@@ -14,17 +14,17 @@ src/Node.ts(58,56): error TS2345: Argument of type 'PM_Node' is not assignable t
|
|
|
14
14
|
Types of parameters 'cdpPage' and 'page' are incompatible.
|
|
15
15
|
Type 'string | undefined' is not assignable to type 'CdpPage'.
|
|
16
16
|
Type 'undefined' is not assignable to type 'CdpPage'.
|
|
17
|
-
src/PM/main.ts(
|
|
18
|
-
src/PM/main.ts(
|
|
19
|
-
src/PM/main.ts(
|
|
20
|
-
src/PM/main.ts(
|
|
17
|
+
src/PM/main.ts(272,24): error TS18048: 'page' is possibly 'undefined'.
|
|
18
|
+
src/PM/main.ts(303,9): error TS2322: Type 'string' is not assignable to type '`${string}.webm`'.
|
|
19
|
+
src/PM/main.ts(306,17): error TS2538: Type 'undefined' cannot be used as an index type.
|
|
20
|
+
src/PM/main.ts(341,3): error TS2416: Property 'customScreenShot' in type 'PM_Main' is not assignable to the same property in base type 'PM'.
|
|
21
21
|
Type '(opts: object, cdpPage?: CdpPage | undefined) => void' is not assignable to type '(opts: object, page?: string | undefined) => any'.
|
|
22
22
|
Types of parameters 'cdpPage' and 'page' are incompatible.
|
|
23
23
|
Type 'string | undefined' is not assignable to type 'CdpPage | undefined'.
|
|
24
24
|
Type 'string' is not assignable to type 'CdpPage'.
|
|
25
|
-
src/PM/main.ts(
|
|
26
|
-
src/PM/main.ts(
|
|
27
|
-
src/PM/main.ts(
|
|
25
|
+
src/PM/main.ts(772,24): error TS2339: Property 'status' does not exist on type '{ runTimeError?: number | "?" | undefined; typeErrors?: number | "?" | undefined; staticErrors?: number | "?" | undefined; prompt?: string | undefined; }'.
|
|
26
|
+
src/PM/main.ts(776,24): error TS2339: Property 'status' does not exist on type '{ runTimeError?: number | "?" | undefined; typeErrors?: number | "?" | undefined; staticErrors?: number | "?" | undefined; prompt?: string | undefined; }'.
|
|
27
|
+
src/PM/main.ts(1035,15): error TS2345: Argument of type 'Page' is not assignable to parameter of type 'Page | PromiseLike<Page>'.
|
|
28
28
|
Type 'import("/Users/adam/Code/testeranto/node_modules/puppeteer-core/lib/types").Page' is not assignable to type 'import("/Users/adam/Code/testeranto/node_modules/puppeteer-core/lib/esm/puppeteer/api/Page").Page'.
|
|
29
29
|
Property '#private' in type 'Page' refers to a different member that cannot be accessed from within type 'Page'.
|
|
30
30
|
src/PM/node.ts(88,3): error TS2416: Property 'customScreenShot' in type 'PM_Node' is not assignable to the same property in base type 'PM'.
|
|
@@ -32,7 +32,7 @@ src/PM/node.ts(88,3): error TS2416: Property 'customScreenShot' in type 'PM_Node
|
|
|
32
32
|
Types of parameters 'cdpPage' and 'page' are incompatible.
|
|
33
33
|
Type 'string | undefined' is not assignable to type 'CdpPage'.
|
|
34
34
|
Type 'undefined' is not assignable to type 'CdpPage'.
|
|
35
|
-
src/ReportClient.tsx(
|
|
35
|
+
src/ReportClient.tsx(161,38): error TS2345: Argument of type 'FunctionComponentElement<{}>' is not assignable to parameter of type 'ReactNode'.
|
|
36
36
|
Property 'children' is missing in type 'FunctionComponentElement<{}>' but required in type 'ReactPortal'.
|
|
37
37
|
src/SubPackages/react-dom/component/web.ts(90,13): error TS2345: Argument of type 'CElement<any, TesterantoComponent>' is not assignable to parameter of type 'ReactNode'.
|
|
38
38
|
Property 'children' is missing in type 'ComponentElement<any, TesterantoComponent>' but required in type 'ReactPortal'.
|