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,16 +0,0 @@
1
-
2
- /add src/lib/classBuilder.test/mock.ts
3
- /add src/lib/classBuilder.test/classBuilder.test.implementation.ts
4
- /add src/lib/classBuilder.test/classBuilder.test.specification.ts
5
- /add src/lib/classBuilder.test/classBuilder.test.adapter.ts
6
- /add src/lib/classBuilder.test/classBuilder.test.ts
7
-
8
- /read node_modules/testeranto/docs/index.md
9
- /read node_modules/testeranto/docs/style.md
10
- /read node_modules/testeranto/docs/testing.ai.txt
11
- /read node_modules/testeranto/src/CoreTypes.ts
12
-
13
- /read testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/tests.json
14
- /read testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/logs.txt
15
- /read testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt
16
- /read testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/lint_errors.txt
@@ -1,164 +0,0 @@
1
- {
2
- "name": "Basic ClassBuilder Functionality",
3
- "givens": [
4
- {
5
- "key": "initialization",
6
- "name": "Default",
7
- "whens": [],
8
- "thens": [
9
- {
10
- "name": "initializedProperly: undefined",
11
- "error": false,
12
- "artifacts": []
13
- }
14
- ],
15
- "error": null,
16
- "features": [
17
- "ClassBuilder should initialize with default values"
18
- ],
19
- "artifacts": []
20
- },
21
- {
22
- "key": "customInput",
23
- "name": "WithCustomInput",
24
- "whens": [],
25
- "thens": [
26
- {
27
- "name": "initializedProperly: undefined",
28
- "error": false,
29
- "artifacts": []
30
- }
31
- ],
32
- "error": null,
33
- "features": {
34
- "custom": "input"
35
- },
36
- "artifacts": []
37
- },
38
- {
39
- "key": "resourceRequirements",
40
- "name": "WithResourceRequirements",
41
- "whens": [],
42
- "thens": [
43
- {
44
- "name": "resourceRequirementsSet: undefined",
45
- "error": false,
46
- "artifacts": []
47
- }
48
- ],
49
- "error": null,
50
- "features": {
51
- "ports": [
52
- 3000,
53
- 3001
54
- ]
55
- },
56
- "artifacts": []
57
- },
58
- {
59
- "key": "specGeneration",
60
- "name": "Default",
61
- "whens": [],
62
- "thens": [
63
- {
64
- "name": "specsGenerated: undefined",
65
- "error": false,
66
- "artifacts": []
67
- }
68
- ],
69
- "error": null,
70
- "features": [
71
- "Should generate specs from test specification"
72
- ],
73
- "artifacts": []
74
- },
75
- {
76
- "key": "jobCreation",
77
- "name": "Default",
78
- "whens": [],
79
- "thens": [
80
- {
81
- "name": "jobsCreated: undefined",
82
- "error": false,
83
- "artifacts": []
84
- }
85
- ],
86
- "error": null,
87
- "features": [
88
- "Should create test jobs from specs"
89
- ],
90
- "artifacts": []
91
- },
92
- {
93
- "key": "artifactTracking",
94
- "name": "Default",
95
- "whens": [
96
- {
97
- "name": "addArtifact: [object Promise]",
98
- "artifacts": []
99
- }
100
- ],
101
- "thens": [
102
- {
103
- "name": "artifactsTracked: undefined",
104
- "error": false,
105
- "artifacts": []
106
- }
107
- ],
108
- "error": null,
109
- "features": [
110
- "Should track artifacts"
111
- ],
112
- "artifacts": []
113
- },
114
- {
115
- "key": "overridesConfiguration",
116
- "name": "Default",
117
- "whens": [],
118
- "thens": [
119
- {
120
- "name": "suitesOverridesConfigured: undefined",
121
- "error": false,
122
- "artifacts": []
123
- },
124
- {
125
- "name": "givensOverridesConfigured: undefined",
126
- "error": false,
127
- "artifacts": []
128
- },
129
- {
130
- "name": "whensOverridesConfigured: undefined",
131
- "error": false,
132
- "artifacts": []
133
- },
134
- {
135
- "name": "thensOverridesConfigured: undefined",
136
- "error": false,
137
- "artifacts": []
138
- }
139
- ],
140
- "error": null,
141
- "features": [
142
- "Should properly configure all overrides"
143
- ],
144
- "artifacts": []
145
- }
146
- ],
147
- "fails": 0,
148
- "features": [
149
- "ClassBuilder should initialize with default values",
150
- {
151
- "custom": "input"
152
- },
153
- {
154
- "ports": [
155
- 3000,
156
- 3001
157
- ]
158
- },
159
- "Should generate specs from test specification",
160
- "Should create test jobs from specs",
161
- "Should track artifacts",
162
- "Should properly configure all overrides"
163
- ]
164
- }
@@ -1,138 +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/BaseSuite.test/mock.ts (36,9): Property 'andWhen' in type 'MockWhen' is not assignable to the same property in base type 'BaseWhen<I>'.
7
- Type '(store: TestStore, whenCB: (store: TestStore) => Promise<TestStore>, testResource: any, pm: IPM) => Promise<TestStore>' is not assignable to type '(store: TestStore, whenCB: (x: TestSelection) => (store: TestStore) => Promise<TestSelection>, testResource: any, pm: IPM) => Promise<...>'.
8
- Types of parameters 'whenCB' and 'whenCB' are incompatible.
9
- Types of parameters 'x' and 'store' are incompatible.
10
- Type 'TestStore' is not assignable to type 'TestSelection'.
11
- Types of property 'testSelection' are incompatible.
12
- Type 'boolean | undefined' is not assignable to type 'boolean'.
13
- Type 'undefined' is not assignable to type 'boolean'.
14
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (66,9): Property 'butThen' in type 'MockThen' is not assignable to the same property in base type 'BaseThen<I>'.
15
- Types of parameters 'thenCB' and 'thenCB' are incompatible.
16
- Type 'Promise<BaseSuite<any, any>>' is not assignable to type 'Promise<TestSelection>'.
17
- Property 'testSelection' is missing in type 'BaseSuite<any, any>' but required in type 'TestSelection'.
18
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (83,7): Object literal may only specify known properties, and 'name' does not exist in type 'TestSelection'.
19
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (126,10): Type 'MockWhen' is not assignable to type 'BaseWhen<I>'.
20
- Types of property 'andWhen' are incompatible.
21
- Type '(store: TestStore, whenCB: (store: TestStore) => Promise<TestStore>, testResource: any, pm: IPM) => Promise<TestStore>' is not assignable to type '(store: TestStore, whenCB: (x: TestSelection) => (store: TestStore) => Promise<TestSelection>, testResource: any, pm: IPM) => Promise<...>'.
22
- Types of parameters 'whenCB' and 'whenCB' are incompatible.
23
- Types of parameters 'x' and 'store' are incompatible.
24
- Type 'TestStore' is not assignable to type 'TestSelection'.
25
- Types of property 'testSelection' are incompatible.
26
- Type 'boolean | undefined' is not assignable to type 'boolean'.
27
- Type 'undefined' is not assignable to type 'boolean'.
28
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (126,41): Type 'Promise<{ testStore: boolean; }>' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
29
- Type 'Promise<{ testStore: boolean; }>' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
30
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (129,13): Type 'Promise<{ testSelection: boolean; }>' is not assignable to type 'Promise<(store: TestStore) => Promise<TestSelection>>'.
31
- Type '{ testSelection: boolean; }' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
32
- Type '{ testSelection: boolean; }' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
33
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (126,5): Type '() => MockSuite' is not assignable to type '() => () => Promise<TestStore>'.
34
- Type 'MockSuite' is not assignable to type '() => Promise<TestStore>'.
35
- Type 'MockSuite' provides no match for the signature '(): Promise<TestStore>'.
36
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (137,15): Property 'artifacts' does not exist on type 'MockSuite'.
37
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (144,15): Property 'specs' does not exist on type 'MockSuite'.
38
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (144,38): Property 'specs' does not exist on type 'MockSuite'.
39
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (151,15): Property 'testJobs' does not exist on type 'MockSuite'.
40
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (151,41): Property 'testJobs' does not exist on type 'MockSuite'.
41
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (157,7): Type '(suite: MockSuite) => Promise<MockSuite>' is not assignable to type '(zel: TestSelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: TestStore) => Promise<TestStore>>'.
42
- Types of parameters 'suite' and 'zel' are incompatible.
43
- Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 9 more.
44
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (178,11): Type '() => void' is not assignable to type '((selector: string) => boolean) | ((selector: string) => boolean) | ((selector: string, page: string) => Promise<unknown>)'.
45
- Type '() => void' is not assignable to type '(selector: string) => boolean'.
46
- Type 'void' is not assignable to type 'boolean'.
47
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (180,11): Type '() => void' is not assignable to type '((p: any) => string) | ((p: any) => string) | ((p: any) => Promise<unknown>)'.
48
- Type '() => void' is not assignable to type '(p: any) => string'.
49
- Type 'void' is not assignable to type 'string'.
50
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (185,11): Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'.
51
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (199,13): Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'.
52
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (224,5): Type '(expectedName: string) => ((suite: MockSuite) => MockSuite)' is not assignable to type '(It_0: string) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
53
- Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
54
- Types of parameters 'suite' and 'ssel' are incompatible.
55
- Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 9 more.
56
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (244,5): Type '(expectedIndex: number) => ((suite: MockSuite) => MockSuite)' is not assignable to type '(It_0: number) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
57
- Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
58
- Types of parameters 'suite' and 'ssel' are incompatible.
59
- Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 9 more.
60
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (255,5): Type '(feature: string) => ((suite: MockSuite) => MockSuite)' is not assignable to type '(feature: string) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
61
- Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
62
- Types of parameters 'suite' and 'ssel' are incompatible.
63
- Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 9 more.
64
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (276,58): Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
65
- Types of parameters 'suite' and 'ssel' are incompatible.
66
- Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 9 more.
67
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (328,19): Property 'specs' does not exist on type 'MockSuite'.
68
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (337,19): Property 'testJobs' does not exist on type 'MockSuite'.
69
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (345,19): Property 'artifacts' does not exist on type 'MockSuite'.
70
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (378,22): Property 'index' does not exist on type '() => Promise<TestStore>'.
71
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (379,22): Property 'store' does not exist on type '() => Promise<TestStore>'.
72
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (383,22): Property 'index' does not exist on type '() => Promise<TestStore>'.
73
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (386,19): Property 'store' does not exist on type '() => Promise<TestStore>'.
74
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (399,44): Expected 1 arguments, but got 2.
75
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (401,3): Type '(store: TestStore, thenCB: (selection: TestSelection) => Promise<TestSelection>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<TestSelection>' is not assignable to type '(store: TestStore, thenCB: (store: TestStore) => Promise<TestSelection>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<...>'.
76
- Types of parameters 'thenCB' and 'thenCB' are incompatible.
77
- Type '(store: TestStore) => Promise<TestSelection>' is not assignable to type '(selection: TestSelection) => Promise<TestSelection>'.
78
- Types of parameters 'store' and 'selection' are incompatible.
79
- Property 'testStore' is missing in type 'TestSelection' but required in type 'TestStore'.
80
- /Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (441,3): Type '(store: I["istore"]) => I["istore"]' is not assignable to type '(store: TestStore, key: string, pm: IPM) => Promise<unknown>'.
81
- Type 'TestStore' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
82
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.adapter.ts (9,3): Type '() => Promise<void>' is not assignable to type '(input: {}, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<BaseBuilder<any, any, any, any, any, any>>'.
83
- Type 'Promise<void>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.
84
- Type 'void' is not assignable to type 'BaseBuilder<any, any, any, any, any, any>'.
85
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.adapter.ts (10,3): Type '(subject: BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => BaseBuilder<any, any, any, any, any, any>) => Promise<() => BaseBuilder<any, any, any, any, any, any>>' is not assignable to type '(subject: BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => BaseBuilder<any, any, any, any, any, any>, testResource: ITTestResourceConfiguration, initialValues: any, pm: IPM) => Promise<...>'.
86
- Type 'Promise<() => BaseBuilder<any, any, any, any, any, any>>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.
87
- Type '() => BaseBuilder<any, any, any, any, any, any>' is not assignable to type 'BaseBuilder<any, any, any, any, any, any>'.
88
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.adapter.ts (17,26): Expected 1 arguments, but got 2.
89
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.adapter.ts (20,26): Expected 1 arguments, but got 2.
90
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.adapter.ts (22,25): Type 'BaseBuilder<any, any, any, any, any, any>' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
91
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.implementation.ts (7,10): '"../classBuilder"' has no exported member named 'TestClassBuilder'. Did you mean 'ClassBuilder'?
92
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.implementation.ts (28,9): Argument of type 'typeof MockSuite' is not assignable to parameter of type 'ISuiteKlasser<I, O>'.
93
- Type 'typeof MockSuite' provides no match for the signature '(name: string, index: number, givens: IGivens<I>): BaseSuite<I, O>'.
94
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.implementation.ts (47,9): Expected 8 arguments, but got 9.
95
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.implementation.ts (60,9): Expected 8 arguments, but got 9.
96
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.implementation.ts (73,9): Expected 8 arguments, but got 9.
97
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.implementation.ts (86,9): Expected 8 arguments, but got 9.
98
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.implementation.ts (207,30): Type '(builder: ClassBuilder<any, any, any>) => Promise<ClassBuilder<any, any, any>>' is not assignable to type '(builder: ClassBuilder<any, any, any>) => ClassBuilder<any, any, any>'.
99
- Type 'Promise<ClassBuilder<any, any, any>>' is missing the following properties from type 'ClassBuilder<any, any, any>': specs, assertThis, testResourceRequirement, artifacts, and 12 more.
100
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.implementation.ts (209,23): Property 'testRun' does not exist on type 'ClassBuilder<any, any, any>'.
101
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.specification.ts (19,26): Expected 4 arguments, but got 3.
102
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.specification.ts (24,35): Expected 4 arguments, but got 3.
103
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.specification.ts (64,37): Expected 4 arguments, but got 3.
104
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.specification.ts (69,36): Expected 4 arguments, but got 3.
105
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.specification.ts (83,54): Cannot find name 'ITestJob'.
106
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/classBuilder.test.specification.ts (101,7): Expected 2 arguments, but got 3.
107
- /Users/adam/Code/testeranto/src/lib/classBuilder.test/mock.ts (45,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 & { ...; }'.
108
- 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, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
109
- /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.
110
- /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.
111
- /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")....'.
112
- 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>; }'.
113
- Types of property 'suites' are incompatible.
114
- Type 'Record<string, any>' is not assignable to type 'Record<string, never>'.
115
- 'string' index signatures are incompatible.
116
- Type 'any' is not assignable to type 'never'.
117
- /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<...>'.
118
- Types of parameters 'initialValues' and 'initializer' are incompatible.
119
- Type '(c?: any) => T["given"]' is not assignable to type 'T["iinitialValues"]'.
120
- 'T["iinitialValues"]' could be instantiated with an arbitrary type which could be unrelated to '(c?: any) => T["given"]'.
121
- /Users/adam/Code/testeranto/src/lib/index.ts (18,20): Type '"iinitialValues"' cannot be used to index type 'T'.
122
- /Users/adam/Code/testeranto/src/lib/index.ts (40,13): This expression is not callable.
123
- Type 'unknown' has no call signatures.
124
- /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>'.
125
- Types of property 'assertThis' are incompatible.
126
- Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
127
- Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
128
- /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 & { ...; }'.
129
- 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
130
- /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'.
131
- Type '(opts: ScreencastOptions, page: string) => any' is not assignable to type '(opts: { path: string; }, page?: string | undefined) => any'.
132
- Types of parameters 'opts' and 'opts' are incompatible.
133
- Type '{ path: string; }' is not assignable to type 'ScreencastOptions'.
134
- Types of property 'path' are incompatible.
135
- Type 'string' is not assignable to type '`${string}.webm`'.
136
- /Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
137
- /Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
138
- /Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
@@ -1,21 +0,0 @@
1
- src/lib/core.test/core.test.implementation.ts
2
- 38:30 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
3
- - undefined (fix)
4
- - undefined (fix)
5
- 58:61 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
6
- - undefined (fix)
7
- - undefined (fix)
8
- 71:37 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
9
- - undefined (fix)
10
- - undefined (fix)
11
- 75:25 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
12
- - undefined (fix)
13
- - undefined (fix)
14
- 79:37 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
15
- - undefined (fix)
16
- - undefined (fix)
17
- 79:47 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
18
- - undefined (fix)
19
- - undefined (fix)
20
- 86:41 'builder' is defined but never used. (@typescript-eslint/no-unused-vars)
21
- 137:19 'expectedMessage' is defined but never used. (@typescript-eslint/no-unused-vars)
@@ -1,7 +0,0 @@
1
- stderr > Starting inspector on 127.0.0.1:9229 failed: address already in use
2
- stdout > [DEBUG] BaseSuite constructor - name: Testeranto Core Functionality index: 0
3
- [DEBUG] BaseSuite initialized: Testeranto Core Functionality 0
4
- [DEBUG] BaseSuite givens: features,artifacts
5
- [DEBUG] BaseSuite constructor - name: Testeranto Advanced Features index: 1
6
- [DEBUG] BaseSuite initialized: Testeranto Advanced Features 1
7
- [DEBUG] BaseSuite givens: features,artifacts
@@ -1,2 +0,0 @@
1
-
2
- Fix the failing tests described in testeranto/reports/allTests/src/lib/core.test/core.test/node/tests.json and testeranto/reports/allTests/src/lib/core.test/core.test/node/logs.txt. Focus on the bdd tests before all other concerns. You may add any debugging you think is necessary.
@@ -1,18 +0,0 @@
1
-
2
- /add src/PM/pure.ts
3
- /add src/Pure.ts
4
- /add src/lib/core.test/core.test.specification.ts
5
- /add src/lib/core.test/MockCore.ts
6
- /add src/lib/core.test/core.test.implementation.ts
7
- /add src/lib/core.test/core.test.adapter.ts
8
- /add src/lib/core.test/core.test.ts
9
-
10
- /read node_modules/testeranto/docs/index.md
11
- /read node_modules/testeranto/docs/style.md
12
- /read node_modules/testeranto/docs/testing.ai.txt
13
- /read node_modules/testeranto/src/CoreTypes.ts
14
-
15
- /read testeranto/reports/allTests/src/lib/core.test/core.test/node/tests.json
16
- /read testeranto/reports/allTests/src/lib/core.test/core.test/node/logs.txt
17
- /read testeranto/reports/allTests/src/lib/core.test/core.test/node/type_errors.txt
18
- /read testeranto/reports/allTests/src/lib/core.test/core.test/node/lint_errors.txt
@@ -1,63 +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.test/core.test.adapter.ts (33,26): Expected 1 arguments, but got 2.
9
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.adapter.ts (36,26): Expected 1 arguments, but got 2.
10
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.adapter.ts (38,25): Type 'MockCore<any, any, any>' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
11
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.implementation.ts (25,11): Cannot find name 'specification'.
12
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.implementation.ts (27,11): Argument of type '{ ports: number[]; }' is not assignable to parameter of type 'ITTestResourceRequest'.
13
- Types of property 'ports' are incompatible.
14
- Type 'number[]' is not assignable to type 'number'.
15
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.implementation.ts (28,11): Cannot find name 'testAdapter'.
16
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.implementation.ts (41,9): Cannot find name 'specification'.
17
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.implementation.ts (43,11): Type 'never[]' is not assignable to type 'number'.
18
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.implementation.ts (44,9): Cannot find name 'testAdapter'.
19
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.implementation.ts (51,9): Cannot find name 'specification'.
20
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.implementation.ts (54,9): Cannot find name 'testAdapter'.
21
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.implementation.ts (61,9): Cannot find name 'specification'.
22
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.implementation.ts (63,11): Type 'never[]' is not assignable to type 'number'.
23
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.implementation.ts (64,14): Cannot find name 'testAdapter'.
24
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.implementation.ts (97,65): Property 'constructor' does not exist on type 'never'.
25
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.implementation.ts (141,30): Type '(builder: MockCore<any, any, any>) => Promise<MockCore<any, any, any>>' is not assignable to type '(builder: MockCore<any, any, any>) => MockCore<any, any, any>'.
26
- Type 'Promise<MockCore<any, any, any>>' is missing the following properties from type 'MockCore<any, any, any>': specs, testJobs, artifacts, testResourceRequirement, and 14 more.
27
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.specification.ts (29,7): Expected 2 arguments, but got 4.
28
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.specification.ts (42,13): Object literal may only specify known properties, and 'test' does not exist in type 'string[]'.
29
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.specification.ts (49,13): Object literal may only specify known properties, and 'ports' does not exist in type 'string[]'.
30
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.specification.ts (55,13): Object literal may only specify known properties, and 'assertThis' does not exist in type 'string[]'.
31
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.specification.ts (82,105): Expected 2 arguments, but got 3.
32
- /Users/adam/Code/testeranto/src/lib/core.test/core.test.types.ts (15,17): Generic type 'Ibdd_out' requires between 0 and 4 type arguments.
33
- /Users/adam/Code/testeranto/src/lib/core.test/MockCore.ts (32,56): Type 'never[]' is not assignable to type 'number'.
34
- /Users/adam/Code/testeranto/src/lib/core.test/MockCore.ts (72,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 & { ...; }'.
35
- 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
36
- /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")....'.
37
- 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>; }'.
38
- Types of property 'suites' are incompatible.
39
- Type 'Record<string, any>' is not assignable to type 'Record<string, never>'.
40
- 'string' index signatures are incompatible.
41
- Type 'any' is not assignable to type 'never'.
42
- /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<...>'.
43
- Types of parameters 'initialValues' and 'initializer' are incompatible.
44
- Type '(c?: any) => T["given"]' is not assignable to type 'T["iinitialValues"]'.
45
- 'T["iinitialValues"]' could be instantiated with an arbitrary type which could be unrelated to '(c?: any) => T["given"]'.
46
- /Users/adam/Code/testeranto/src/lib/index.ts (18,20): Type '"iinitialValues"' cannot be used to index type 'T'.
47
- /Users/adam/Code/testeranto/src/lib/index.ts (40,13): This expression is not callable.
48
- Type 'unknown' has no call signatures.
49
- /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>'.
50
- Types of property 'assertThis' are incompatible.
51
- Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
52
- Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
53
- /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'.
54
- Type '(opts: ScreencastOptions, page: string) => any' is not assignable to type '(opts: { path: string; }, page?: string | undefined) => any'.
55
- Types of parameters 'opts' and 'opts' are incompatible.
56
- Type '{ path: string; }' is not assignable to type 'ScreencastOptions'.
57
- Types of property 'path' are incompatible.
58
- Type 'string' is not assignable to type '`${string}.webm`'.
59
- /Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
60
- /Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
61
- /Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
62
- /Users/adam/Code/testeranto/src/Pure.ts (32,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 & { ...; }'.
63
- 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
@@ -1,20 +0,0 @@
1
- src/lib/pmProxy.test/implementation.ts
2
- 30:28 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
3
- - undefined (fix)
4
- - undefined (fix)
5
- 35:15 Unexpected lexical declaration in case block. (no-case-declarations)
6
- - undefined (fix)
7
- 93:38 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
8
- - undefined (fix)
9
- - undefined (fix)
10
- 93:55 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
11
- - undefined (fix)
12
- - undefined (fix)
13
-
14
- src/lib/pmProxy.test/index.ts
15
- 11:33 The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
16
- - If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
17
- - If you want a type meaning "any object", you probably want `object` instead.
18
- - If you want a type meaning "any value", you probably want `unknown` instead. (@typescript-eslint/no-empty-object-type)
19
- - undefined (fix)
20
- - undefined (fix)
@@ -1,31 +0,0 @@
1
- stderr > Starting inspector on 127.0.0.1:9229 failed: address already in use
2
- stdout > [DEBUG] BaseSuite constructor - name: PM Proxy Functionality index: 0
3
- stdout > [DEBUG] BaseSuite initialized: PM Proxy Functionality 0
4
- stdout > [DEBUG] BaseSuite givens: writeFileProxyTest,createWriteStreamProxyTest,screencastProxyTest,customScreenShotProxyTest,emptyPathTest,nestedPathTest,specialCharsTest
5
- stdout > [DEBUG] BaseSuite constructor - name: Proxy Type Coverage index: 0
6
- stdout > [DEBUG] BaseSuite initialized: Proxy Type Coverage 0
7
- stdout > [DEBUG] BaseSuite givens: butThenProxyTest,andWhenProxyTest,beforeEachProxyTest,afterEachProxyTest
8
- stdout > [DEBUG] BaseSuite constructor - name: Content Preservation index: 0
9
- stdout > [DEBUG] BaseSuite initialized: Content Preservation 0
10
- stdout > [DEBUG] BaseSuite givens: contentPreservationTest,objectContentTest
11
- stdout > [DEBUG] BaseSuite constructor - name: Error Cases index: 0
12
- stdout > [DEBUG] BaseSuite initialized: Error Cases 0
13
- stdout > [DEBUG] BaseSuite givens: invalidPathTest,undefinedInputTest
14
- stdout > receiveTestResourceConfig {"name":"src/lib/pmProxy.test/index.ts","ports":[],"fs":"testeranto/reports/allTests/src/lib/pmProxy.test/index/node","browserWSEndpoint":"ws://127.0.0.1:3234/devtools/browser/542e424f-5d11-4332-9796-c106911994da"}
15
- stdout > [Given] Setting currentStep for beforeEach: SomeBaseString
16
- stdout > [Then] Setting currentStep for butThen: theButTheProxyReturns: writeFileSync
17
- stdout > [Given] Setting currentStep for beforeEach: SomeBaseString
18
- stdout > [Then] Setting currentStep for butThen: theButTheProxyReturns: createWriteStream
19
- stdout > [Given] Setting currentStep for beforeEach: SomeBaseString
20
- stdout > [Then] Setting currentStep for butThen: theButTheProxyReturns: screencast
21
- stdout > [Given] Setting currentStep for beforeEach: SomeBaseString
22
- stdout > [Then] Setting currentStep for butThen: theButTheProxyReturns: customScreenShot
23
- stdout > [Given] Setting currentStep for beforeEach: SomeBaseString
24
- stdout > [Then] Setting currentStep for butThen: theButTheProxyReturns: writeFileSync
25
- stdout > [Given] Setting currentStep for beforeEach: SomeBaseString
26
- stdout > [Then] Setting currentStep for butThen: theButTheProxyReturns: writeFileSync
27
- stdout > [Given] Setting currentStep for beforeEach: SomeBaseString
28
- stdout > [Then] Setting currentStep for butThen: theButTheProxyReturns: writeFileSync
29
- stdout > [DEBUG] Features extracted: butThenProxy should rewrite writeFileSync paths,butThenProxy should rewrite createWriteStream paths,butThenProxy should rewrite screencast paths,butThenProxy should rewrite customScreenShot paths,butThenProxy should handle empty paths,butThenProxy should handle nested paths,butThenProxy should handle special characters in paths
30
- stdout > [DEBUG] Features extracted: butThenProxy should rewrite writeFileSync paths,butThenProxy should rewrite createWriteStream paths,butThenProxy should rewrite screencast paths,butThenProxy should rewrite customScreenShot paths,butThenProxy should handle empty paths,butThenProxy should handle nested paths,butThenProxy should handle special characters in paths
31
- stderr > goodbye node with failures 0
@@ -1,2 +0,0 @@
1
-
2
- Fix the failing tests described in testeranto/reports/allTests/src/lib/pmProxy.test/index/node/tests.json and testeranto/reports/allTests/src/lib/pmProxy.test/index/node/logs.txt. Focus on the bdd tests before all other concerns. You may add any debugging you think is necessary.
@@ -1,16 +0,0 @@
1
-
2
- /add src/lib/pmProxy.test/mockPMBase.ts
3
- /add src/lib/pmProxy.test/implementation.ts
4
- /add src/lib/pmProxy.test/specification.ts
5
- /add src/lib/pmProxy.test/adapter.ts
6
- /add src/lib/pmProxy.test/index.ts
7
-
8
- /read node_modules/testeranto/docs/index.md
9
- /read node_modules/testeranto/docs/style.md
10
- /read node_modules/testeranto/docs/testing.ai.txt
11
- /read node_modules/testeranto/src/CoreTypes.ts
12
-
13
- /read testeranto/reports/allTests/src/lib/pmProxy.test/index/node/tests.json
14
- /read testeranto/reports/allTests/src/lib/pmProxy.test/index/node/logs.txt
15
- /read testeranto/reports/allTests/src/lib/pmProxy.test/index/node/type_errors.txt
16
- /read testeranto/reports/allTests/src/lib/pmProxy.test/index/node/lint_errors.txt