testeranto 0.167.0 → 0.171.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 (181) hide show
  1. package/dist/common/src/NavBar.js +45 -0
  2. package/dist/common/src/PM/main.js +81 -59
  3. package/dist/common/src/Pure.js +16 -14
  4. package/dist/common/src/ReportServer.js +48 -5
  5. package/dist/common/src/Web.js +35 -20
  6. package/dist/common/src/components/SunriseAnimation.test/implementation.js +1 -0
  7. package/dist/common/src/components/SunriseAnimation.test/index.js +1 -0
  8. package/dist/common/src/components/SunriseAnimation.test/interface.js +1 -0
  9. package/dist/common/src/components/SunriseAnimation.test/specification.js +1 -0
  10. package/dist/common/src/components/TestStatusBadge.js +55 -0
  11. package/dist/common/src/components/pure/ProjectPageView.js +204 -0
  12. package/dist/common/src/components/pure/ProjectPageView.test/adapter.js +20 -0
  13. package/dist/common/src/components/pure/ProjectPageView.test/implementation.js +71 -0
  14. package/dist/common/src/components/pure/ProjectPageView.test/index.js +10 -0
  15. package/dist/common/src/components/pure/ProjectPageView.test/specification.js +19 -0
  16. package/dist/common/src/components/pure/ProjectPageView.test/types.js +2 -0
  17. package/dist/common/src/lib/BaseSuite.js +3 -3
  18. package/dist/common/src/lib/BaseSuite.test/test.js +1 -1
  19. package/dist/common/src/lib/abstractBase.js +41 -14
  20. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +1 -1
  21. package/dist/common/src/lib/pmProxy.js +185 -64
  22. package/dist/common/testeranto.config.js +6 -0
  23. package/dist/common/tsconfig.common.tsbuildinfo +1 -1
  24. package/dist/module/src/App.js +3 -3
  25. package/dist/module/src/PM/main.js +81 -59
  26. package/dist/module/src/ProjectsPage.js +1 -110
  27. package/dist/module/src/Pure.js +16 -14
  28. package/dist/module/src/ReportServer.js +48 -5
  29. package/dist/module/src/TestPage.js +45 -16
  30. package/dist/module/src/Web.js +35 -20
  31. package/dist/module/src/components/SunriseAnimation.test/implementation.js +1 -0
  32. package/dist/module/src/components/SunriseAnimation.test/index.js +1 -0
  33. package/dist/module/src/components/SunriseAnimation.test/interface.js +1 -0
  34. package/dist/module/src/components/SunriseAnimation.test/specification.js +1 -0
  35. package/dist/module/src/components/pure/ProjectPageView.js +197 -0
  36. package/dist/module/src/components/pure/ProjectPageView.test/adapter.js +17 -0
  37. package/dist/module/src/components/pure/ProjectPageView.test/implementation.js +68 -0
  38. package/dist/module/src/components/pure/ProjectPageView.test/index.js +5 -0
  39. package/dist/module/src/components/pure/ProjectPageView.test/specification.js +15 -0
  40. package/dist/module/src/components/pure/ProjectPageView.test/types.js +1 -0
  41. package/dist/module/src/components/pure/ProjectsPageView.js +58 -0
  42. package/dist/module/src/components/pure/TestPageView.js +136 -0
  43. package/dist/module/src/components/stateful/ProjectPage.js +63 -0
  44. package/dist/module/src/components/stateful/ProjectsPage.js +55 -0
  45. package/dist/module/src/components/stateful/TestPage.js +82 -0
  46. package/dist/module/src/lib/BaseSuite.js +3 -3
  47. package/dist/module/src/lib/BaseSuite.test/test.js +1 -1
  48. package/dist/module/src/lib/abstractBase.js +41 -14
  49. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +1 -1
  50. package/dist/module/src/lib/pmProxy.js +185 -64
  51. package/dist/module/testeranto.config.js +6 -0
  52. package/dist/module/tsconfig.module.tsbuildinfo +1 -1
  53. package/dist/prebuild/App.js +541 -495
  54. package/dist/prebuild/ReportServer.mjs +44 -4
  55. package/dist/prebuild/run.mjs +67 -39
  56. package/dist/types/src/NavBar.d.ts +19 -0
  57. package/dist/types/src/PM/index.d.ts +3 -1
  58. package/dist/types/src/PM/main.d.ts +0 -4
  59. package/dist/types/src/PM/node.d.ts +2 -2
  60. package/dist/types/src/components/SunriseAnimation.test/interface.d.ts +0 -0
  61. package/dist/types/src/components/SunriseAnimation.test/specification.d.ts +0 -0
  62. package/dist/types/src/components/TestStatusBadge.d.ts +15 -0
  63. package/dist/types/src/components/pure/ProjectPageView.d.ts +14 -0
  64. package/dist/types/src/components/pure/ProjectPageView.test/adapter.d.ts +3 -0
  65. package/dist/types/src/components/pure/ProjectPageView.test/implementation.d.ts +3 -0
  66. package/dist/types/src/components/pure/ProjectPageView.test/index.d.ts +3 -0
  67. package/dist/types/src/components/pure/ProjectPageView.test/specification.d.ts +3 -0
  68. package/dist/types/src/components/pure/ProjectPageView.test/types.d.ts +39 -0
  69. package/dist/types/src/lib/BaseSuite.d.ts +2 -0
  70. package/dist/types/src/lib/abstractBase.d.ts +12 -0
  71. package/dist/types/tsconfig.types.tsbuildinfo +1 -1
  72. package/package.json +3 -2
  73. package/src/App.tsx +5 -9
  74. package/src/PM/index.ts +1 -1
  75. package/src/PM/main.ts +87 -82
  76. package/src/PM/node.ts +2 -2
  77. package/src/ProjectsPage.tsx +1 -164
  78. package/src/Pure.ts +16 -16
  79. package/src/ReportServer.ts +49 -6
  80. package/src/TestPage.tsx +78 -5
  81. package/src/Web.ts +35 -35
  82. package/src/components/SunriseAnimation.test/implementation.ts +0 -0
  83. package/src/components/SunriseAnimation.test/index.ts +0 -0
  84. package/src/components/SunriseAnimation.test/interface.ts +0 -0
  85. package/src/components/SunriseAnimation.test/specification.ts +0 -0
  86. package/src/components/pure/ProjectPageView.test/adapter.ts +21 -0
  87. package/src/components/pure/ProjectPageView.test/implementation.tsx +84 -0
  88. package/src/components/pure/ProjectPageView.test/index.ts +8 -0
  89. package/src/components/pure/ProjectPageView.test/specification.ts +31 -0
  90. package/src/components/pure/ProjectPageView.test/types.ts +55 -0
  91. package/src/components/pure/ProjectPageView.tsx +332 -0
  92. package/src/components/pure/ProjectsPageView.tsx +99 -0
  93. package/src/components/pure/TestPageView.tsx +278 -0
  94. package/src/components/stateful/ProjectPage.tsx +83 -0
  95. package/src/components/stateful/ProjectsPage.tsx +73 -0
  96. package/src/components/stateful/TestPage.tsx +107 -0
  97. package/src/lib/BaseSuite.test/test.ts +1 -1
  98. package/src/lib/BaseSuite.ts +9 -4
  99. package/src/lib/abstractBase.ts +45 -14
  100. package/src/lib/baseBuilder.test/baseBuilder.test.adapter.ts +1 -1
  101. package/src/lib/pmProxy.ts +184 -87
  102. package/testeranto/App.js +541 -495
  103. package/testeranto/bundles/node/allTests/{chunk-4ONUZRZ4.mjs → chunk-3EUGBAOM.mjs} +1 -1
  104. package/testeranto/bundles/node/allTests/{chunk-IDCUSTSM.mjs → chunk-E75CSRER.mjs} +246 -115
  105. package/testeranto/bundles/node/allTests/{chunk-NQEP7SN4.mjs → chunk-M6DO7VMB.mjs} +1 -1
  106. package/testeranto/bundles/node/allTests/metafile.json +34 -34
  107. package/testeranto/bundles/node/allTests/src/lib/BaseSuite.test/node.test.mjs +4 -4
  108. package/testeranto/bundles/node/allTests/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +3 -3
  109. package/testeranto/bundles/node/allTests/src/lib/classBuilder.test/classBuilder.test.mjs +3 -3
  110. package/testeranto/bundles/node/allTests/src/lib/core.test/core.test.mjs +2 -17
  111. package/testeranto/bundles/node/allTests/src/lib/pmProxy.test/index.mjs +2 -2
  112. package/testeranto/bundles/pure/allTests/{chunk-5SBJWHSZ.mjs → chunk-KHDVEHF7.mjs} +2 -17
  113. package/testeranto/bundles/pure/allTests/{chunk-4ULDTZFU.mjs → chunk-VMUSFSZM.mjs} +246 -115
  114. package/testeranto/bundles/pure/allTests/metafile.json +57 -27
  115. package/testeranto/bundles/pure/allTests/src/Pure.test.mjs +2 -2
  116. package/testeranto/bundles/pure/allTests/src/lib/BaseSuite.test/pure.test.mjs +3 -3
  117. package/testeranto/bundles/pure/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +2 -29
  118. package/testeranto/bundles/web/allTests/chunk-HPYA4YZC.mjs +2283 -0
  119. package/testeranto/bundles/web/allTests/{chunk-TU3MJSSI.mjs → chunk-RLDR6LJN.mjs} +302 -127
  120. package/testeranto/bundles/web/allTests/{chunk-46E6YGGN.mjs → chunk-U7AW26HL.mjs} +292 -142
  121. package/testeranto/bundles/web/allTests/metafile.json +15062 -43
  122. package/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.html +19 -0
  123. package/testeranto/bundles/web/allTests/src/components/pure/ProjectPageView.test/index.mjs +37524 -0
  124. package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs +20 -2
  125. package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +26 -2
  126. package/testeranto/reports/allTests/config.json +8 -0
  127. package/testeranto/reports/allTests/src/Pure.test/pure/type_errors.txt +9 -3
  128. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/bdd_errors.txt +1 -0
  129. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +13 -0
  130. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/logs.txt +50 -0
  131. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/message.txt +2 -0
  132. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/prompt.txt +17 -0
  133. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/tests.json +32 -0
  134. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +68 -0
  135. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/logs.txt +22 -39
  136. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/tests.json +6 -3
  137. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/type_errors.txt +8 -1
  138. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/tests.json +6 -3
  139. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +9 -3
  140. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/logs.txt +66 -55
  141. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/prompt.txt +2 -2
  142. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/tests.json +6 -3
  143. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/type_errors.txt +10 -5
  144. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/logs.txt +16 -48
  145. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +18 -9
  146. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +8 -1
  147. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +10 -5
  148. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/logs.txt +62 -33
  149. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +2 -2
  150. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +18 -9
  151. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +10 -5
  152. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/logs.txt +37 -50
  153. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/tests.json +36 -18
  154. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt +8 -1
  155. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/logs.txt +2 -2
  156. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/type_errors.txt +9 -3
  157. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/logs.txt +21 -36
  158. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/tests.json +28 -14
  159. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/type_errors.txt +8 -1
  160. package/testeranto/reports/allTests/summary.json +15 -8
  161. package/testeranto/reportsweb_build_errors +25 -0
  162. package/testeranto.config.ts +7 -0
  163. package/tsc.log +100 -26
  164. package/dist/tsconfig.tsbuildinfo +0 -1
  165. package/testeranto/bundles/node/allTests/chunk-FFBRDUBH.mjs +0 -677
  166. package/testeranto/bundles/node/allTests/chunk-H2IBV7SY.mjs +0 -113
  167. package/testeranto/bundles/node/allTests/chunk-ZHOULXPN.mjs +0 -252
  168. package/testeranto/bundles/pure/allTests/chunk-CSMXYJ65.mjs +0 -200
  169. package/testeranto/bundles/pure/allTests/chunk-QK4IXLF6.mjs +0 -674
  170. package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test/manifest.json +0 -1
  171. package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/manifest.json +0 -1
  172. package/testeranto/reports/allTests/src/Pure.test/pure/manifest.json +0 -1
  173. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/manifest.json +0 -1
  174. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/manifest.json +0 -1
  175. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/manifest.json +0 -1
  176. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/manifest.json +0 -1
  177. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/manifest.json +0 -1
  178. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/manifest.json +0 -1
  179. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/manifest.json +0 -1
  180. /package/{testeranto/reports/allTests/src/Pure.test/pure/logs.txt → dist/types/src/components/SunriseAnimation.test/implementation.d.ts} +0 -0
  181. /package/{testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/logs.txt → dist/types/src/components/SunriseAnimation.test/index.d.ts} +0 -0
