testeranto 0.135.0 → 0.140.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.
Files changed (187) hide show
  1. package/.aider.chat.history.md +13976 -0
  2. package/.aider.input.history +530 -0
  3. package/.aider.tags.cache.v3/{d8/b0/a8966fcd65890fd9f70d7afe8141.val → bd/91/b71f967fd074cf4b757081b429b7.val} +0 -0
  4. package/.aider.tags.cache.v3/cache.db +0 -0
  5. package/.aider.tags.cache.v3/{8e/ec/2d4659a1589a0187a757ab1cbefa.val → fb/96/b0f91c7e75e08fc5a6907633cf99.val} +0 -0
  6. package/README.md +28 -135
  7. package/bundle.js +1 -1
  8. package/dist/common/src/Init.js +4 -1
  9. package/dist/common/src/Node.js +1 -1
  10. package/dist/common/src/PM/__tests__/nodeSidecar.testeranto.js +2 -2
  11. package/dist/common/src/Web.js +2 -2
  12. package/dist/common/src/build.js +7 -73
  13. package/dist/common/src/defaultConfig.js +0 -1
  14. package/dist/common/src/lib/abstractBase.js +2 -0
  15. package/dist/common/src/lib/basebuilder.js +4 -0
  16. package/dist/common/src/lib/core.js +2 -0
  17. package/dist/common/src/run.js +1 -1
  18. package/dist/common/src/utils/buildTemplates.js +88 -0
  19. package/dist/common/tsconfig.common.tsbuildinfo +1 -1
  20. package/dist/module/src/Init.js +4 -1
  21. package/dist/module/src/Node.js +1 -1
  22. package/dist/module/src/PM/__tests__/nodeSidecar.testeranto.js +2 -2
  23. package/dist/module/src/Project.js +41 -47
  24. package/dist/module/src/TestReport.js +34 -31
  25. package/dist/module/src/Web.js +2 -2
  26. package/dist/module/src/build.js +7 -73
  27. package/dist/module/src/defaultConfig.js +0 -1
  28. package/dist/module/src/lib/abstractBase.js +2 -0
  29. package/dist/module/src/lib/basebuilder.js +4 -0
  30. package/dist/module/src/lib/core.js +2 -0
  31. package/dist/module/src/run.js +1 -1
  32. package/dist/module/src/utils/buildTemplates.js +82 -0
  33. package/dist/module/tsconfig.module.tsbuildinfo +1 -1
  34. package/dist/prebuild/Project.js +62 -13
  35. package/dist/prebuild/TestReport.js +39 -18
  36. package/dist/prebuild/build.mjs +96 -73
  37. package/dist/prebuild/init-docs.mjs +0 -4
  38. package/dist/tsconfig.tsbuildinfo +1 -0
  39. package/dist/types/src/CoreTypes.d.ts +5 -3
  40. package/dist/types/src/Node.d.ts +3 -3
  41. package/dist/types/src/PM/__tests__/nodeSidecar.testeranto.d.ts +17 -1
  42. package/dist/types/src/PM/__tests__/pureSidecar.testeranto.d.ts +17 -1
  43. package/dist/types/src/PM/__tests__/webSidecar.testeranto.d.ts +17 -1
  44. package/dist/types/src/PM/nodeSidecar.d.ts +2 -2
  45. package/dist/types/src/Pure.d.ts +3 -3
  46. package/dist/types/src/Types.d.ts +18 -14
  47. package/dist/types/src/Web.d.ts +3 -3
  48. package/dist/types/src/lib/abstractBase.d.ts +8 -8
  49. package/dist/types/src/lib/basebuilder.d.ts +3 -3
  50. package/dist/types/src/lib/classBuilder.d.ts +2 -2
  51. package/dist/types/src/lib/core.d.ts +2 -2
  52. package/dist/types/src/lib/index.d.ts +7 -6
  53. package/dist/types/src/lib/types.d.ts +8 -8
  54. package/dist/types/src/mothership/test.d.ts +20 -1
  55. package/dist/types/src/utils/buildTemplates.d.ts +3 -0
  56. package/dist/types/tsconfig.types.tsbuildinfo +1 -1
  57. package/docs/index.md +344 -54
  58. package/docs/style.md +116 -0
  59. package/docs.html +537 -0
  60. package/example.css +351 -0
  61. package/fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Black.ttf +0 -0
  62. package/fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Bold.ttf +0 -0
  63. package/fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-ExtraBold.ttf +0 -0
  64. package/fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Light.ttf +0 -0
  65. package/fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Medium.ttf +0 -0
  66. package/fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Regular.ttf +0 -0
  67. package/fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Thin.ttf +0 -0
  68. package/fonts/M_PLUS_Rounded_1c/OFL.txt +91 -0
  69. package/index.html +245 -24
  70. package/logo.svg +72 -0
  71. package/package.json +6 -2
  72. package/scripts/compile-docs.js +89 -0
  73. package/src/CoreTypes.ts +24 -43
  74. package/src/Init.ts +4 -4
  75. package/src/Node.ts +6 -20
  76. package/src/PM/__tests__/nodeSidecar.testeranto.ts +13 -20
  77. package/src/PM/__tests__/pureSidecar.testeranto.ts +8 -15
  78. package/src/PM/__tests__/webSidecar.testeranto.ts +8 -15
  79. package/src/PM/nodeSidecar.ts +2 -2
  80. package/src/PM/pure.ts +0 -4
  81. package/src/Project.tsx +289 -292
  82. package/src/Pure.ts +13 -14
  83. package/src/PureSidecar.ts +1 -0
  84. package/src/TestReport.tsx +179 -165
  85. package/src/Types.ts +29 -144
  86. package/src/Web.ts +15 -11
  87. package/src/build.ts +22 -73
  88. package/src/defaultConfig.ts +2 -1
  89. package/src/lib/BaseSuite.test.ts +457 -0
  90. package/src/lib/BaseSuite.ts +155 -0
  91. package/src/lib/abstractBase.ts +7 -162
  92. package/src/lib/basebuilder.ts +11 -11
  93. package/src/lib/classBuilder.ts +8 -3
  94. package/src/lib/core.ts +12 -12
  95. package/src/lib/index.ts +21 -24
  96. package/src/lib/types.ts +23 -9
  97. package/src/mothership/test.ts +13 -10
  98. package/src/run.ts +1 -1
  99. package/src/style.css +1 -1
  100. package/src/utils/buildTemplates.ts +88 -0
  101. package/style.css +496 -0
  102. package/testeranto/bundles/node/{mothership/chunk-V2EQEXU2.mjs → allTests/chunk-4PJCC2XT.mjs} +66 -59
  103. package/testeranto/bundles/node/allTests/metafile.json +4151 -0
  104. package/testeranto/bundles/node/allTests/src/PM/__tests__/nodeSidecar.testeranto.mjs +187 -0
  105. package/testeranto/bundles/node/{mothership → allTests}/src/PM/__tests__/pureSidecar.testeranto.mjs +1 -1
  106. package/testeranto/bundles/node/{mothership → allTests}/src/PM/__tests__/webSidecar.testeranto.mjs +1 -1
  107. package/testeranto/bundles/node/allTests/src/lib/BaseSuite.test.mjs +305 -0
  108. package/testeranto/bundles/node/{mothership → allTests}/src/mothership/test.mjs +1 -1
  109. package/testeranto/dev.html +29 -0
  110. package/testeranto/index.html +28 -27
  111. package/testeranto/reports/allTests/config.json +57 -0
  112. package/testeranto/reports/{mothership/index.html → allTests/dev.html} +2 -0
  113. package/testeranto/reports/allTests/index.html +26 -0
  114. package/testeranto/reports/{mothership/src/PM/__tests__/sidecar.testeranto/node/index.html → allTests/src/PM/__tests__/nodeSidecar.testeranto/node/dev.html} +4 -3
  115. package/testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/index.html +21 -0
  116. package/testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/lint_errors.json +80 -0
  117. package/testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/message +1 -0
  118. package/testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/prompt.txt +8 -0
  119. package/testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/type_errors.txt +28 -0
  120. package/testeranto/reports/{mothership/src/PM/__tests__/webSidecar.testeranto/node/index.html → allTests/src/PM/__tests__/pureSidecar.testeranto/node/dev.html} +4 -3
  121. package/testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/index.html +21 -0
  122. package/testeranto/reports/{mothership → allTests}/src/PM/__tests__/pureSidecar.testeranto/node/lint_errors.json +12 -12
  123. package/testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/message +1 -0
  124. package/testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/prompt.txt +8 -0
  125. package/testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/type_errors.txt +32 -0
  126. package/testeranto/reports/{mothership/src/PM/__tests__/nodeSidecar.testeranto/node/index.html → allTests/src/PM/__tests__/webSidecar.testeranto/node/dev.html} +4 -3
  127. package/testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/index.html +21 -0
  128. package/testeranto/reports/{mothership → allTests}/src/PM/__tests__/webSidecar.testeranto/node/lint_errors.json +12 -12
  129. package/testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/message +1 -0
  130. package/testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/prompt.txt +8 -0
  131. package/testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/type_errors.txt +32 -0
  132. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node/console_log.txt +35 -0
  133. package/testeranto/reports/{mothership/src/PM/__tests__/pureSidecar.testeranto/node/index.html → allTests/src/lib/BaseSuite.test/node/dev.html} +4 -3
  134. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node/index.html +21 -0
  135. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node/lint_errors.json +608 -0
  136. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node/message +1 -0
  137. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node/prompt.txt +7 -0
  138. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node/type_errors.txt +68 -0
  139. package/testeranto/reports/allTests/src/mothership/test/node/dev.html +21 -0
  140. package/testeranto/reports/allTests/src/mothership/test/node/index.html +21 -0
  141. package/testeranto/reports/allTests/src/mothership/test/node/message +1 -0
  142. package/testeranto/reports/allTests/src/mothership/test/node/prompt.txt +8 -0
  143. package/testeranto/reports/allTests/src/mothership/test/node/type_errors.txt +24 -0
  144. package/testeranto/reports/allTests/summary.json +37 -0
  145. package/testeranto.config.ts +16 -26
  146. package/tsc.log +66 -69
  147. package/dist/common/src/SP__Polygon.test.js +0 -10
  148. package/dist/module/src/ReportClient.js +0 -132
  149. package/dist/module/src/SP__Polygon.test.js +0 -8
  150. package/dist/prebuild/ReportClient.js +0 -3
  151. package/dist/types/src/SP__Polygon.test.d.ts +0 -1
  152. package/src/ReportClient.tsx +0 -164
  153. package/src/SP__Polygon.test.ts +0 -13
  154. package/testeranto/ReportClient.css +0 -11367
  155. package/testeranto/ReportClient.js +0 -24641
  156. package/testeranto/bundles/node/mothership/metafile.json +0 -389
  157. package/testeranto/bundles/node/mothership/src/PM/__tests__/nodeSidecar.testeranto.mjs +0 -1219
  158. package/testeranto/bundles/node/mothership/src/PM/__tests__/sidecar.testeranto.mjs +0 -1199
  159. package/testeranto/reports/mothership/config.json +0 -25
  160. package/testeranto/reports/mothership/src/PM/__tests__/nodeSidecar.testeranto/node/console_log.txt +0 -0
  161. package/testeranto/reports/mothership/src/PM/__tests__/nodeSidecar.testeranto/node/lint_errors.json +0 -1564
  162. package/testeranto/reports/mothership/src/PM/__tests__/nodeSidecar.testeranto/node/prompt.txt +0 -22
  163. package/testeranto/reports/mothership/src/PM/__tests__/nodeSidecar.testeranto/node/type_errors.txt +0 -35
  164. package/testeranto/reports/mothership/src/PM/__tests__/pureSidecar.testeranto/node/prompt.txt +0 -12
  165. package/testeranto/reports/mothership/src/PM/__tests__/pureSidecar.testeranto/node/type_errors.txt +0 -26
  166. package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/bdd_errors.txt +0 -1
  167. package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/console_log.txt +0 -0
  168. package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/lint_errors.json +0 -1564
  169. package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/log.txt +0 -0
  170. package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/prompt.txt +0 -22
  171. package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/tests.json +0 -56
  172. package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/type_errors.txt +0 -29
  173. package/testeranto/reports/mothership/src/PM/__tests__/webSidecar.testeranto/node/prompt.txt +0 -12
  174. package/testeranto/reports/mothership/src/PM/__tests__/webSidecar.testeranto/node/type_errors.txt +0 -26
  175. package/testeranto/reports/mothership/src/mothership/test/node/bdd_errors.txt +0 -1
  176. package/testeranto/reports/mothership/src/mothership/test/node/console_log.txt +0 -4
  177. package/testeranto/reports/mothership/src/mothership/test/node/index.html +0 -20
  178. package/testeranto/reports/mothership/src/mothership/test/node/log.txt +0 -0
  179. package/testeranto/reports/mothership/src/mothership/test/node/prompt.txt +0 -12
  180. package/testeranto/reports/mothership/src/mothership/test/node/tests.json +0 -24
  181. package/testeranto/reports/mothership/src/mothership/test/node/type_errors.txt +0 -18
  182. package/testeranto/reports/mothership/summary.json +0 -9
  183. /package/testeranto/bundles/node/{mothership → allTests}/chunk-PG6KUKNP.mjs +0 -0
  184. /package/testeranto/bundles/pure/{mothership → allTests}/metafile.json +0 -0
  185. /package/testeranto/bundles/web/{mothership → allTests}/metafile.json +0 -0
  186. /package/testeranto/reports/{mothership/src/PM/__tests__/nodeSidecar.testeranto → allTests/src/lib/BaseSuite.test}/node/log.txt +0 -0
  187. /package/testeranto/reports/{mothership → allTests}/src/mothership/test/node/lint_errors.json +0 -0
