testeranto 0.172.0 → 0.177.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 (203) hide show
  1. package/README.md +2 -4
  2. package/dist/common/src/PM/base.js +5 -1
  3. package/dist/common/src/PM/main.js +57 -54
  4. package/dist/common/src/PM/node.js +4 -1
  5. package/dist/common/src/PM/pure.js +4 -1
  6. package/dist/common/src/PM/web.js +6 -3
  7. package/dist/common/src/Pure.js +0 -4
  8. package/dist/common/src/Pure.test.js +1 -1
  9. package/dist/common/src/ReportServer.js +2 -126
  10. package/dist/common/src/ReportServer.test.ts/index.js +78 -0
  11. package/dist/common/src/ReportServerLib.js +141 -0
  12. package/dist/common/src/components/pure/ProjectPageView.test/implementation.js +1 -1
  13. package/dist/common/src/esbuildConfigs/node.js +1 -3
  14. package/dist/common/src/lib/BaseSuite.js +13 -11
  15. package/dist/common/src/lib/abstractBase.js +39 -40
  16. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +10 -9
  17. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.specification.js +7 -7
  18. package/dist/common/src/lib/basebuilder.js +13 -2
  19. package/dist/common/src/lib/core.js +1 -0
  20. package/dist/common/src/lib/pmProxy.js +215 -201
  21. package/dist/common/src/lib/pmProxy.test/adapter.js +2 -2
  22. package/dist/common/src/lib/pmProxy.test/implementation.js +1 -1
  23. package/dist/common/testeranto.config.js +47 -32
  24. package/dist/common/tsconfig.common.tsbuildinfo +1 -1
  25. package/dist/module/src/PM/base.js +5 -1
  26. package/dist/module/src/PM/main.js +22 -19
  27. package/dist/module/src/PM/node.js +4 -1
  28. package/dist/module/src/PM/pure.js +4 -1
  29. package/dist/module/src/PM/web.js +6 -3
  30. package/dist/module/src/Pure.js +0 -4
  31. package/dist/module/src/Pure.test.js +1 -1
  32. package/dist/module/src/ReportServer.js +2 -123
  33. package/dist/module/src/ReportServer.test.ts/index.js +73 -0
  34. package/dist/module/src/ReportServerLib.js +134 -0
  35. package/dist/module/src/TestPage.js +29 -17
  36. package/dist/module/src/components/pure/ProjectPageView.test/implementation.js +1 -1
  37. package/dist/module/src/components/pure/TestPageView.js +29 -17
  38. package/dist/module/src/esbuildConfigs/node.js +1 -3
  39. package/dist/module/src/lib/BaseSuite.js +13 -11
  40. package/dist/module/src/lib/abstractBase.js +39 -40
  41. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +10 -9
  42. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.specification.js +7 -7
  43. package/dist/module/src/lib/basebuilder.js +13 -2
  44. package/dist/module/src/lib/core.js +1 -0
  45. package/dist/module/src/lib/pmProxy.js +215 -201
  46. package/dist/module/src/lib/pmProxy.test/adapter.js +2 -2
  47. package/dist/module/src/lib/pmProxy.test/implementation.js +1 -1
  48. package/dist/module/testeranto.config.js +47 -32
  49. package/dist/module/tsconfig.module.tsbuildinfo +1 -1
  50. package/dist/prebuild/App.js +3 -3
  51. package/dist/prebuild/ReportServer.mjs +21 -9
  52. package/dist/prebuild/build.mjs +1 -1
  53. package/dist/prebuild/run.mjs +27 -20
  54. package/dist/types/src/PM/base.d.ts +1 -1
  55. package/dist/types/src/PM/node.d.ts +1 -1
  56. package/dist/types/src/PM/pure.d.ts +1 -1
  57. package/dist/types/src/PM/web.d.ts +1 -1
  58. package/dist/types/src/ReportServer.test.ts/index.d.ts +29 -0
  59. package/dist/types/src/ReportServerLib.d.ts +1 -0
  60. package/dist/types/src/Types.d.ts +0 -1
  61. package/dist/types/src/components/pure/ProjectPageView.test/index.d.ts +2 -1
  62. package/dist/types/src/lib/BaseSuite.d.ts +2 -0
  63. package/dist/types/src/lib/abstractBase.d.ts +5 -7
  64. package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.types.d.ts +7 -4
  65. package/dist/types/src/lib/pmProxy.d.ts +3 -3
  66. package/dist/types/tsconfig.types.tsbuildinfo +1 -1
  67. package/package.json +3 -3
  68. package/src/PM/base.ts +7 -5
  69. package/src/PM/main.ts +26 -21
  70. package/src/PM/node.ts +6 -1
  71. package/src/PM/pure.ts +6 -1
  72. package/src/PM/web.ts +7 -3
  73. package/src/Pure.test.ts +6 -6
  74. package/src/Pure.ts +0 -8
  75. package/src/ReportServer.test.ts/index.ts +194 -0
  76. package/src/ReportServer.ts +2 -132
  77. package/src/ReportServerLib.ts +147 -0
  78. package/src/TestPage.tsx +65 -5
  79. package/src/Types.ts +0 -1
  80. package/src/components/pure/ProjectPageView.test/implementation.tsx +1 -1
  81. package/src/components/pure/TestPageView.tsx +65 -5
  82. package/src/esbuildConfigs/node.ts +1 -1
  83. package/src/lib/BaseSuite.ts +16 -21
  84. package/src/lib/abstractBase.ts +59 -48
  85. package/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts +22 -10
  86. package/src/lib/baseBuilder.test/baseBuilder.test.specification.ts +9 -9
  87. package/src/lib/baseBuilder.test/baseBuilder.test.types.ts +7 -4
  88. package/src/lib/basebuilder.ts +13 -4
  89. package/src/lib/core.ts +1 -0
  90. package/src/lib/pmProxy.test/adapter.ts +2 -2
  91. package/src/lib/pmProxy.test/implementation.ts +3 -3
  92. package/src/lib/pmProxy.test/types.ts +0 -2
  93. package/src/lib/pmProxy.ts +135 -80
  94. package/testeranto/App.js +3 -3
  95. package/testeranto/bundles/node/core/metafile.json +8 -0
  96. package/testeranto/bundles/pure/core/metafile.json +8 -0
  97. package/testeranto/bundles/web/core/metafile.json +15086 -0
  98. package/testeranto/bundles/web/{allTests → core}/src/components/pure/ProjectPageView.test/index.html +1 -1
  99. package/testeranto/bundles/web/{allTests → core}/src/components/pure/ProjectPageView.test/index.mjs +4109 -1642
  100. package/testeranto/projects.json +1 -1
  101. package/testeranto/reports/core/config.json +24 -0
  102. package/testeranto/reports/{allTests → core}/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +6 -1
  103. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/logs.txt +59 -0
  104. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/message.txt +2 -0
  105. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/prompt.txt +27 -0
  106. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/suite-0/given-basicRender/then-0/butThen/happyPath.png +0 -0
  107. package/testeranto/reports/{allTests → core}/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +15 -33
  108. package/testeranto/reports/core/summary.json +9 -0
  109. package/testeranto.config.ts +49 -32
  110. package/tsc.log +78 -92
  111. package/testeranto/bundles/node/allTests/chunk-3EUGBAOM.mjs +0 -113
  112. package/testeranto/bundles/node/allTests/chunk-E75CSRER.mjs +0 -800
  113. package/testeranto/bundles/node/allTests/chunk-M6DO7VMB.mjs +0 -252
  114. package/testeranto/bundles/node/allTests/metafile.json +0 -1229
  115. package/testeranto/bundles/node/allTests/src/lib/BaseSuite.test/node.test.mjs +0 -323
  116. package/testeranto/bundles/node/allTests/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +0 -223
  117. package/testeranto/bundles/node/allTests/src/lib/classBuilder.test/classBuilder.test.mjs +0 -411
  118. package/testeranto/bundles/node/allTests/src/lib/core.test/core.test.mjs +0 -528
  119. package/testeranto/bundles/node/allTests/src/lib/pmProxy.test/index.mjs +0 -4752
  120. package/testeranto/bundles/pure/allTests/chunk-KHDVEHF7.mjs +0 -185
  121. package/testeranto/bundles/pure/allTests/chunk-VMUSFSZM.mjs +0 -797
  122. package/testeranto/bundles/pure/allTests/metafile.json +0 -1054
  123. package/testeranto/bundles/pure/allTests/src/Pure.test.mjs +0 -429
  124. package/testeranto/bundles/pure/allTests/src/lib/BaseSuite.test/pure.test.mjs +0 -425
  125. package/testeranto/bundles/pure/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +0 -381
  126. package/testeranto/bundles/web/allTests/chunk-HPYA4YZC.mjs +0 -2283
  127. package/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs +0 -997
  128. package/testeranto/bundles/web/allTests/metafile.json +0 -25
  129. package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.html +0 -19
  130. package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs +0 -440
  131. package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web.html +0 -19
  132. package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +0 -244
  133. package/testeranto/reports/allTests/config.json +0 -104
  134. package/testeranto/reports/allTests/src/Pure.test/pure/lint_errors.txt +0 -0
  135. package/testeranto/reports/allTests/src/Pure.test/pure/message.txt +0 -2
  136. package/testeranto/reports/allTests/src/Pure.test/pure/prompt.txt +0 -13
  137. package/testeranto/reports/allTests/src/Pure.test/pure/type_errors.txt +0 -101
  138. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/bdd_errors.txt +0 -1
  139. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/logs.txt +0 -50
  140. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/message.txt +0 -2
  141. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/prompt.txt +0 -17
  142. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/tests.json +0 -32
  143. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/bdd_errors.txt +0 -1
  144. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/lint_errors.txt +0 -0
  145. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/logs.txt +0 -52
  146. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/message.txt +0 -2
  147. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/prompt.txt +0 -13
  148. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/tests.json +0 -31
  149. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/type_errors.txt +0 -111
  150. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/bdd_errors.txt +0 -1
  151. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/lint_errors.txt +0 -0
  152. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/message.txt +0 -2
  153. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/prompt.txt +0 -14
  154. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/tests.json +0 -31
  155. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +0 -111
  156. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/bdd_errors.txt +0 -1
  157. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/lint_errors.txt +0 -0
  158. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/logs.txt +0 -108
  159. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/message.txt +0 -2
  160. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/prompt.txt +0 -14
  161. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/tests.json +0 -31
  162. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/type_errors.txt +0 -111
  163. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/bdd_errors.txt +0 -1
  164. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.txt +0 -0
  165. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/logs.txt +0 -35
  166. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/message.txt +0 -2
  167. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/prompt.txt +0 -16
  168. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +0 -77
  169. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +0 -62
  170. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.txt +0 -0
  171. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/message.txt +0 -2
  172. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/prompt.txt +0 -18
  173. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +0 -62
  174. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/bdd_errors.txt +0 -1
  175. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/lint_errors.txt +0 -0
  176. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/logs.txt +0 -69
  177. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/message.txt +0 -2
  178. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +0 -16
  179. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +0 -77
  180. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +0 -62
  181. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/bdd_errors.txt +0 -1
  182. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/lint_errors.txt +0 -0
  183. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/logs.txt +0 -700
  184. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/message.txt +0 -2
  185. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/prompt.txt +0 -16
  186. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/tests.json +0 -164
  187. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt +0 -138
  188. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/lint_errors.txt +0 -21
  189. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/logs.txt +0 -7
  190. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/message.txt +0 -2
  191. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/prompt.txt +0 -18
  192. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/type_errors.txt +0 -63
  193. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/bdd_errors.txt +0 -1
  194. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/lint_errors.txt +0 -20
  195. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/logs.txt +0 -31
  196. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/message.txt +0 -2
  197. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/prompt.txt +0 -16
  198. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/tests.json +0 -134
  199. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/type_errors.txt +0 -76
  200. package/testeranto/reports/allTests/summary.json +0 -79
  201. package/testeranto/reportsnode_build_errors +0 -20
  202. package/testeranto/reportspure_build_errors +0 -343
  203. package/testeranto/reportsweb_build_errors +0 -25