@@ -8,13 +8,15 @@
8
8
  "thens": [
9
9
  {
10
10
  "name": "initializedProperly: undefined",
11
- "error": false
11
+ "error": false,
12
+ "artifacts": []
12
13
  }
13
14
  ],
14
15
  "error": null,
15
16
  "features": [
16
17
  "ClassBuilder should initialize with default values"
17
- ]
18
+ ],
19
+ "artifacts": []
18
20
  },
19
21
  {
20
22
  "key": "customInput",
@@ -23,13 +25,15 @@
23
25
  "thens": [
24
26
  {
25
27
  "name": "initializedProperly: undefined",
26
- "error": false
28
+ "error": false,
29
+ "artifacts": []
27
30
  }
28
31
  ],
29
32
  "error": null,
30
33
  "features": {
31
34
  "custom": "input"
32
- }
35
+ },
36
+ "artifacts": []
33
37
  },
34
38
  {
35
39
  "key": "resourceRequirements",
@@ -38,7 +42,8 @@
38
42
  "thens": [
39
43
  {
40
44
  "name": "resourceRequirementsSet: undefined",
41
- "error": false
45
+ "error": false,
46
+ "artifacts": []
42
47
  }
43
48
  ],
44
49
  "error": null,
@@ -47,7 +52,8 @@
47
52
  3000,
48
53
  3001
49
54
  ]