@@ -4,13 +4,14 @@
4
4
 
5
5
  <head>
6
6
  <meta name="description" content="Webpage description goes here" />
7
+ <base href="" target="_blank">
7
8
  <meta charset="utf-8" />
8
- <title>mothership - testeranto</title>
9
+ <title>allTests - testeranto</title>
9
10
  <meta name="viewport" content="width=device-width, initial-scale=1" />
10
11
  <meta name="author" content="" />
11
12
 
12
- <link rel="stylesheet" href="../../../../../../TestReport.css" />
13
- <script src="../../../../../../TestReport.js"></script>
13
+ <link rel="stylesheet" href="./testeranto/TestReport.css" />
14
+ <script src="./testeranto/TestReport.js"></script>
14
15
 
15
16
  </head>
16
17
 
@@ -0,0 +1,21 @@
1
+
2
+ <!DOCTYPE html>
3
+ <html lang="en">
4
+
5
+ <head>
6
+ <meta name="description" content="Webpage description goes here" />
7
+ <base href="undefined" target="_blank">
8
+ <meta charset="utf-8" />
9
+ <title>allTests - testeranto</title>
10
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
11
+ <meta name="author" content="" />
12
+
13
+ <link rel="stylesheet" href="./testeranto/TestReport.css" />
14
+ <script src="./testeranto/TestReport.js"></script>
15
+
16
+ </head>
17
+
18
+ <body>
19
+ <div id="root"/>
20
+ </body>
21
+
@@ -0,0 +1,80 @@
1
+ [
2
+ {
3
+ "filePath": "/Users/adam/Code/testeranto/src/PM/__tests__/nodeSidecar.testeranto.ts",
4
+ "messages": [
5
+ {
6
+ "ruleId": "@typescript-eslint/no-unsafe-function-type",
7
+ "severity": 2,
8
+ "message": "The `Function` type accepts any function-like value.\nPrefer explicitly defining any function parameters and return type.",
9
+ "line": 73,
10
+ "column": 23,
11
+ "nodeType": "Identifier",
12
+ "messageId": "bannedFunctionType",
13
+ "endLine": 73,
14
+ "endColumn": 31
15
+ },
16
+ {
17
+ "ruleId": "@typescript-eslint/no-unsafe-function-type",
18
+ "severity": 2,
19
+ "message": "The `Function` type accepts any function-like value.\nPrefer explicitly defining any function parameters and return type.",
20
+ "line": 75,
21
+ "column": 39,
22
+ "nodeType": "Identifier",
23
+ "messageId": "bannedFunctionType",
24
+ "endLine": 75,
25
+ "endColumn": 47
26
+ },
27
+ {
28
+ "ruleId": "@typescript-eslint/no-unused-vars",
29
+ "severity": 2,
30
+ "message": "'data' is defined but never used.",
31
+ "line": 94,
32
+ "column": 31,
33
+ "nodeType": null,
34
+ "messageId": "unusedVar",
35
+ "endLine": 94,
36
+ "endColumn": 35
37
+ },
38
+ {
39
+ "ruleId": "@typescript-eslint/no-unused-vars",
40
+ "severity": 2,
41
+ "message": "'testResource' is defined but never used.",
42
+ "line": 142,
43
+ "column": 44,
44
+ "nodeType": null,
45
+ "messageId": "unusedVar",
46
+ "endLine": 142,
47
+ "endColumn": 56
48
+ },
49
+ {
50
+ "ruleId": "@typescript-eslint/no-unused-vars",
51
+ "severity": 2,
52
+ "message": "'initialValues' is defined but never used.",
53
+ "line": 142,
54
+ "column": 58,
55
+ "nodeType": null,
56
+ "messageId": "unusedVar",
57
+ "endLine": 142,
58
+ "endColumn": 71
59
+ },
60
+ {
61
+ "ruleId": "@typescript-eslint/no-unused-vars",
62
+ "severity": 2,
63
+ "message": "'pm' is defined but never used.",
64
+ "line": 142,
65
+ "column": 73,
66
+ "nodeType": null,
67
+ "messageId": "unusedVar",
68
+ "endLine": 142,
69
+ "endColumn": 75
70
+ }
71
+ ],
72
+ "suppressedMessages": [],
73
+ "errorCount": 6,
74
+ "fatalErrorCount": 0,
75
+ "warningCount": 0,
76
+ "fixableErrorCount": 0,
77
+ "fixableWarningCount": 0,
78
+ "usedDeprecatedRules": []
79
+ }
80
+ ]
@@ -0,0 +1 @@
1
+ Fix the failing tests described in testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/tests.json and testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/console_log.txt. DO NOT refactor beyond what is necessary. Always prefer minimal changes, focusing mostly on keeping the BDD tests passing
@@ -0,0 +1,8 @@
1
+
2
+ /add src/PM/nodeSidecar.ts
3
+ /add src/PM/__tests__/nodeSidecar.testeranto.ts
4
+
5
+ /read testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/tests.json
6
+ /read testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/console_log.txt
7
+ /read testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/type_errors.txt
8
+ /read testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/lint_errors.json
@@ -0,0 +1,28 @@
1
+ /Users/adam/Code/testeranto/src/lib/basebuilder.ts (85,15): This expression is not callable.
2
+ Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
3
+ Type 'void' has no call signatures.
4
+ /Users/adam/Code/testeranto/src/lib/classBuilder.ts (90,18): A spread argument must either have a tuple type or be passed to a rest parameter.
5
+ /Users/adam/Code/testeranto/src/lib/classBuilder.ts (105,28): A spread argument must either have a tuple type or be passed to a rest parameter.
6
+ /Users/adam/Code/testeranto/src/lib/index.ts (22,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<...>'.
7
+ Types of parameters 'initialValues' and 'initializer' are incompatible.
8
+ Type '(c?: any) => T["given"]' is not assignable to type 'T["iinitialValues"]'.
9
+ 'T["iinitialValues"]' could be instantiated with an arbitrary type which could be unrelated to '(c?: any) => T["given"]'.
10
+ /Users/adam/Code/testeranto/src/lib/index.ts (24,20): Type '"iinitialValues"' cannot be used to index type 'T'.
11
+ /Users/adam/Code/testeranto/src/lib/index.ts (46,13): This expression is not callable.
12
+ Type 'unknown' has no call signatures.
13
+ /Users/adam/Code/testeranto/src/lib/index.ts (58,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 'ITestInterface<T>'.
14
+ Types of property 'assertThis' are incompatible.
15
+ Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
16
+ Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
17
+ /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<...>; checks: TestCheckImplementation<...>; }, keyof M> & M & { ...; }'.
18
+ 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
19
+ /Users/adam/Code/testeranto/src/Node.ts (58,26): Cannot find name 'INodeTestInterface'. Did you mean 'ITestInterface'?
20
+ /Users/adam/Code/testeranto/src/PM/__tests__/nodeSidecar.testeranto.ts (58,43): Cannot find name 'I'.
21
+ /Users/adam/Code/testeranto/src/PM/__tests__/nodeSidecar.testeranto.ts (59,13): Type '(x: any) => any' is not assignable to type 'string'.
22
+ /Users/adam/Code/testeranto/src/PM/__tests__/nodeSidecar.testeranto.ts (100,29): Variable 'callbackFn' is used before being assigned.
23
+ /Users/adam/Code/testeranto/src/PM/__tests__/nodeSidecar.testeranto.ts (131,18): Property 'removeListenerCalled' does not exist on type 'PM'.
24
+ /Users/adam/Code/testeranto/src/PM/__tests__/nodeSidecar.testeranto.ts (141,22): Cannot find name 'IPartialNodeInterface'.
25
+ /Users/adam/Code/testeranto/src/PM/__tests__/nodeSidecar.testeranto.ts (141,44): Cannot find name 'I'.
26
+ /Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
27
+ /Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
28
+ /Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
@@ -4,13 +4,14 @@
4
4
 
5
5
  <head>
6
6
  <meta name="description" content="Webpage description goes here" />
7
+ <base href="" target="_blank">
7
8
  <meta charset="utf-8" />
8
- <title>mothership - testeranto</title>
9
+ <title>allTests - testeranto</title>
9
10
  <meta name="viewport" content="width=device-width, initial-scale=1" />
10
11
  <meta name="author" content="" />
11
12
 
12
- <link rel="stylesheet" href="../../../../../../TestReport.css" />
13
- <script src="../../../../../../TestReport.js"></script>
13
+ <link rel="stylesheet" href="./testeranto/TestReport.css" />
14
+ <script src="./testeranto/TestReport.js"></script>
14
15
 
15
16
  </head>
16
17
 
@@ -0,0 +1,21 @@
1
+
2
+ <!DOCTYPE html>
3
+ <html lang="en">
4
+
5
+ <head>
6
+ <meta name="description" content="Webpage description goes here" />
7
+ <base href="undefined" target="_blank">
8
+ <meta charset="utf-8" />
9
+ <title>allTests - testeranto</title>
10
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
11
+ <meta name="author" content="" />
12
+
13
+ <link rel="stylesheet" href="./testeranto/TestReport.css" />
14
+ <script src="./testeranto/TestReport.js"></script>
15
+
16
+ </head>
17
+
18
+ <body>
19
+ <div id="root"/>
20
+ </body>
21
+
@@ -6,66 +6,66 @@
6
6
  "ruleId": "@typescript-eslint/no-unsafe-function-type",
7
7
  "severity": 2,
8
8
  "message": "The `Function` type accepts any function-like value.\nPrefer explicitly defining any function parameters and return type.",
9
- "line": 80,
9
+ "line": 73,
10
10
  "column": 23,
11
11
  "nodeType": "Identifier",
12
12
  "messageId": "bannedFunctionType",
13
- "endLine": 80,
13
+ "endLine": 73,
14
14
  "endColumn": 31
15
15
  },