@@ -1,134 +0,0 @@
1
- {
2
- "name": "PM Proxy Functionality",
3
- "givens": [
4
- {
5
- "key": "writeFileProxyTest",
6
- "name": "SomeBaseString",
7
- "whens": [],
8
- "thens": [
9
- {
10
- "name": "theButTheProxyReturns: writeFileSync",
11
- "error": "TypeError: store.butThenProxy is not a function",
12
- "artifacts": []
13
- }
14
- ],
15
- "error": null,
16
- "features": [
17
- "butThenProxy should rewrite writeFileSync paths"
18
- ],
19
- "artifacts": []
20
- },
21
- {
22
- "key": "createWriteStreamProxyTest",
23
- "name": "SomeBaseString",
24
- "whens": [],
25
- "thens": [
26
- {
27
- "name": "theButTheProxyReturns: createWriteStream",
28
- "error": "TypeError: store.butThenProxy is not a function",
29
- "artifacts": []
30
- }
31
- ],
32
- "error": null,
33
- "features": [
34
- "butThenProxy should rewrite createWriteStream paths"
35
- ],
36
- "artifacts": []
37
- },
38
- {
39
- "key": "screencastProxyTest",
40
- "name": "SomeBaseString",
41
- "whens": [],
42
- "thens": [
43
- {
44
- "name": "theButTheProxyReturns: screencast",
45
- "error": "TypeError: store.butThenProxy is not a function",
46
- "artifacts": []
47
- }
48
- ],
49
- "error": null,
50
- "features": [
51
- "butThenProxy should rewrite screencast paths"
52
- ],
53
- "artifacts": []
54
- },
55
- {
56
- "key": "customScreenShotProxyTest",
57
- "name": "SomeBaseString",
58
- "whens": [],
59
- "thens": [
60
- {
61
- "name": "theButTheProxyReturns: customScreenShot",
62
- "error": "TypeError: store.butThenProxy is not a function",
63
- "artifacts": []
64
- }
65
- ],
66
- "error": null,
67
- "features": [
68
- "butThenProxy should rewrite customScreenShot paths"
69
- ],
70
- "artifacts": []
71
- },
72
- {
73
- "key": "emptyPathTest",
74
- "name": "SomeBaseString",
75
- "whens": [],
76
- "thens": [
77
- {
78
- "name": "theButTheProxyReturns: writeFileSync",
79
- "error": "TypeError: store.butThenProxy is not a function",
80
- "artifacts": []
81
- }
82
- ],
83
- "error": null,
84
- "features": [
85
- "butThenProxy should handle empty paths"
86
- ],
87
- "artifacts": []
88
- },
89
- {
90
- "key": "nestedPathTest",
91
- "name": "SomeBaseString",
92
- "whens": [],
93
- "thens": [
94
- {
95
- "name": "theButTheProxyReturns: writeFileSync",
96
- "error": "TypeError: store.butThenProxy is not a function",
97
- "artifacts": []
98
- }
99
- ],
100
- "error": null,
101
- "features": [
102
- "butThenProxy should handle nested paths"
103
- ],
104
- "artifacts": []
105
- },
106
- {
107
- "key": "specialCharsTest",
108
- "name": "SomeBaseString",
109
- "whens": [],
110
- "thens": [
111
- {
112
- "name": "theButTheProxyReturns: writeFileSync",
113
- "error": "TypeError: store.butThenProxy is not a function",
114
- "artifacts": []
115
- }
116
- ],
117
- "error": null,
118
- "features": [
119
- "butThenProxy should handle special characters in paths"
120
- ],
121
- "artifacts": []
122
- }
123
- ],
124
- "fails": 0,
125
- "features": [
126
- "butThenProxy should rewrite writeFileSync paths",
127
- "butThenProxy should rewrite createWriteStream paths",
128
- "butThenProxy should rewrite screencast paths",
129
- "butThenProxy should rewrite customScreenShot paths",
130
- "butThenProxy should handle empty paths",
131
- "butThenProxy should handle nested paths",
132
- "butThenProxy should handle special characters in paths"
133
- ]
134
- }
@@ -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,79 +0,0 @@
1
- {
2
- "src/components/pure/ProjectPageView.test/index.ts": {
3
- "typeErrors": 37,
4
- "staticErrors": 2,
5
- "runTimeErrors": "?",
6
- "prompt": "aider --model deepseek/deepseek-chat --load testeranto/allTests/reports/web/src/components/pure/ProjectPageView.test/index/prompt.txt",
7
- "failingFeatures": {}
8
- },
9
- "src/lib/BaseSuite.test/node.test.ts": {
10
- "typeErrors": 46,
11
- "staticErrors": 0,
12
- "runTimeErrors": 0,
13
- "prompt": "aider --model deepseek/deepseek-chat --load testeranto/allTests/reports/node/src/lib/BaseSuite.test/node.test/prompt.txt",
14
- "failingFeatures": {}
15
- },
16
- "src/lib/BaseSuite.test/pure.test.ts": {
17
- "typeErrors": 46,
18
- "staticErrors": 0,
19
- "runTimeErrors": 0,
20
- "prompt": "aider --model deepseek/deepseek-chat --load testeranto/allTests/reports/pure/src/lib/BaseSuite.test/pure.test/prompt.txt",
21
- "failingFeatures": {}
22
- },
23
- "src/lib/BaseSuite.test/web.test.ts": {
24
- "typeErrors": 46,
25
- "staticErrors": 0,
26
- "runTimeErrors": 0,
27
- "prompt": "aider --model deepseek/deepseek-chat --load testeranto/allTests/reports/web/src/lib/BaseSuite.test/web.test/prompt.txt",
28
- "failingFeatures": {}
29
- },
30
- "src/Pure.test.ts": {
31
- "typeErrors": 39,
32
- "staticErrors": 0,
33
- "runTimeErrors": -1,
34
- "prompt": "aider --model deepseek/deepseek-chat --load testeranto/allTests/reports/pure/src/Pure.test/prompt.txt",
35
- "failingFeatures": {}
36
- },
37
- "src/lib/pmProxy.test/index.ts": {
38
- "typeErrors": 32,
39
- "staticErrors": 2,
40
- "runTimeErrors": 0,
41
- "prompt": "aider --model deepseek/deepseek-chat --load testeranto/allTests/reports/node/src/lib/pmProxy.test/index/prompt.txt",
42
- "failingFeatures": {}
43
- },
44
- "src/lib/core.test/core.test.ts": {
45
- "typeErrors": 39,
46
- "staticErrors": 1,
47
- "runTimeErrors": 0,
48
- "prompt": "aider --model deepseek/deepseek-chat --load testeranto/allTests/reports/node/src/lib/core.test/core.test/prompt.txt",
49
- "failingFeatures": {}
50
- },
51
- "src/lib/classBuilder.test/classBuilder.test.ts": {
52
- "typeErrors": 66,
53
- "staticErrors": 0,
54
- "runTimeErrors": 0,
55
- "prompt": "aider --model deepseek/deepseek-chat --load testeranto/allTests/reports/node/src/lib/classBuilder.test/classBuilder.test/prompt.txt",
56
- "failingFeatures": {}
57
- },
58
- "src/lib/baseBuilder.test/baseBuilder.test.node.ts": {
59
- "typeErrors": 29,
60
- "staticErrors": 0,
61
- "runTimeErrors": 0,
62
- "prompt": "aider --model deepseek/deepseek-chat --load testeranto/allTests/reports/node/src/lib/baseBuilder.test/baseBuilder.test.node/prompt.txt",
63
- "failingFeatures": {}
64
- },
65
- "src/lib/baseBuilder.test/baseBuilder.test.pure.ts": {
66
- "typeErrors": 29,
67
- "staticErrors": 0,
68
- "runTimeErrors": -1,
69
- "prompt": "aider --model deepseek/deepseek-chat --load testeranto/allTests/reports/pure/src/lib/baseBuilder.test/baseBuilder.test.pure/prompt.txt",
70
- "failingFeatures": {}
71
- },
72
- "src/lib/baseBuilder.test/baseBuilder.test.web.ts": {
73
- "typeErrors": 29,
74
- "staticErrors": 0,
75
- "runTimeErrors": 0,
76
- "prompt": "aider --model deepseek/deepseek-chat --load testeranto/allTests/reports/web/src/lib/baseBuilder.test/baseBuilder.test.web/prompt.txt",
77
- "failingFeatures": {}
78
- }
79
- }
@@ -1,20 +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
- }
@@ -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
- }