50
- }
55
+ },
56
+ "artifacts": []
51
57
  },
52
58
  {
53
59
  "key": "specGeneration",
@@ -56,13 +62,15 @@
56
62
  "thens": [
57
63
  {
58
64
  "name": "specsGenerated: undefined",
59
- "error": false
65
+ "error": false,
66
+ "artifacts": []
60
67
  }
61
68
  ],
62
69
  "error": null,
63
70
  "features": [
64
71
  "Should generate specs from test specification"
65
- ]
72
+ ],
73
+ "artifacts": []
66
74
  },
67
75
  {
68
76
  "key": "jobCreation",
@@ -71,32 +79,37 @@
71
79
  "thens": [
72
80
  {
73
81
  "name": "jobsCreated: undefined",
74
- "error": false
82
+ "error": false,
83
+ "artifacts": []
75
84
  }
76
85
  ],
77
86
  "error": null,
78
87
  "features": [
79
88
  "Should create test jobs from specs"
80
- ]
89
+ ],
90
+ "artifacts": []
81
91
  },
82
92
  {
83
93
  "key": "artifactTracking",
84
94
  "name": "Default",
85
95
  "whens": [
86
96
  {
87
- "name": "addArtifact: [object Promise]"
97
+ "name": "addArtifact: [object Promise]",
98
+ "artifacts": []
88
99
  }
89
100
  ],
90
101
  "thens": [
91
102
  {
92
103
  "name": "artifactsTracked: undefined",
93
- "error": false
104
+ "error": false,
105
+ "artifacts": []
94
106
  }
95
107
  ],
96
108
  "error": null,
97
109
  "features": [
98
110
  "Should track artifacts"
99
- ]
111
+ ],
112
+ "artifacts": []
100
113
  },