16
16
  {
17
17
  "ruleId": "@typescript-eslint/no-unsafe-function-type",
18
18
  "severity": 2,
19
19
  "message": "The `Function` type accepts any function-like value.\nPrefer explicitly defining any function parameters and return type.",
20
- "line": 81,
20
+ "line": 74,
21
21
  "column": 46,
22
22
  "nodeType": "Identifier",
23
23
  "messageId": "bannedFunctionType",
24
- "endLine": 81,
24
+ "endLine": 74,
25
25
  "endColumn": 54
26
26
  },
27
27
  {
28
28
  "ruleId": "@typescript-eslint/no-unused-vars",
29
29
  "severity": 2,
30
30
  "message": "'data' is defined but never used.",
31
- "line": 94,
31
+ "line": 87,
32
32
  "column": 31,
33
33
  "nodeType": null,
34
34
  "messageId": "unusedVar",
35
- "endLine": 94,
35
+ "endLine": 87,
36
36
  "endColumn": 35
37
37
  },
38
38
  {
39
39
  "ruleId": "@typescript-eslint/no-unused-vars",
40
40
  "severity": 2,
41
41
  "message": "'testResource' is defined but never used.",
42
- "line": 133,
42
+ "line": 126,
43
43
  "column": 44,
44
44
  "nodeType": null,
45
45
  "messageId": "unusedVar",
46
- "endLine": 133,
46
+ "endLine": 126,
47
47
  "endColumn": 56
48
48
  },
