testeranto 0.111.0 → 0.112.1

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.
Files changed (178) hide show
  1. package/README.md +6 -5
  2. package/dist/common/Init.js +68 -0
  3. package/dist/common/Node.js +27 -0
  4. package/dist/common/PM/index.js +7 -0
  5. package/dist/common/PM/main.js +1176 -0
  6. package/dist/common/PM/node.js +128 -0
  7. package/dist/common/PM/web.js +121 -0
  8. package/dist/common/ReportServer.js +22 -0
  9. package/dist/common/SubPackages/react/component/node.js +19 -0
  10. package/dist/common/SubPackages/react/component/web.js +19 -0
  11. package/dist/common/SubPackages/react/jsx/index.js +21 -0
  12. package/dist/common/SubPackages/react/jsx/node.js +10 -0
  13. package/dist/common/SubPackages/react/jsx/web.js +10 -0
  14. package/dist/common/SubPackages/react-dom/component/node.js +88 -0
  15. package/dist/common/SubPackages/react-dom/component/web.js +67 -0
  16. package/dist/common/SubPackages/react-dom/jsx/index.js +2 -0
  17. package/dist/common/SubPackages/react-dom/jsx/node.js +39 -0
  18. package/dist/common/SubPackages/react-dom/jsx/web.js +128 -0
  19. package/dist/common/SubPackages/react-test-renderer/MemoExoticComponent/node.js +54 -0
  20. package/dist/common/SubPackages/react-test-renderer/component/index.js +2 -0
  21. package/dist/common/SubPackages/react-test-renderer/component/interface.js +70 -0
  22. package/dist/common/SubPackages/react-test-renderer/component/node.js +8 -0
  23. package/dist/common/SubPackages/react-test-renderer/component/web.js +8 -0
  24. package/dist/common/SubPackages/react-test-renderer/fc/node.js +60 -0
  25. package/dist/common/SubPackages/react-test-renderer/fc/web.js +60 -0
  26. package/dist/common/SubPackages/react-test-renderer/jsx/index.js +67 -0
  27. package/dist/common/SubPackages/react-test-renderer/jsx/node.js +10 -0
  28. package/dist/common/SubPackages/react-test-renderer/jsx/web.js +10 -0
  29. package/dist/common/SubPackages/react-test-renderer/jsx-promised/index.js +52 -0
  30. package/dist/common/SubPackages/react-test-renderer/jsx-promised/node.js +10 -0
  31. package/dist/common/SubPackages/react-test-renderer/jsx-promised/web.js +10 -0
  32. package/dist/common/Types.js +2 -0
  33. package/dist/common/Web.js +49 -0
  34. package/dist/common/build.js +222 -0
  35. package/dist/common/defaultConfig.js +20 -0
  36. package/dist/common/esbuildConfigs/eslint-formatter-testeranto.js +6 -0
  37. package/dist/common/esbuildConfigs/featuresPlugin.js +39 -0
  38. package/dist/common/esbuildConfigs/index.js +21 -0
  39. package/dist/common/esbuildConfigs/inputFilesPlugin.js +27 -0
  40. package/dist/common/esbuildConfigs/node.js +37 -0
  41. package/dist/common/esbuildConfigs/web.js +50 -0
  42. package/dist/common/init-docs.js +53 -0
  43. package/dist/common/lib/abstractBase.js +329 -0
  44. package/dist/common/lib/basebuilder.js +98 -0
  45. package/dist/common/lib/classBuilder.js +40 -0
  46. package/dist/common/lib/core.js +117 -0
  47. package/dist/common/lib/index.js +21 -0
  48. package/dist/common/lib/types.js +2 -0
  49. package/dist/common/package.json +3 -0
  50. package/dist/common/puppeteerConfiger.js +24 -0
  51. package/dist/common/run.js +62 -0
  52. package/dist/common/tsconfig.common.tsbuildinfo +1 -0
  53. package/dist/common/utils.js +43 -0
  54. package/dist/common/web.html.js +22 -0
  55. package/dist/module/Footer.js +4 -0
  56. package/dist/module/Init.js +63 -0
  57. package/dist/module/Node.js +20 -0
  58. package/dist/module/PM/index.js +3 -0
  59. package/dist/module/PM/main.js +1136 -0
  60. package/dist/module/PM/node.js +121 -0
  61. package/dist/module/PM/web.js +117 -0
  62. package/dist/module/ReportClient.js +97 -0
  63. package/dist/module/ReportServer.js +17 -0
  64. package/dist/module/SubPackages/react/component/node.js +14 -0
  65. package/dist/module/SubPackages/react/component/web.js +14 -0
  66. package/dist/module/SubPackages/react/jsx/index.js +15 -0
  67. package/dist/module/SubPackages/react/jsx/node.js +5 -0
  68. package/dist/module/SubPackages/react/jsx/web.js +5 -0
  69. package/dist/module/SubPackages/react-dom/component/node.js +80 -0
  70. package/dist/module/SubPackages/react-dom/component/web.js +62 -0
  71. package/dist/module/SubPackages/react-dom/jsx/index.js +1 -0
  72. package/dist/module/SubPackages/react-dom/jsx/node.js +31 -0
  73. package/dist/module/SubPackages/react-dom/jsx/web.js +90 -0
  74. package/dist/module/SubPackages/react-test-renderer/MemoExoticComponent/node.js +16 -0
  75. package/dist/module/SubPackages/react-test-renderer/component/index.js +1 -0
  76. package/dist/module/SubPackages/react-test-renderer/component/interface.js +31 -0
  77. package/dist/module/SubPackages/react-test-renderer/component/node.js +3 -0
  78. package/dist/module/SubPackages/react-test-renderer/component/web.js +3 -0
  79. package/dist/module/SubPackages/react-test-renderer/fc/node.js +22 -0
  80. package/dist/module/SubPackages/react-test-renderer/fc/web.js +22 -0
  81. package/dist/module/SubPackages/react-test-renderer/jsx/index.js +28 -0
  82. package/dist/module/SubPackages/react-test-renderer/jsx/node.js +5 -0
  83. package/dist/module/SubPackages/react-test-renderer/jsx/web.js +5 -0
  84. package/dist/module/SubPackages/react-test-renderer/jsx-promised/index.js +16 -0
  85. package/dist/module/SubPackages/react-test-renderer/jsx-promised/node.js +5 -0
  86. package/dist/module/SubPackages/react-test-renderer/jsx-promised/web.js +5 -0
  87. package/dist/module/TestReport.js +91 -0
  88. package/dist/module/Types.js +1 -0
  89. package/dist/module/Web.js +42 -0
  90. package/dist/module/build.js +184 -0
  91. package/dist/module/defaultConfig.js +18 -0
  92. package/dist/module/esbuildConfigs/eslint-formatter-testeranto.js +3 -0
  93. package/dist/module/esbuildConfigs/featuresPlugin.js +34 -0
  94. package/dist/module/esbuildConfigs/index.js +19 -0
  95. package/dist/module/esbuildConfigs/inputFilesPlugin.js +22 -0
  96. package/dist/module/esbuildConfigs/node.js +32 -0
  97. package/dist/module/esbuildConfigs/web.js +45 -0
  98. package/dist/module/init-docs.js +15 -0
  99. package/dist/module/lib/abstractBase.js +321 -0
  100. package/dist/module/lib/basebuilder.js +94 -0
  101. package/dist/module/lib/classBuilder.js +36 -0
  102. package/dist/module/lib/core.js +114 -0
  103. package/dist/module/lib/index.js +17 -0
  104. package/dist/module/lib/types.js +1 -0
  105. package/dist/module/package.json +3 -0
  106. package/dist/module/puppeteerConfiger.js +19 -0
  107. package/dist/module/run.js +24 -0
  108. package/dist/module/tsconfig.module.tsbuildinfo +1 -0
  109. package/dist/module/utils.js +29 -0
  110. package/dist/module/web.html.js +20 -0
  111. package/dist/prebuild/ReportClient.css +11367 -0
  112. package/dist/prebuild/ReportClient.js +24641 -0
  113. package/dist/prebuild/ReportServer.mjs +16 -0
  114. package/dist/prebuild/TestReport.css +11367 -0
  115. package/dist/prebuild/TestReport.js +27484 -0
  116. package/dist/prebuild/build.mjs +376 -0
  117. package/dist/prebuild/esbuildConfigs/eslint-formatter-testeranto.mjs +9 -0
  118. package/dist/prebuild/init-docs.mjs +104 -0
  119. package/dist/prebuild/run.mjs +1153 -0
  120. package/dist/tsconfig.tsbuildinfo +1 -0
  121. package/dist/types/Init.d.ts +2 -0
  122. package/dist/types/Node.d.ts +12 -0
  123. package/dist/types/PM/index.d.ts +34 -0
  124. package/dist/types/PM/main.d.ts +66 -0
  125. package/dist/types/PM/node.d.ts +40 -0
  126. package/dist/types/PM/web.d.ts +38 -0
  127. package/dist/types/ReportServer.d.ts +1 -0
  128. package/dist/types/SubPackages/react/component/node.d.ts +7 -0
  129. package/dist/types/SubPackages/react/component/web.d.ts +7 -0
  130. package/dist/types/SubPackages/react/jsx/index.d.ts +12 -0
  131. package/dist/types/SubPackages/react/jsx/node.d.ts +4 -0
  132. package/dist/types/SubPackages/react/jsx/web.d.ts +4 -0
  133. package/dist/types/SubPackages/react-dom/component/node.d.ts +11 -0
  134. package/dist/types/SubPackages/react-dom/component/web.d.ts +20 -0
  135. package/dist/types/SubPackages/react-dom/jsx/index.d.ts +6 -0
  136. package/dist/types/SubPackages/react-dom/jsx/node.d.ts +7 -0
  137. package/dist/types/SubPackages/react-dom/jsx/web.d.ts +5 -0
  138. package/dist/types/SubPackages/react-test-renderer/MemoExoticComponent/node.d.ts +6 -0
  139. package/dist/types/SubPackages/react-test-renderer/component/index.d.ts +13 -0
  140. package/dist/types/SubPackages/react-test-renderer/component/interface.d.ts +9 -0
  141. package/dist/types/SubPackages/react-test-renderer/component/node.d.ts +4 -0
  142. package/dist/types/SubPackages/react-test-renderer/component/web.d.ts +4 -0
  143. package/dist/types/SubPackages/react-test-renderer/fc/node.d.ts +8 -0
  144. package/dist/types/SubPackages/react-test-renderer/fc/web.d.ts +9 -0
  145. package/dist/types/SubPackages/react-test-renderer/jsx/index.d.ts +16 -0
  146. package/dist/types/SubPackages/react-test-renderer/jsx/node.d.ts +9 -0
  147. package/dist/types/SubPackages/react-test-renderer/jsx/web.d.ts +9 -0
  148. package/dist/types/SubPackages/react-test-renderer/jsx-promised/index.d.ts +15 -0
  149. package/dist/types/SubPackages/react-test-renderer/jsx-promised/node.d.ts +5 -0
  150. package/dist/types/SubPackages/react-test-renderer/jsx-promised/web.d.ts +5 -0
  151. package/dist/types/Types.d.ts +61 -0
  152. package/dist/types/Web.d.ts +9 -0
  153. package/dist/types/build.d.ts +1 -0
  154. package/dist/types/defaultConfig.d.ts +3 -0
  155. package/dist/types/esbuildConfigs/eslint-formatter-testeranto.d.ts +2 -0
  156. package/dist/types/esbuildConfigs/featuresPlugin.d.ts +5 -0
  157. package/dist/types/esbuildConfigs/index.d.ts +4 -0
  158. package/dist/types/esbuildConfigs/inputFilesPlugin.d.ts +6 -0
  159. package/dist/types/esbuildConfigs/node.d.ts +4 -0
  160. package/dist/types/esbuildConfigs/web.d.ts +4 -0
  161. package/dist/types/init-docs.d.ts +1 -0
  162. package/dist/types/lib/abstractBase.d.ts +110 -0
  163. package/dist/types/lib/basebuilder.d.ts +27 -0
  164. package/dist/types/lib/classBuilder.d.ts +7 -0
  165. package/dist/types/lib/core.d.ts +7 -0
  166. package/dist/types/lib/index.d.ts +83 -0
  167. package/dist/types/lib/types.d.ts +14 -0
  168. package/dist/types/puppeteerConfiger.d.ts +4 -0
  169. package/dist/types/run.d.ts +1 -0
  170. package/dist/types/tsconfig.types.tsbuildinfo +1 -0
  171. package/dist/types/utils.d.ts +15 -0
  172. package/dist/types/web.html.d.ts +2 -0
  173. package/package.json +1 -1
  174. package/src/PM/main.ts +25 -57
  175. package/src/ReportClient.tsx +43 -41
  176. package/src/run.ts +8 -5
  177. package/src/utils.ts +10 -0
  178. package/tsc.log +8 -8