101
114
  {
102
115
  "key": "overridesConfiguration",
@@ -105,25 +118,30 @@
105
118
  "thens": [
106
119
  {
107
120
  "name": "suitesOverridesConfigured: undefined",
108
- "error": false
121
+ "error": false,
122
+ "artifacts": []
109
123
  },
110
124
  {
111
125
  "name": "givensOverridesConfigured: undefined",
112
- "error": false
126
+ "error": false,
127
+ "artifacts": []
113
128
  },
114
129
  {
115
130
  "name": "whensOverridesConfigured: undefined",
116
- "error": false
131
+ "error": false,
132
+ "artifacts": []
117
133
  },
118
134
  {
119
135
  "name": "thensOverridesConfigured: undefined",
120
- "error": false
136
+ "error": false,
137
+ "artifacts": []
121
138
  }
122
139
  ],
123
140
  "error": null,
124
141
  "features": [
125
142
  "Should properly configure all overrides"
126
- ]
143
+ ],
144
+ "artifacts": []
127
145
  }
128
146
  ],
129
147
  "fails": 0,
@@ -1,4 +1,5 @@
1
- /Users/adam/Code/testeranto/src/lib/abstractBase.ts (222,17): Catch clause variable type annotation must be 'any' or 'unknown' if specified.
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.
2
3
  /Users/adam/Code/testeranto/src/lib/basebuilder.ts (79,15): This expression is not callable.