49
49
  {
50
50
  "ruleId": "@typescript-eslint/no-unused-vars",
51
51
  "severity": 2,
52
52
  "message": "'initialValues' is defined but never used.",
53
- "line": 133,
53
+ "line": 126,
54
54
  "column": 58,
55
55
  "nodeType": null,
56
56
  "messageId": "unusedVar",
57
- "endLine": 133,
57
+ "endLine": 126,
58
58
  "endColumn": 71
59
59
  },
60
60
  {
61
61
  "ruleId": "@typescript-eslint/no-unused-vars",
62
62
  "severity": 2,
63
63
  "message": "'pm' is defined but never used.",
64
- "line": 133,
64
+ "line": 126,
65
65
  "column": 73,
66
66
  "nodeType": null,
67
67
  "messageId": "unusedVar",
68
- "endLine": 133,
68
+ "endLine": 126,
69
69
  "endColumn": 75
70
70
  }
71
71
  ],
@@ -0,0 +1 @@
1
+ Fix the failing tests described in testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/tests.json and testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/console_log.txt. DO NOT refactor beyond what is necessary. Always prefer minimal changes, focusing mostly on keeping the BDD tests passing
@@ -0,0 +1,8 @@
1
+
2
+ /add src/PM/pureSidecar.ts
3
+ /add src/PM/__tests__/pureSidecar.testeranto.ts
4
+
5
+ /read testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/tests.json
6
+ /read testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/console_log.txt
7
+ /read testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/type_errors.txt
8
+ /read testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/lint_errors.json
@@ -0,0 +1,32 @@
1
+ /Users/adam/Code/testeranto/src/lib/basebuilder.ts (85,15): This expression is not callable.
2
+ Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
3
+ Type 'void' has no call signatures.
4
+ /Users/adam/Code/testeranto/src/lib/classBuilder.ts (90,18): A spread argument must either have a tuple type or be passed to a rest parameter.
5
+ /Users/adam/Code/testeranto/src/lib/classBuilder.ts (105,28): A spread argument must either have a tuple type or be passed to a rest parameter.
6
+ /Users/adam/Code/testeranto/src/lib/index.ts (22,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<...>'.
7
+ Types of parameters 'initialValues' and 'initializer' are incompatible.
8
+ Type '(c?: any) => T["given"]' is not assignable to type 'T["iinitialValues"]'.
9
+ 'T["iinitialValues"]' could be instantiated with an arbitrary type which could be unrelated to '(c?: any) => T["given"]'.
10
+ /Users/adam/Code/testeranto/src/lib/index.ts (24,20): Type '"iinitialValues"' cannot be used to index type 'T'.
11
+ /Users/adam/Code/testeranto/src/lib/index.ts (46,13): This expression is not callable.
12
+ Type 'unknown' has no call signatures.
13
+ /Users/adam/Code/testeranto/src/lib/index.ts (58,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 'ITestInterface<T>'.
14
+ Types of property 'assertThis' are incompatible.
15
+ Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
16
+ Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
17
+ /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<...>; checks: TestCheckImplementation<...>; }, keyof M> & M & { ...; }'.
18
+ 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
19
+ /Users/adam/Code/testeranto/src/Node.ts (58,26): Cannot find name 'INodeTestInterface'. Did you mean 'ITestInterface'?
20
+ /Users/adam/Code/testeranto/src/PM/__tests__/pureSidecar.testeranto.ts (58,43): Cannot find name 'I'.
21
+ /Users/adam/Code/testeranto/src/PM/__tests__/pureSidecar.testeranto.ts (59,13): Type '(x: any) => any' is not assignable to type 'string'.
22
+ /Users/adam/Code/testeranto/src/PM/__tests__/pureSidecar.testeranto.ts (74,7): Type '(event: string, callback: Function) => void' is not assignable to type '{ (event: "beforeExit", listener: BeforeExitListener): Process; (event: "disconnect", listener: DisconnectListener): Process; (event: "exit", listener: ExitListener): Process; (event: "rejectionHandled", listener: RejectionHandledListener): Process; (event: "uncaughtException", listener: UncaughtExceptionListener): ...'.
23
+ Type 'void' is not assignable to type 'Process'.
24
+ /Users/adam/Code/testeranto/src/PM/__tests__/pureSidecar.testeranto.ts (93,29): Variable 'callbackFn' is used before being assigned.
25
+ /Users/adam/Code/testeranto/src/PM/__tests__/pureSidecar.testeranto.ts (99,35): Type 'boolean' is not assignable to type 'Process'.
26
+ /Users/adam/Code/testeranto/src/PM/__tests__/pureSidecar.testeranto.ts (100,38): Type 'boolean' is not assignable to type 'Process'.
27
+ /Users/adam/Code/testeranto/src/PM/__tests__/pureSidecar.testeranto.ts (115,18): Property 'removeListenerCalled' does not exist on type 'PM'.
28
+ /Users/adam/Code/testeranto/src/PM/__tests__/pureSidecar.testeranto.ts (125,22): Cannot find name 'IPartialNodeInterface'.
29
+ /Users/adam/Code/testeranto/src/PM/__tests__/pureSidecar.testeranto.ts (125,44): Cannot find name 'I'.
30
+ /Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
31
+ /Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
32
+ /Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
@@ -4,13 +4,14 @@
4
4
 
5
5
  <head>
6
6
  <meta name="description" content="Webpage description goes here" />
7
+ <base href="" target="_blank">
7
8
  <meta charset="utf-8" />
8
- <title>mothership - testeranto</title>
9
+ <title>allTests - testeranto</title>
9
10
  <meta name="viewport" content="width=device-width, initial-scale=1" />
10
11
  <meta name="author" content="" />
11
12
 
12
- <link rel="stylesheet" href="../../../../../../TestReport.css" />
13
- <script src="../../../../../../TestReport.js"></script>
13
+ <link rel="stylesheet" href="./testeranto/TestReport.css" />
14
+ <script src="./testeranto/TestReport.js"></script>
14
15
 
15
16
  </head>
16
17
 
@@ -0,0 +1,21 @@
1
+
2
+ <!DOCTYPE html>
3
+ <html lang="en">
4
+
5
+ <head>
6
+ <meta name="description" content="Webpage description goes here" />
7
+ <base href="undefined" target="_blank">
8
+ <meta charset="utf-8" />
9
+ <title>allTests - testeranto</title>
10
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
11
+ <meta name="author" content="" />
12
+
13
+ <link rel="stylesheet" href="./testeranto/TestReport.css" />
14
+ <script src="./testeranto/TestReport.js"></script>
15
+
16
+ </head>
17
+
18
+ <body>
19
+ <div id="root"/>
20
+ </body>
21
+
@@ -6,66 +6,66 @@
6
6
  "ruleId": "@typescript-eslint/no-unsafe-function-type",
7
7
  "severity": 2,
8
8
  "message": "The `Function` type accepts any function-like value.\nPrefer explicitly defining any function parameters and return type.",
9
- "line": 80,
9
+ "line": 73,
10
10
  "column": 23,
11
11
  "nodeType": "Identifier",
12
12
  "messageId": "bannedFunctionType",
13
- "endLine": 80,
13
+ "endLine": 73,
14
14
  "endColumn": 31
15
15
  },