@@ -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
- status: string;
20
- staticAnalysis: string;
21
- typeErrors: string;
22
- bddErrors: string;
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, object>>({});
43
+ const [bigBoard, setBigBoard] = useState<Record<string, ISummary>>({});
43
44
  useEffect(() => {
44
45
  (async () => {
45
- fetch('/kokomoBay/docs/bigBoard.json')
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
- (async () => {
56
+ // const [staticAnalysis, setStaticAnalysis] = useState<Record<string, string>>({});
57
+ // useEffect(() => {
58
+ // (async () => {
58
59
 
59
- let accumulator = {};
60
- for (const t of (configs || { tests: [] as ITestTypes[] }).tests) {
61
- accumulator[t[0]] = await (await fetch(`/kokomoBay/docs/${t[1]}/${t[0].split(".").slice(0, -1).join(".")}/lint_errors.txt`)).text()
62
- }
63
- setStaticAnalysis(accumulator);
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
- (async () => {
70
+ // const [typeErrors, setTypeErrors] = useState<Record<string, string>>({});
71
+ // useEffect(() => {
72
+ // (async () => {
72
73
 
73
- let accumulator = {};
74
- for (const t of (configs || { tests: [] as ITestTypes[] }).tests) {
75
- accumulator[t[0]] = await (await fetch(`/kokomoBay/docs/${t[1]}/${t[0].split(".").slice(0, -1).join(".")}/type_errors.txt`)).text()
76
- }
77
- setTypeErrors(accumulator);
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
- (async () => {
84
+ // const [bddErrors, setBddErrors] = useState<Record<string, string>>({});
85
+ // useEffect(() => {
86
+ // (async () => {
86
87
 
87
- let accumulator = {};
88
- for (const t of (configs || { tests: [] as ITestTypes[] }).tests) {
89
- accumulator[t[0]] = await (await fetch(`/kokomoBay/docs/${t[1]}/${t[0].split(".").slice(0, -1).join(".")}/bdd_errors.txt`)).text()
90
- }
91
- setBddErrors(accumulator);
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 || !staticAnalysis || !typeErrors || !bddErrors) {
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: staticAnalysis[c[0]],
109
- typeErrors: typeErrors[c[0]],
110
- bddErrors: bddErrors[c[0]],
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
- aider --model deepseek/deepseek-chat --load {`docs/${c.runTime}/${c.name.split(".").slice(0, -1).join(".")}/prompt.txt`}
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
- // let mode = config.devMode ? "DEV" : "PROD";
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(292,24): error TS18048: 'page' is possibly 'undefined'.
18
- src/PM/main.ts(323,9): error TS2322: Type 'string' is not assignable to type '`${string}.webm`'.
19
- src/PM/main.ts(326,17): error TS2538: Type 'undefined' cannot be used as an index type.
20
- src/PM/main.ts(363,3): error TS2416: Property 'customScreenShot' in type 'PM_Main' is not assignable to the same property in base type 'PM'.
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(800,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(804,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(1063,15): error TS2345: Argument of type 'Page' is not assignable to parameter of type 'Page | PromiseLike<Page>'.
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(159,38): error TS2345: Argument of type 'FunctionComponentElement<{}>' is not assignable to parameter of type 'ReactNode'.
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'.