3
4
  Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
4
5
  Type 'void' has no call signatures.
@@ -126,6 +127,12 @@
126
127
  Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
127
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 & { ...; }'.
128
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`'.
129
136
  /Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
130
137
  /Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
131
138
  /Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
@@ -1,7 +1,7 @@
1
1
  stderr > Starting inspector on 127.0.0.1:9229 failed: address already in use
2
2
  stdout > [DEBUG] BaseSuite constructor - name: Testeranto Core Functionality index: 0
3
3
  [DEBUG] BaseSuite initialized: Testeranto Core Functionality 0
4
- [DEBUG] BaseSuite givens: [ 'features', 'artifacts' ]
4
+ [DEBUG] BaseSuite givens: features,artifacts
5
5
  [DEBUG] BaseSuite constructor - name: Testeranto Advanced Features index: 1
6
6
  [DEBUG] BaseSuite initialized: Testeranto Advanced Features 1
7
- [DEBUG] BaseSuite givens: [ 'features', 'artifacts' ]
7
+ [DEBUG] BaseSuite givens: features,artifacts
@@ -1,4 +1,5 @@
1
- /Users/adam/Code/testeranto/src/lib/abstractBase.ts (222,17): Catch clause variable type annotation must be 'any' or 'unknown' if specified.
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.
2
3
  /Users/adam/Code/testeranto/src/lib/basebuilder.ts (79,15): This expression is not callable.
3
4
  Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
4
5
  Type 'void' has no call signatures.
@@ -49,9 +50,14 @@
49
50
  Types of property 'assertThis' are incompatible.
50
51
  Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
51
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`'.
52
59
  /Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
53
60
  /Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
54
61
  /Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
55
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 & { ...; }'.
56
- 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
57
- /Users/adam/Code/testeranto/src/Pure.ts (56,58): Property 'testImplementation' does not exist on type 'PureTesteranto<I, O, 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,46 +1,31 @@
1
1
  stderr > Starting inspector on 127.0.0.1:9229 failed: address already in use
2
2
  stdout > [DEBUG] BaseSuite constructor - name: PM Proxy Functionality index: 0
3
3
  [DEBUG] BaseSuite initialized: PM Proxy Functionality 0
4
- [DEBUG] BaseSuite givens: [
5
- 'writeFileProxyTest',
6
- 'createWriteStreamProxyTest',
7
- 'screencastProxyTest',
8
- 'customScreenShotProxyTest',
9
- 'emptyPathTest',
10
- 'nestedPathTest',
11
- 'specialCharsTest'
12
- ]
4
+ [DEBUG] BaseSuite givens: writeFileProxyTest,createWriteStreamProxyTest,screencastProxyTest,customScreenShotProxyTest,emptyPathTest,nestedPathTest,specialCharsTest
13
5
  [DEBUG] BaseSuite constructor - name: Proxy Type Coverage index: 0
14
6
  [DEBUG] BaseSuite initialized: Proxy Type Coverage 0
15
- [DEBUG] BaseSuite givens: [
16
- 'butThenProxyTest',
17
- 'andWhenProxyTest',
18
- 'beforeEachProxyTest',
19
- 'afterEachProxyTest'
20
- ]
7
+ [DEBUG] BaseSuite givens: butThenProxyTest,andWhenProxyTest,beforeEachProxyTest,afterEachProxyTest
21
8
  [DEBUG] BaseSuite constructor - name: Content Preservation index: 0
22
9
  [DEBUG] BaseSuite initialized: Content Preservation 0
23
- [DEBUG] BaseSuite givens: [ 'contentPreservationTest', 'objectContentTest' ]
10
+ [DEBUG] BaseSuite givens: contentPreservationTest,objectContentTest
24
11
  [DEBUG] BaseSuite constructor - name: Error Cases index: 0