16
16
  {
17
17
  "ruleId": "@typescript-eslint/no-unsafe-function-type",
18
18
  "severity": 2,
19
19
  "message": "The `Function` type accepts any function-like value.\nPrefer explicitly defining any function parameters and return type.",
20
- "line": 81,
20
+ "line": 74,
21
21
  "column": 46,
22
22
  "nodeType": "Identifier",
23
23
  "messageId": "bannedFunctionType",
24
- "endLine": 81,
24
+ "endLine": 74,
25
25
  "endColumn": 54
26
26
  },
27
27
  {
28
28
  "ruleId": "@typescript-eslint/no-unused-vars",
29
29
  "severity": 2,
30
30
  "message": "'data' is defined but never used.",
31
- "line": 94,
31
+ "line": 87,
32
32
  "column": 31,
33
33
  "nodeType": null,
34
34
  "messageId": "unusedVar",
35
- "endLine": 94,
35
+ "endLine": 87,
36
36
  "endColumn": 35
37
37
  },
38
38
  {
39
39
  "ruleId": "@typescript-eslint/no-unused-vars",
40
40
  "severity": 2,
41
41
  "message": "'testResource' is defined but never used.",
42
- "line": 133,
42
+ "line": 126,
43
43
  "column": 44,
44
44
  "nodeType": null,
45
45
  "messageId": "unusedVar",
46
- "endLine": 133,
46
+ "endLine": 126,
47
47
  "endColumn": 56
48
48
  },