25
12
  [DEBUG] BaseSuite initialized: Error Cases 0
26
- [DEBUG] BaseSuite givens: [ 'invalidPathTest', 'undefinedInputTest' ]
27
- 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/944a4827-2bdb-429e-8302-6e91eb8d37b6"}
28
- stdout > [DEBUG] Features extracted: [
29
- 'butThenProxy should rewrite writeFileSync paths',
30
- 'butThenProxy should rewrite createWriteStream paths',
31
- 'butThenProxy should rewrite screencast paths',
32
- 'butThenProxy should rewrite customScreenShot paths',
33
- 'butThenProxy should handle empty paths',
34
- 'butThenProxy should handle nested paths',
35
- 'butThenProxy should handle special characters in paths'
36
- ]
37
- [DEBUG] Features extracted: [
38
- 'butThenProxy should rewrite writeFileSync paths',
39
- 'butThenProxy should rewrite createWriteStream paths',
40
- 'butThenProxy should rewrite screencast paths',
41
- 'butThenProxy should rewrite customScreenShot paths',
42
- 'butThenProxy should handle empty paths',
43
- 'butThenProxy should handle nested paths',
44
- 'butThenProxy should handle special characters in paths'
45
- ]
13
+ [DEBUG] BaseSuite givens: invalidPathTest,undefinedInputTest
14
+ 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/394ee8f6-34d6-4f6c-9e91-1aedeebe3685"}
15
+ [Given] Setting currentStep for beforeEach: SomeBaseString
16
+ [Then] Setting currentStep for butThen: theButTheProxyReturns: writeFileSync
17
+ [Given] Setting currentStep for beforeEach: SomeBaseString
18
+ [Then] Setting currentStep for butThen: theButTheProxyReturns: createWriteStream
19
+ [Given] Setting currentStep for beforeEach: SomeBaseString
20
+ [Then] Setting currentStep for butThen: theButTheProxyReturns: screencast
21
+ [Given] Setting currentStep for beforeEach: SomeBaseString
22
+ [Then] Setting currentStep for butThen: theButTheProxyReturns: customScreenShot
23
+ [Given] Setting currentStep for beforeEach: SomeBaseString
24
+ [Then] Setting currentStep for butThen: theButTheProxyReturns: writeFileSync
25
+ [Given] Setting currentStep for beforeEach: SomeBaseString
26
+ [Then] Setting currentStep for butThen: theButTheProxyReturns: writeFileSync
27
+ [Given] Setting currentStep for beforeEach: SomeBaseString
28
+ [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
+ [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
46
31
  stderr > goodbye node with failures 0
@@ -8,13 +8,15 @@
8
8
  "thens": [
9
9
  {
10
10
  "name": "theButTheProxyReturns: writeFileSync",
11
- "error": "TypeError: store.butThenProxy is not a function"
11
+ "error": "TypeError: store.butThenProxy is not a function",
12
+ "artifacts": []
12
13
  }
13
14
  ],
14
15
  "error": null,
15
16
  "features": [
16
17
  "butThenProxy should rewrite writeFileSync paths"
17
- ]
18
+ ],
19
+ "artifacts": []
18
20
  },
19
21
  {
20
22
  "key": "createWriteStreamProxyTest",
@@ -23,13 +25,15 @@
23
25
  "thens": [
24
26
  {
25
27
  "name": "theButTheProxyReturns: createWriteStream",
26
- "error": "TypeError: store.butThenProxy is not a function"
28
+ "error": "TypeError: store.butThenProxy is not a function",
29
+ "artifacts": []
27
30
  }
28
31
  ],
29
32
  "error": null,
30
33
  "features": [
31
34
  "butThenProxy should rewrite createWriteStream paths"
32
- ]
35
+ ],
36
+ "artifacts": []
33
37
  },
34
38
  {
35
39
  "key": "screencastProxyTest",
@@ -38,13 +42,15 @@
38
42
  "thens": [
39
43
  {
40
44
  "name": "theButTheProxyReturns: screencast",
41
- "error": "TypeError: store.butThenProxy is not a function"
45
+ "error": "TypeError: store.butThenProxy is not a function",
46
+ "artifacts": []
42
47
  }
43
48
  ],
44
49
  "error": null,
45
50
  "features": [
46
51
  "butThenProxy should rewrite screencast paths"
47
- ]
52
+ ],
53
+ "artifacts": []
48
54
  },
49
55
  {
50
56
  "key": "customScreenShotProxyTest",
@@ -53,13 +59,15 @@
53
59
  "thens": [
54
60
  {
55
61
  "name": "theButTheProxyReturns: customScreenShot",
56
- "error": "TypeError: store.butThenProxy is not a function"
62
+ "error": "TypeError: store.butThenProxy is not a function",
63
+ "artifacts": []
57
64
  }
58
65
  ],
59
66
  "error": null,
60
67
  "features": [
61
68
  "butThenProxy should rewrite customScreenShot paths"
62
- ]
69
+ ],
70
+ "artifacts": []
63
71
  },
64
72
  {
65
73
  "key": "emptyPathTest",
@@ -68,13 +76,15 @@
68
76
  "thens": [
69
77
  {
70
78
  "name": "theButTheProxyReturns: writeFileSync",
71
- "error": "TypeError: store.butThenProxy is not a function"
79
+ "error": "TypeError: store.butThenProxy is not a function",
80
+ "artifacts": []
72
81
  }
73
82
  ],
74
83
  "error": null,
75
84
  "features": [
76
85
  "butThenProxy should handle empty paths"
77
- ]
86
+ ],
87
+ "artifacts": []
78
88
  },
79
89
  {
80
90
  "key": "nestedPathTest",
@@ -83,13 +93,15 @@
83
93
  "thens": [
84
94
  {
85
95
  "name": "theButTheProxyReturns: writeFileSync",
86
- "error": "TypeError: store.butThenProxy is not a function"
96
+ "error": "TypeError: store.butThenProxy is not a function",
97
+ "artifacts": []
87
98
  }
88
99
  ],
89
100
  "error": null,
90
101
  "features": [
91
102
  "butThenProxy should handle nested paths"
92
- ]
103
+ ],
104
+ "artifacts": []
93
105
  },
94
106
  {
95
107
  "key": "specialCharsTest",
@@ -98,13 +110,15 @@
98
110
  "thens": [
99
111
  {
100
112
  "name": "theButTheProxyReturns: writeFileSync",
101
- "error": "TypeError: store.butThenProxy is not a function"
113
+ "error": "TypeError: store.butThenProxy is not a function",
114
+ "artifacts": []
102
115
  }
103
116
  ],
104
117
  "error": null,
105
118
  "features": [
106
119
  "butThenProxy should handle special characters in paths"
107
- ]
120
+ ],
121
+ "artifacts": []
108
122
  }
109
123
  ],
110
124
  "fails": 0,
@@ -1,4 +1,5 @@
1
- /Users/adam/Code/testeranto/src/lib/abstractBase.ts (222,17): Catch clause variable type annotation must be 'any' or 'unknown' if specified.
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.
2
3
  /Users/adam/Code/testeranto/src/lib/basebuilder.ts (79,15): This expression is not callable.
3
4
  Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
4
5
  Type 'void' has no call signatures.
@@ -64,6 +65,12 @@
64
65
  /Users/adam/Code/testeranto/src/lib/pmProxy.test/types.ts (21,17): Generic type 'Ibdd_out' requires between 0 and 4 type arguments.