49
49
  {
50
50
  "ruleId": "@typescript-eslint/no-unused-vars",
51
51
  "severity": 2,
52
52
  "message": "'initialValues' is defined but never used.",
53
- "line": 133,
53
+ "line": 126,
54
54
  "column": 58,
55
55
  "nodeType": null,
56
56
  "messageId": "unusedVar",
57
- "endLine": 133,
57
+ "endLine": 126,
58
58
  "endColumn": 71
59
59
  },
60
60
  {
61
61
  "ruleId": "@typescript-eslint/no-unused-vars",
62
62
  "severity": 2,
63
63
  "message": "'pm' is defined but never used.",
64
- "line": 133,
64
+ "line": 126,
65
65
  "column": 73,
66
66
  "nodeType": null,
67
67
  "messageId": "unusedVar",
68
- "endLine": 133,
68
+ "endLine": 126,
69
69
  "endColumn": 75
70
70
  }
71
71
  ],
@@ -0,0 +1 @@
1
+ Fix the failing tests described in testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/tests.json and testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/console_log.txt. DO NOT refactor beyond what is necessary. Always prefer minimal changes, focusing mostly on keeping the BDD tests passing
@@ -0,0 +1,8 @@
1
+
2
+ /add src/PM/webSidecar.ts
3
+ /add src/PM/__tests__/webSidecar.testeranto.ts
4
+
5
+ /read testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/tests.json
6
+ /read testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/console_log.txt
7
+ /read testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/type_errors.txt
8
+ /read testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/lint_errors.json
@@ -0,0 +1,32 @@
1
+ /Users/adam/Code/testeranto/src/lib/basebuilder.ts (85,15): This expression is not callable.
2
+ Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
3
+ Type 'void' has no call signatures.
4
+ /Users/adam/Code/testeranto/src/lib/classBuilder.ts (90,18): A spread argument must either have a tuple type or be passed to a rest parameter.
5
+ /Users/adam/Code/testeranto/src/lib/classBuilder.ts (105,28): A spread argument must either have a tuple type or be passed to a rest parameter.
6
+ /Users/adam/Code/testeranto/src/lib/index.ts (22,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<...>'.
7
+ Types of parameters 'initialValues' and 'initializer' are incompatible.
8
+ Type '(c?: any) => T["given"]' is not assignable to type 'T["iinitialValues"]'.
9
+ 'T["iinitialValues"]' could be instantiated with an arbitrary type which could be unrelated to '(c?: any) => T["given"]'.
10
+ /Users/adam/Code/testeranto/src/lib/index.ts (24,20): Type '"iinitialValues"' cannot be used to index type 'T'.
11
+ /Users/adam/Code/testeranto/src/lib/index.ts (46,13): This expression is not callable.
12
+ Type 'unknown' has no call signatures.
13
+ /Users/adam/Code/testeranto/src/lib/index.ts (58,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 'ITestInterface<T>'.
14
+ Types of property 'assertThis' are incompatible.
15
+ Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
16
+ Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
17
+ /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<...>; checks: TestCheckImplementation<...>; }, keyof M> & M & { ...; }'.
18
+ 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
19
+ /Users/adam/Code/testeranto/src/Node.ts (58,26): Cannot find name 'INodeTestInterface'. Did you mean 'ITestInterface'?
20
+ /Users/adam/Code/testeranto/src/PM/__tests__/webSidecar.testeranto.ts (58,43): Cannot find name 'I'.
21
+ /Users/adam/Code/testeranto/src/PM/__tests__/webSidecar.testeranto.ts (59,13): Type '(x: any) => any' is not assignable to type 'string'.
22
+ /Users/adam/Code/testeranto/src/PM/__tests__/webSidecar.testeranto.ts (74,7): Type '(event: string, callback: Function) => void' is not assignable to type '{ (event: "beforeExit", listener: BeforeExitListener): Process; (event: "disconnect", listener: DisconnectListener): Process; (event: "exit", listener: ExitListener): Process; (event: "rejectionHandled", listener: RejectionHandledListener): Process; (event: "uncaughtException", listener: UncaughtExceptionListener): ...'.
23
+ Type 'void' is not assignable to type 'Process'.
24
+ /Users/adam/Code/testeranto/src/PM/__tests__/webSidecar.testeranto.ts (93,29): Variable 'callbackFn' is used before being assigned.
25
+ /Users/adam/Code/testeranto/src/PM/__tests__/webSidecar.testeranto.ts (99,35): Type 'boolean' is not assignable to type 'Process'.
26
+ /Users/adam/Code/testeranto/src/PM/__tests__/webSidecar.testeranto.ts (100,38): Type 'boolean' is not assignable to type 'Process'.
27
+ /Users/adam/Code/testeranto/src/PM/__tests__/webSidecar.testeranto.ts (115,18): Property 'removeListenerCalled' does not exist on type 'PM'.
28
+ /Users/adam/Code/testeranto/src/PM/__tests__/webSidecar.testeranto.ts (125,22): Cannot find name 'IPartialNodeInterface'.
29
+ /Users/adam/Code/testeranto/src/PM/__tests__/webSidecar.testeranto.ts (125,44): Cannot find name 'I'.
30
+ /Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
31
+ /Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
32
+ /Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
@@ -0,0 +1,35 @@
1
+ stderr > Given error: [Function (anonymous)]
2
+ Given error: [Function (anonymous)]
3
+ Given error: Error: Expected 1 errors, got 0
4
+ at Then.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/src/lib/BaseSuite.test.mjs:252:15)
5
+ at file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:425:29
6
+ at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/src/lib/BaseSuite.test.mjs:290:55)
7
+ at Then.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:749:42)
8
+ at Then.test (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:420:17)
9
+ at Given.give (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:351:34)
10
+ at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
11
+ at async Testeranto.constructor.run (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:242:20)
12
+ at async file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:531:19
13
+ at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:559:29)
14
+ goodbye node with caught error Error: Expected 1 errors, got 0
15
+ at Then.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/src/lib/BaseSuite.test.mjs:252:15)
16
+ at file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:425:29
17
+ at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/src/lib/BaseSuite.test.mjs:290:55)
18
+ at Then.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:749:42)
19
+ at Then.test (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:420:17)
20
+ at Given.give (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:351:34)
21
+ at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
22
+ at async Testeranto.constructor.run (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:242:20)
23
+ at async file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:531:19
24
+ at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:559:29)
25
+ stdout > test failed 3 Error: Expected 1 errors, got 0
26
+ at Then.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/src/lib/BaseSuite.test.mjs:252:15)
27
+ at file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:425:29
28
+ at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/src/lib/BaseSuite.test.mjs:290:55)
29
+ at Then.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:749:42)
30
+ at Then.test (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:420:17)
31
+ at Given.give (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:351:34)
32
+ at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
33
+ at async Testeranto.constructor.run (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:242:20)
34
+ at async file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:531:19
35
+ at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs:559:29)
@@ -4,13 +4,14 @@
4
4
 
5
5
  <head>
6
6
  <meta name="description" content="Webpage description goes here" />
7
+ <base href="" target="_blank">
7
8
  <meta charset="utf-8" />
8
- <title>mothership - testeranto</title>
9
+ <title>allTests - testeranto</title>
9
10
  <meta name="viewport" content="width=device-width, initial-scale=1" />
10
11
  <meta name="author" content="" />
11
12
 
12
- <link rel="stylesheet" href="../../../../../../TestReport.css" />
13
- <script src="../../../../../../TestReport.js"></script>
13
+ <link rel="stylesheet" href="./testeranto/TestReport.css" />
14
+ <script src="./testeranto/TestReport.js"></script>
14
15
 
15
16
  </head>
16
17
 
@@ -0,0 +1,21 @@
1
+
2
+ <!DOCTYPE html>
3
+ <html lang="en">
4
+
5
+ <head>
6
+ <meta name="description" content="Webpage description goes here" />
7
+ <base href="undefined" target="_blank">
8
+ <meta charset="utf-8" />
9
+ <title>allTests - testeranto</title>
10
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
11
+ <meta name="author" content="" />
12
+
13
+ <link rel="stylesheet" href="./testeranto/TestReport.css" />
14
+ <script src="./testeranto/TestReport.js"></script>
15
+
16
+ </head>
17
+
18
+ <body>
19
+ <div id="root"/>
20
+ </body>
21
+