65
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 & { ...; }'.
66
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`'.
67
74
  /Users/adam/Code/testeranto/src/PM/web.ts (56,12): Cannot find name 'opts'.
68
75
  /Users/adam/Code/testeranto/src/PM/web.ts (57,57): Cannot find name 'opts'.
69
76
  /Users/adam/Code/testeranto/src/PM/web.ts (59,7): Cannot find name 'page'. Did you mean the instance member 'this.page'?
@@ -1,13 +1,20 @@
1
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
+ },
2
9
  "src/lib/BaseSuite.test/node.test.ts": {
3
- "typeErrors": 44,
10
+ "typeErrors": 46,
4
11
  "staticErrors": 0,
5
12
  "runTimeErrors": 0,
6
13
  "prompt": "aider --model deepseek/deepseek-chat --load testeranto/allTests/reports/node/src/lib/BaseSuite.test/node.test/prompt.txt",
7
14
  "failingFeatures": {}
8
15
  },
9
16
  "src/lib/BaseSuite.test/pure.test.ts": {
10
- "typeErrors": 45,
17
+ "typeErrors": 46,
11
18
  "staticErrors": 0,
12
19
  "runTimeErrors": 0,
13
20
  "prompt": "aider --model deepseek/deepseek-chat --load testeranto/allTests/reports/pure/src/lib/BaseSuite.test/pure.test/prompt.txt",
@@ -21,35 +28,35 @@
21
28
  "failingFeatures": {}
22
29
  },
23
30
  "src/Pure.test.ts": {
24
- "typeErrors": 38,
31
+ "typeErrors": 39,
25
32
  "staticErrors": 0,
26
- "runTimeErrors": 1,
33
+ "runTimeErrors": -1,
27
34
  "prompt": "aider --model deepseek/deepseek-chat --load testeranto/allTests/reports/pure/src/Pure.test/prompt.txt",
28
35
  "failingFeatures": {}
29
36
  },
30
37
  "src/lib/pmProxy.test/index.ts": {
31
- "typeErrors": 30,
38
+ "typeErrors": 32,
32
39
  "staticErrors": 2,
33
40
  "runTimeErrors": 0,
34
41
  "prompt": "aider --model deepseek/deepseek-chat --load testeranto/allTests/reports/node/src/lib/pmProxy.test/index/prompt.txt",
35
42
  "failingFeatures": {}
36
43
  },
37
44
  "src/lib/core.test/core.test.ts": {
38
- "typeErrors": 38,
45
+ "typeErrors": 39,
39
46
  "staticErrors": 1,
40
47
  "runTimeErrors": 0,
41
48
  "prompt": "aider --model deepseek/deepseek-chat --load testeranto/allTests/reports/node/src/lib/core.test/core.test/prompt.txt",
42
49
  "failingFeatures": {}
43
50
  },
44
51
  "src/lib/classBuilder.test/classBuilder.test.ts": {
45
- "typeErrors": 64,
52
+ "typeErrors": 66,
46
53
  "staticErrors": 0,
47
54
  "runTimeErrors": 0,
48
55
  "prompt": "aider --model deepseek/deepseek-chat --load testeranto/allTests/reports/node/src/lib/classBuilder.test/classBuilder.test/prompt.txt",
49
56
  "failingFeatures": {}
50
57
  },
51
58
  "src/lib/baseBuilder.test/baseBuilder.test.node.ts": {
52
- "typeErrors": 27,
59
+ "typeErrors": 29,
53
60
  "staticErrors": 0,
54
61
  "runTimeErrors": 0,
55
62
  "prompt": "aider --model deepseek/deepseek-chat --load testeranto/allTests/reports/node/src/lib/baseBuilder.test/baseBuilder.test.node/prompt.txt",
@@ -0,0 +1,25 @@
1
+ {
2
+ "errors": [
3
+ {
4
+ "id": "",
5
+ "location": {
6
+ "column": 23,
7
+ "file": "node_modules/testeranto-react/src/react-dom/component/web.ts",
8
+ "length": 20,
9
+ "line": 2,
10
+ "lineText": "import Testeranto from \"testeranto/src/Web\";",
11
+ "namespace": "",
12
+ "suggestion": ""
13
+ },
14
+ "notes": [
15
+ {
16
+ "location": null,
17
+ "text": "You can mark the path \"testeranto/src/Web\" as external to exclude it from the bundle, which will remove this error."
18
+ }
19
+ ],
20
+ "pluginName": "",
21
+ "text": "Could not resolve \"testeranto/src/Web\""
22
+ }
23
+ ],
24
+ "warnings": []
25
+ }
@@ -4,6 +4,13 @@ const config: IProject = {
4
4
  projects: {
5
5
  allTests: {
6
6
  tests: [
7
+ [
8
+ "src/components/pure/ProjectPageView.test/index.ts",
9
+ "web",
10
+ { ports: 0 },
11
+ [],
12
+ ],
13
+
7
14
  ["src/lib/BaseSuite.test/node.test.ts", "node", { ports: 0 }, []],
8
15
  ["src/lib/BaseSuite.test/pure.test.ts", "pure", { ports: 0 }, []],
9
16
  ["src/lib/BaseSuite.test/web.test.ts", "web", { ports: 0 }, []],