@testspectra/cli 1.0.70 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (277) hide show
  1. package/LICENSE.md +48 -0
  2. package/README.md +36 -270
  3. package/bin/.testspectra-runner.hash +1 -0
  4. package/bin/spectra.js +1 -1
  5. package/bin/testspectra-runner +0 -0
  6. package/demo-app/assets/index-DPfv5_EF.js +116 -0
  7. package/demo-app/assets/index-gIwu2EMV.css +1 -0
  8. package/demo-app/index.html +2 -2
  9. package/dist/.tsbuildinfo +1 -0
  10. package/dist/commands/__tests__/cloud-run.test.d.ts +1 -0
  11. package/dist/commands/__tests__/cloud-run.test.js +93 -0
  12. package/dist/commands/__tests__/doctor.test.d.ts +1 -0
  13. package/dist/commands/__tests__/doctor.test.js +39 -0
  14. package/dist/commands/__tests__/init.test.d.ts +1 -0
  15. package/dist/commands/__tests__/init.test.js +148 -0
  16. package/dist/commands/__tests__/license.test.d.ts +1 -0
  17. package/dist/commands/__tests__/license.test.js +13 -0
  18. package/dist/commands/__tests__/refactor.test.d.ts +1 -0
  19. package/dist/commands/__tests__/refactor.test.js +64 -0
  20. package/dist/commands/__tests__/run-e2e.test.d.ts +1 -0
  21. package/dist/commands/__tests__/run-e2e.test.js +181 -0
  22. package/dist/commands/__tests__/run.test.d.ts +1 -0
  23. package/dist/commands/__tests__/run.test.js +197 -0
  24. package/dist/commands/__tests__/watch.test.d.ts +1 -0
  25. package/dist/commands/__tests__/watch.test.js +155 -0
  26. package/dist/commands/add.js +86 -85
  27. package/dist/commands/cloud-run.d.ts +11 -0
  28. package/dist/commands/cloud-run.js +118 -0
  29. package/dist/commands/demo.js +7 -7
  30. package/dist/commands/devices.d.ts +14 -2
  31. package/dist/commands/devices.js +44 -34
  32. package/dist/commands/doctor.d.ts +3 -1
  33. package/dist/commands/doctor.js +43 -264
  34. package/dist/commands/init.d.ts +1 -1
  35. package/dist/commands/init.js +206 -196
  36. package/dist/commands/install.d.ts +4 -0
  37. package/dist/commands/install.js +59 -0
  38. package/dist/commands/license.d.ts +4 -0
  39. package/dist/commands/license.js +30 -0
  40. package/dist/commands/refactor.d.ts +8 -0
  41. package/dist/commands/refactor.js +78 -0
  42. package/dist/commands/run.d.ts +22 -1
  43. package/dist/commands/run.js +252 -109
  44. package/dist/commands/sync-types.d.ts +4 -0
  45. package/dist/commands/sync-types.js +14 -0
  46. package/dist/commands/update.js +39 -43
  47. package/dist/commands/watch.d.ts +6 -0
  48. package/dist/commands/watch.js +47 -43
  49. package/dist/config/loader.d.ts +1 -1
  50. package/dist/config/loader.js +40 -25
  51. package/dist/config/schema.d.ts +117 -49
  52. package/dist/config/schema.js +41 -34
  53. package/dist/generator/__tests__/tsconfig-isolation.test.d.ts +1 -0
  54. package/dist/generator/__tests__/tsconfig-isolation.test.js +278 -0
  55. package/dist/generator/__tests__/type-generator.test.d.ts +1 -0
  56. package/dist/generator/__tests__/type-generator.test.js +386 -0
  57. package/dist/generator/index.d.ts +2 -0
  58. package/dist/generator/index.js +2 -0
  59. package/dist/generator/tsconfig-generator.d.ts +27 -0
  60. package/dist/generator/tsconfig-generator.js +391 -0
  61. package/dist/generator/type-generator.d.ts +36 -0
  62. package/dist/generator/type-generator.js +644 -0
  63. package/dist/index.d.ts +9 -5
  64. package/dist/index.js +124 -51
  65. package/dist/lifecycle/__tests__/lifecycle-engine.test.d.ts +1 -0
  66. package/dist/lifecycle/__tests__/lifecycle-engine.test.js +290 -0
  67. package/dist/lifecycle/hook-discovery.d.ts +24 -0
  68. package/dist/lifecycle/hook-discovery.js +60 -0
  69. package/dist/lifecycle/hook-dispatcher.d.ts +34 -0
  70. package/dist/lifecycle/hook-dispatcher.js +190 -0
  71. package/dist/lifecycle/index.d.ts +3 -0
  72. package/dist/lifecycle/index.js +3 -0
  73. package/dist/lifecycle/parallel-grouping.d.ts +27 -0
  74. package/dist/lifecycle/parallel-grouping.js +151 -0
  75. package/dist/mobile/__tests__/android-device-e2e.test.d.ts +1 -0
  76. package/dist/mobile/__tests__/android-device-e2e.test.js +53 -0
  77. package/dist/mobile/__tests__/device-pool.test.d.ts +1 -0
  78. package/dist/mobile/__tests__/device-pool.test.js +97 -0
  79. package/dist/mobile/device-pool.d.ts +23 -0
  80. package/dist/mobile/device-pool.js +1 -0
  81. package/dist/mobile/index.d.ts +1 -0
  82. package/dist/mobile/index.js +1 -0
  83. package/dist/refactor/__tests__/refactor-engine.test.d.ts +1 -0
  84. package/dist/refactor/__tests__/refactor-engine.test.js +175 -0
  85. package/dist/refactor/index.d.ts +1 -0
  86. package/dist/refactor/index.js +1 -0
  87. package/dist/refactor/refactor-engine.d.ts +25 -0
  88. package/dist/refactor/refactor-engine.js +255 -0
  89. package/dist/reporter/__tests__/semantic-formatter.test.d.ts +1 -0
  90. package/dist/reporter/__tests__/semantic-formatter.test.js +73 -0
  91. package/dist/reporter/semantic-formatter.d.ts +6 -0
  92. package/dist/reporter/semantic-formatter.js +191 -0
  93. package/dist/reporter/summary-view.d.ts +12 -0
  94. package/dist/reporter/summary-view.js +19 -0
  95. package/dist/reporter/terminal-stream.d.ts +32 -0
  96. package/dist/reporter/terminal-stream.js +82 -0
  97. package/dist/reporter/types.d.ts +2 -0
  98. package/dist/reporter/types.js +1 -0
  99. package/dist/runner/bridge.d.ts +10 -5
  100. package/dist/runner/bridge.js +69 -44
  101. package/dist/runner/reporter.d.ts +30 -2
  102. package/dist/runner/reporter.js +419 -13
  103. package/dist/server/demo.js +43 -44
  104. package/dist/types/generator.d.ts +1 -17
  105. package/dist/types/generator.js +1 -443
  106. package/dist/utils/demo-server.js +38 -35
  107. package/package.json +20 -12
  108. package/templates/default/CLAUDE.md +7 -5
  109. package/templates/default/fixtures/apiData.json +24 -0
  110. package/templates/default/package.json +13 -4
  111. package/templates/default/page-objects/MatchersPage/mobile.ts +41 -16
  112. package/templates/default/page-objects/MatchersPage/web.ts +14 -0
  113. package/templates/default/page-objects/NavigationPage/mobile.ts +10 -1
  114. package/templates/default/page-objects/PlaygroundPage/mobile.ts +27 -17
  115. package/templates/default/page-objects/PlaygroundPage/web.ts +2 -0
  116. package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts +11 -0
  117. package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/spec.md +12 -0
  118. package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts +27 -0
  119. package/templates/default/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts +16 -0
  120. package/templates/default/specs/ApiInterception/TC-0009-post-mocking/spec.md +12 -0
  121. package/templates/default/specs/ApiInterception/TC-0009-post-mocking/web.test.ts +24 -0
  122. package/templates/default/specs/ApiInterception/suite.md +9 -0
  123. package/templates/default/specs/BrowserContext/TC-0007-title-and-navigation/mobile.test.ts +7 -1
  124. package/templates/default/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts +17 -3
  125. package/templates/default/specs/ContentMatchers/TC-0005-text-and-values/mobile.test.ts +15 -1
  126. package/templates/default/specs/ContentMatchers/TC-0005-text-and-values/web.test.ts +14 -4
  127. package/templates/default/specs/ContentMatchers/TC-0006-collections-and-empty/mobile.test.ts +9 -1
  128. package/templates/default/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts +8 -3
  129. package/templates/default/specs/ElementMatchers/TC-0003-visibility-and-dom/mobile.test.ts +9 -1
  130. package/templates/default/specs/ElementMatchers/TC-0003-visibility-and-dom/web.test.ts +9 -3
  131. package/templates/default/specs/ElementMatchers/TC-0004-states-and-attributes/mobile.test.ts +27 -1
  132. package/templates/default/specs/ElementMatchers/TC-0004-states-and-attributes/web.test.ts +27 -6
  133. package/templates/default/specs/Playground/TC-0001-form-controls/mobile.test.ts +4 -1
  134. package/templates/default/specs/Playground/TC-0001-form-controls/web.test.ts +3 -3
  135. package/templates/default/specs/Playground/TC-0002-toggle-elements/mobile.test.ts +4 -1
  136. package/templates/default/specs/Playground/TC-0002-toggle-elements/web.test.ts +2 -2
  137. package/templates/default/spectra.config.ts +21 -14
  138. package/templates/default/support/actions/fillCredentials/mobile.action.ts +2 -2
  139. package/templates/default/support/steps/togglePlaygroundStates/mobile.step.ts +2 -0
  140. package/templates/default/support/steps/togglePlaygroundStates/web.step.ts +2 -2
  141. package/templates/default/support/steps/verifyPlaygroundState/mobile.step.ts +3 -1
  142. package/templates/default/support/steps/verifyPlaygroundState/web.step.ts +3 -3
  143. package/templates/default/tsconfig.json +3 -1
  144. package/templates/nx/.nx/workspace-data/d/daemon.log +168 -0
  145. package/templates/nx/CLAUDE.md +2 -2
  146. package/templates/nx/package.json +7 -5
  147. package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts +3 -0
  148. package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/spec.md +12 -0
  149. package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts +27 -0
  150. package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts +3 -0
  151. package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/spec.md +12 -0
  152. package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts +24 -0
  153. package/templates/nx/packages/matchers/e2e/specs/ApiInterception/suite.md +9 -0
  154. package/templates/nx/packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts +17 -3
  155. package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/web.test.ts +14 -4
  156. package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts +8 -3
  157. package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/web.test.ts +9 -3
  158. package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/web.test.ts +27 -6
  159. package/templates/nx/packages/playground/e2e/specs/Playground/TC-0001-form-controls/web.test.ts +3 -3
  160. package/templates/nx/packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/web.test.ts +2 -2
  161. package/templates/nx/pnpm-lock.yaml +6663 -0
  162. package/templates/nx/pnpm-workspace.yaml +2 -1
  163. package/templates/nx/shared/testing/fixtures/apiData.json +24 -0
  164. package/templates/nx/shared/testing/page-objects/MatchersPage/mobile.ts +12 -0
  165. package/templates/nx/shared/testing/page-objects/MatchersPage/web.ts +14 -0
  166. package/templates/nx/shared/testing/page-objects/PlaygroundPage/web.ts +2 -0
  167. package/templates/nx/shared/testing/project.json +19 -0
  168. package/templates/nx/shared/testing/support/steps/togglePlaygroundStates/web.step.ts +2 -2
  169. package/templates/nx/shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts +1 -1
  170. package/templates/nx/shared/testing/support/steps/verifyPlaygroundState/web.step.ts +3 -3
  171. package/templates/nx/spectra.config.ts +19 -12
  172. package/templates/nx/tsconfig.json +3 -1
  173. package/demo-app/assets/index-DAUlrHTr.css +0 -1
  174. package/demo-app/assets/index-DN2Kb0A8.js +0 -100
  175. package/dist/index.cjs +0 -101
  176. package/dist/plugin.cjs +0 -575
  177. package/dist/plugin.d.ts +0 -16
  178. package/dist/plugin.js +0 -184
  179. package/dist/step/index.d.ts +0 -6
  180. package/dist/step/index.js +0 -6
  181. package/dist/step/matchers.d.ts +0 -14
  182. package/dist/step/matchers.js +0 -114
  183. package/dist/step/proto.d.ts +0 -46
  184. package/dist/step/proto.js +0 -114
  185. package/dist/step/runner/collection.d.ts +0 -13
  186. package/dist/step/runner/collection.js +0 -51
  187. package/dist/step/runner/single.d.ts +0 -21
  188. package/dist/step/runner/single.js +0 -138
  189. package/dist/step/spectra.d.ts +0 -34
  190. package/dist/step/spectra.js +0 -156
  191. package/dist/step/types.d.ts +0 -32
  192. package/dist/step/types.js +0 -5
  193. package/templates/default/tsconfig.spectra.android.json +0 -46
  194. package/templates/default/tsconfig.spectra.ios.json +0 -46
  195. package/templates/default/tsconfig.spectra.json +0 -22
  196. package/templates/default/tsconfig.spectra.web.json +0 -53
  197. package/templates/nx/fixtures/playgroundData.json +0 -7
  198. package/templates/nx/global-hooks/after/mobile.hook.ts +0 -3
  199. package/templates/nx/global-hooks/after/web.hook.ts +0 -3
  200. package/templates/nx/global-hooks/before/mobile.hook.ts +0 -3
  201. package/templates/nx/global-hooks/before/web.hook.ts +0 -3
  202. package/templates/nx/page-objects/MatchersPage/mobile.ts +0 -21
  203. package/templates/nx/page-objects/MatchersPage/web.ts +0 -23
  204. package/templates/nx/page-objects/NavigationPage/mobile.ts +0 -5
  205. package/templates/nx/page-objects/NavigationPage/web.ts +0 -8
  206. package/templates/nx/page-objects/PlaygroundPage/mobile.ts +0 -26
  207. package/templates/nx/page-objects/PlaygroundPage/web.ts +0 -29
  208. package/templates/nx/specs/BrowserContext/TC-0007-title-and-navigation/mobile.test.ts +0 -3
  209. package/templates/nx/specs/BrowserContext/TC-0007-title-and-navigation/spec.md +0 -12
  210. package/templates/nx/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts +0 -5
  211. package/templates/nx/specs/BrowserContext/suite.md +0 -9
  212. package/templates/nx/specs/ContentMatchers/TC-0005-text-and-values/mobile.test.ts +0 -3
  213. package/templates/nx/specs/ContentMatchers/TC-0005-text-and-values/spec.md +0 -12
  214. package/templates/nx/specs/ContentMatchers/TC-0005-text-and-values/web.test.ts +0 -7
  215. package/templates/nx/specs/ContentMatchers/TC-0006-collections-and-empty/mobile.test.ts +0 -3
  216. package/templates/nx/specs/ContentMatchers/TC-0006-collections-and-empty/spec.md +0 -12
  217. package/templates/nx/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts +0 -6
  218. package/templates/nx/specs/ContentMatchers/suite.md +0 -9
  219. package/templates/nx/specs/ElementMatchers/TC-0003-visibility-and-dom/mobile.test.ts +0 -3
  220. package/templates/nx/specs/ElementMatchers/TC-0003-visibility-and-dom/spec.md +0 -12
  221. package/templates/nx/specs/ElementMatchers/TC-0003-visibility-and-dom/web.test.ts +0 -5
  222. package/templates/nx/specs/ElementMatchers/TC-0004-states-and-attributes/mobile.test.ts +0 -3
  223. package/templates/nx/specs/ElementMatchers/TC-0004-states-and-attributes/spec.md +0 -12
  224. package/templates/nx/specs/ElementMatchers/TC-0004-states-and-attributes/web.test.ts +0 -8
  225. package/templates/nx/specs/ElementMatchers/hooks/after/mobile.hook.ts +0 -1
  226. package/templates/nx/specs/ElementMatchers/hooks/after/web.hook.ts +0 -1
  227. package/templates/nx/specs/ElementMatchers/hooks/afterEach/mobile.hook.ts +0 -1
  228. package/templates/nx/specs/ElementMatchers/hooks/afterEach/web.hook.ts +0 -1
  229. package/templates/nx/specs/ElementMatchers/hooks/before/mobile.hook.ts +0 -1
  230. package/templates/nx/specs/ElementMatchers/hooks/before/web.hook.ts +0 -1
  231. package/templates/nx/specs/ElementMatchers/hooks/beforeEach/mobile.hook.ts +0 -1
  232. package/templates/nx/specs/ElementMatchers/hooks/beforeEach/web.hook.ts +0 -1
  233. package/templates/nx/specs/ElementMatchers/suite.md +0 -9
  234. package/templates/nx/specs/Playground/TC-0001-form-controls/mobile.test.ts +0 -3
  235. package/templates/nx/specs/Playground/TC-0001-form-controls/spec.md +0 -12
  236. package/templates/nx/specs/Playground/TC-0001-form-controls/web.test.ts +0 -6
  237. package/templates/nx/specs/Playground/TC-0002-toggle-elements/mobile.test.ts +0 -3
  238. package/templates/nx/specs/Playground/TC-0002-toggle-elements/spec.md +0 -12
  239. package/templates/nx/specs/Playground/TC-0002-toggle-elements/web.test.ts +0 -6
  240. package/templates/nx/specs/Playground/hooks/after/mobile.hook.ts +0 -1
  241. package/templates/nx/specs/Playground/hooks/after/web.hook.ts +0 -1
  242. package/templates/nx/specs/Playground/hooks/afterEach/mobile.hook.ts +0 -1
  243. package/templates/nx/specs/Playground/hooks/afterEach/web.hook.ts +0 -1
  244. package/templates/nx/specs/Playground/hooks/before/mobile.hook.ts +0 -1
  245. package/templates/nx/specs/Playground/hooks/before/web.hook.ts +0 -1
  246. package/templates/nx/specs/Playground/hooks/beforeEach/mobile.hook.ts +0 -1
  247. package/templates/nx/specs/Playground/hooks/beforeEach/web.hook.ts +0 -1
  248. package/templates/nx/specs/Playground/suite.md +0 -9
  249. package/templates/nx/support/actions/fillCredentials/mobile.action.ts +0 -4
  250. package/templates/nx/support/actions/fillCredentials/web.action.ts +0 -4
  251. package/templates/nx/support/steps/togglePlaygroundStates/mobile.step.ts +0 -3
  252. package/templates/nx/support/steps/togglePlaygroundStates/step.md +0 -7
  253. package/templates/nx/support/steps/togglePlaygroundStates/web.step.ts +0 -5
  254. package/templates/nx/support/steps/verifyPlaygroundState/mobile.step.ts +0 -4
  255. package/templates/nx/support/steps/verifyPlaygroundState/step.md +0 -7
  256. package/templates/nx/support/steps/verifyPlaygroundState/web.step.ts +0 -6
  257. package/templates/nx/tsconfig.spectra.android.json +0 -39
  258. package/templates/nx/tsconfig.spectra.ios.json +0 -39
  259. package/templates/nx/tsconfig.spectra.json +0 -25
  260. package/templates/nx/tsconfig.spectra.shared.json +0 -25
  261. package/templates/nx/tsconfig.spectra.web.json +0 -45
  262. /package/templates/{nx/specs/BrowserContext → default/specs/ApiInterception}/hooks/after/mobile.hook.ts +0 -0
  263. /package/templates/{nx/specs/BrowserContext → default/specs/ApiInterception}/hooks/after/web.hook.ts +0 -0
  264. /package/templates/{nx/specs/BrowserContext → default/specs/ApiInterception}/hooks/afterEach/mobile.hook.ts +0 -0
  265. /package/templates/{nx/specs/BrowserContext → default/specs/ApiInterception}/hooks/afterEach/web.hook.ts +0 -0
  266. /package/templates/{nx/specs/BrowserContext → default/specs/ApiInterception}/hooks/before/mobile.hook.ts +0 -0
  267. /package/templates/{nx/specs/BrowserContext → default/specs/ApiInterception}/hooks/before/web.hook.ts +0 -0
  268. /package/templates/{nx/specs/BrowserContext → default/specs/ApiInterception}/hooks/beforeEach/mobile.hook.ts +0 -0
  269. /package/templates/{nx/specs/BrowserContext → default/specs/ApiInterception}/hooks/beforeEach/web.hook.ts +0 -0
  270. /package/templates/nx/{specs/ContentMatchers → packages/matchers/e2e/specs/ApiInterception}/hooks/after/mobile.hook.ts +0 -0
  271. /package/templates/nx/{specs/ContentMatchers → packages/matchers/e2e/specs/ApiInterception}/hooks/after/web.hook.ts +0 -0
  272. /package/templates/nx/{specs/ContentMatchers → packages/matchers/e2e/specs/ApiInterception}/hooks/afterEach/mobile.hook.ts +0 -0
  273. /package/templates/nx/{specs/ContentMatchers → packages/matchers/e2e/specs/ApiInterception}/hooks/afterEach/web.hook.ts +0 -0
  274. /package/templates/nx/{specs/ContentMatchers → packages/matchers/e2e/specs/ApiInterception}/hooks/before/mobile.hook.ts +0 -0
  275. /package/templates/nx/{specs/ContentMatchers → packages/matchers/e2e/specs/ApiInterception}/hooks/before/web.hook.ts +0 -0
  276. /package/templates/nx/{specs/ContentMatchers → packages/matchers/e2e/specs/ApiInterception}/hooks/beforeEach/mobile.hook.ts +0 -0
  277. /package/templates/nx/{specs/ContentMatchers → packages/matchers/e2e/specs/ApiInterception}/hooks/beforeEach/web.hook.ts +0 -0
@@ -0,0 +1,391 @@
1
+ import fs from 'fs';
2
+ import path from 'path';
3
+ import { discoverEntityScopes } from './type-generator.js';
4
+ export class TsConfigGenerator {
5
+ static getRootTsConfig() {
6
+ return {
7
+ files: [],
8
+ references: [{ path: './.testspectra/tsconfig.json' }],
9
+ };
10
+ }
11
+ static getMasterSolutionConfig(references) {
12
+ return {
13
+ compilerOptions: {
14
+ target: 'ES2022',
15
+ module: 'NodeNext',
16
+ moduleResolution: 'NodeNext',
17
+ skipLibCheck: true,
18
+ strict: true,
19
+ noEmit: true,
20
+ },
21
+ files: [],
22
+ references: references || [
23
+ { path: './tsconfig/web.json' },
24
+ { path: './tsconfig/mobile.json' },
25
+ { path: './tsconfig/android.json' },
26
+ { path: './tsconfig/ios.json' },
27
+ { path: './tsconfig/common.json' },
28
+ ],
29
+ };
30
+ }
31
+ static getStemExcludes(prefix, stems) {
32
+ const excludes = [];
33
+ for (const stem of stems) {
34
+ excludes.push(`${prefix}/**/page-objects/**/${stem}.ts`, `${prefix}/**/pageobjects/**/${stem}.ts`, `${prefix}/**/support/**/${stem}.*`, `${prefix}/**/global-hooks/**/${stem}.*`, `${prefix}/**/specs/**/hooks/**/${stem}.*`, `${prefix}/**/specs/**/${stem}.test.ts`, `${prefix}/**/${stem}.ts`, `${prefix}/**/${stem}.*`, `${prefix}/**/${stem}.*.ts`, `${prefix}/**/*.${stem}.ts`, `${prefix}/**/*.${stem}.*`, `${prefix}/**/*.${stem}.*.ts`);
35
+ }
36
+ return excludes;
37
+ }
38
+ static getWebConfig() {
39
+ return {
40
+ compilerOptions: {
41
+ target: 'ES2022',
42
+ module: 'NodeNext',
43
+ moduleResolution: 'NodeNext',
44
+ composite: true,
45
+ noEmit: true,
46
+ skipLibCheck: true,
47
+ strict: true,
48
+ types: ['node', '@wdio/globals/types', '@wdio/mocha-framework'],
49
+ },
50
+ include: [
51
+ '../types/web.d.ts',
52
+ '../types/fixtures.d.ts',
53
+ '../../**/specs/**/*.ts',
54
+ '../../**/page-objects/**/*.ts',
55
+ '../../**/pageobjects/**/*.ts',
56
+ '../../**/support/**/*.ts',
57
+ '../../**/global-hooks/**/*.ts',
58
+ '../../**/fixtures/**/*.ts',
59
+ '../../spectra.config.ts',
60
+ ],
61
+ exclude: [
62
+ '../../node_modules',
63
+ '../../dist',
64
+ '../../.testspectra/reports',
65
+ '../../.testspectra/runs',
66
+ '../../.testspectra/cache',
67
+ ...TsConfigGenerator.getStemExcludes('../..', ['android', 'ios', 'mobile']),
68
+ ],
69
+ };
70
+ }
71
+ static getMobileConfig() {
72
+ return {
73
+ compilerOptions: {
74
+ target: 'ES2022',
75
+ module: 'NodeNext',
76
+ moduleResolution: 'NodeNext',
77
+ composite: true,
78
+ noEmit: true,
79
+ skipLibCheck: true,
80
+ strict: true,
81
+ types: ['node', '@wdio/globals/types', '@wdio/mocha-framework'],
82
+ },
83
+ include: [
84
+ '../types/mobile.d.ts',
85
+ '../types/fixtures.d.ts',
86
+ '../../**/specs/**/*.ts',
87
+ '../../**/page-objects/**/*.ts',
88
+ '../../**/pageobjects/**/*.ts',
89
+ '../../**/support/**/*.ts',
90
+ '../../**/global-hooks/**/*.ts',
91
+ '../../**/fixtures/**/*.ts',
92
+ '../../spectra.config.ts',
93
+ ],
94
+ exclude: [
95
+ '../../node_modules',
96
+ '../../dist',
97
+ '../../.testspectra/reports',
98
+ '../../.testspectra/runs',
99
+ '../../.testspectra/cache',
100
+ ...TsConfigGenerator.getStemExcludes('../..', ['web', 'android', 'ios']),
101
+ ],
102
+ };
103
+ }
104
+ static getAndroidConfig() {
105
+ return {
106
+ compilerOptions: {
107
+ target: 'ES2022',
108
+ module: 'NodeNext',
109
+ moduleResolution: 'NodeNext',
110
+ composite: true,
111
+ noEmit: true,
112
+ skipLibCheck: true,
113
+ strict: true,
114
+ types: ['node', '@wdio/globals/types', '@wdio/mocha-framework'],
115
+ },
116
+ include: [
117
+ '../types/android.d.ts',
118
+ '../types/fixtures.d.ts',
119
+ '../../**/specs/**/*.ts',
120
+ '../../**/page-objects/**/*.ts',
121
+ '../../**/pageobjects/**/*.ts',
122
+ '../../**/support/**/*.ts',
123
+ '../../**/global-hooks/**/*.ts',
124
+ '../../**/fixtures/**/*.ts',
125
+ '../../spectra.config.ts',
126
+ ],
127
+ exclude: [
128
+ '../../node_modules',
129
+ '../../dist',
130
+ '../../.testspectra/reports',
131
+ '../../.testspectra/runs',
132
+ '../../.testspectra/cache',
133
+ ...TsConfigGenerator.getStemExcludes('../..', ['web', 'ios']),
134
+ ],
135
+ };
136
+ }
137
+ static getIosConfig() {
138
+ return {
139
+ compilerOptions: {
140
+ target: 'ES2022',
141
+ module: 'NodeNext',
142
+ moduleResolution: 'NodeNext',
143
+ composite: true,
144
+ noEmit: true,
145
+ skipLibCheck: true,
146
+ strict: true,
147
+ types: ['node', '@wdio/globals/types', '@wdio/mocha-framework'],
148
+ },
149
+ include: [
150
+ '../types/ios.d.ts',
151
+ '../types/fixtures.d.ts',
152
+ '../../**/specs/**/*.ts',
153
+ '../../**/page-objects/**/*.ts',
154
+ '../../**/pageobjects/**/*.ts',
155
+ '../../**/support/**/*.ts',
156
+ '../../**/global-hooks/**/*.ts',
157
+ '../../**/fixtures/**/*.ts',
158
+ '../../spectra.config.ts',
159
+ ],
160
+ exclude: [
161
+ '../../node_modules',
162
+ '../../dist',
163
+ '../../.testspectra/reports',
164
+ '../../.testspectra/runs',
165
+ '../../.testspectra/cache',
166
+ ...TsConfigGenerator.getStemExcludes('../..', ['web', 'android']),
167
+ ],
168
+ };
169
+ }
170
+ static getCommonConfig() {
171
+ return {
172
+ compilerOptions: {
173
+ target: 'ES2022',
174
+ module: 'NodeNext',
175
+ moduleResolution: 'NodeNext',
176
+ composite: true,
177
+ noEmit: true,
178
+ skipLibCheck: true,
179
+ strict: true,
180
+ types: ['node', '@wdio/globals/types', '@wdio/mocha-framework'],
181
+ },
182
+ include: [
183
+ '../types/common.d.ts',
184
+ '../types/fixtures.d.ts',
185
+ '../../**/page-objects/**/common.ts',
186
+ '../../**/pageobjects/**/common.ts',
187
+ '../../**/support/**/common.*',
188
+ '../../**/global-hooks/**/common.*',
189
+ '../../**/specs/**/hooks/**/common.*',
190
+ '../../**/specs/**/common.test.ts',
191
+ '../../spectra.config.ts',
192
+ ],
193
+ exclude: [
194
+ '../../node_modules',
195
+ '../../dist',
196
+ '../../.testspectra/reports',
197
+ '../../.testspectra/runs',
198
+ '../../.testspectra/cache',
199
+ ...TsConfigGenerator.getStemExcludes('../..', ['web', 'android', 'ios', 'mobile']),
200
+ ],
201
+ };
202
+ }
203
+ static getScopedConfig(options) {
204
+ const { subConfigDir, scopeDir, relTypesDir, platform } = options;
205
+ const relScope = path.relative(subConfigDir, scopeDir).replace(/\\/g, '/');
206
+ const relSpectraConfig = path
207
+ .relative(subConfigDir, path.join(options.cwd, 'spectra.config.ts'))
208
+ .replace(/\\/g, '/');
209
+ const relNodeModules = path.relative(subConfigDir, path.join(options.cwd, 'node_modules')).replace(/\\/g, '/');
210
+ const relDist = path.relative(subConfigDir, path.join(options.cwd, 'dist')).replace(/\\/g, '/');
211
+ const relReports = path
212
+ .relative(subConfigDir, path.join(options.cwd, '.testspectra', 'reports'))
213
+ .replace(/\\/g, '/');
214
+ const relRuns = path.relative(subConfigDir, path.join(options.cwd, '.testspectra', 'runs')).replace(/\\/g, '/');
215
+ const relCache = path.relative(subConfigDir, path.join(options.cwd, '.testspectra', 'cache')).replace(/\\/g, '/');
216
+ const platformDts = `${relTypesDir}/${platform}.d.ts`;
217
+ const fixturesDts = `${relTypesDir}/fixtures.d.ts`;
218
+ const include = [platformDts, fixturesDts, `${relScope}/**/*.ts`, relSpectraConfig];
219
+ const baseExcludes = [relNodeModules, relDist, relReports, relRuns, relCache];
220
+ const stemMap = {
221
+ web: ['android', 'ios', 'mobile'],
222
+ mobile: ['web', 'android', 'ios'],
223
+ android: ['web', 'ios'],
224
+ ios: ['web', 'android'],
225
+ common: ['web', 'android', 'ios', 'mobile'],
226
+ };
227
+ const platformExcludes = TsConfigGenerator.getStemExcludes(relScope, stemMap[platform]);
228
+ return {
229
+ compilerOptions: {
230
+ target: 'ES2022',
231
+ module: 'NodeNext',
232
+ moduleResolution: 'NodeNext',
233
+ composite: true,
234
+ noEmit: true,
235
+ skipLibCheck: true,
236
+ strict: true,
237
+ types: ['node', '@wdio/globals/types', '@wdio/mocha-framework'],
238
+ },
239
+ include,
240
+ exclude: [...baseExcludes, ...platformExcludes],
241
+ };
242
+ }
243
+ static getEntityScopes(cwd) {
244
+ return discoverEntityScopes(cwd);
245
+ }
246
+ static writeConfigs(cwd, providedScopes) {
247
+ const tsconfigBaseDir = path.join(cwd, '.testspectra', 'tsconfig');
248
+ if (!fs.existsSync(tsconfigBaseDir)) {
249
+ fs.mkdirSync(tsconfigBaseDir, { recursive: true });
250
+ }
251
+ const writtenFiles = {};
252
+ const references = [];
253
+ // 1. Always generate root platform configs (for standalone and IDE fallback)
254
+ const platformConfigs = {
255
+ 'web.json': this.getWebConfig(),
256
+ 'mobile.json': this.getMobileConfig(),
257
+ 'android.json': this.getAndroidConfig(),
258
+ 'ios.json': this.getIosConfig(),
259
+ 'common.json': this.getCommonConfig(),
260
+ };
261
+ for (const [filename, contentObj] of Object.entries(platformConfigs)) {
262
+ const filePath = path.join(tsconfigBaseDir, filename);
263
+ const jsonContent = JSON.stringify(contentObj, null, 2) + '\n';
264
+ fs.writeFileSync(filePath, jsonContent, 'utf-8');
265
+ writtenFiles[filename] = filePath;
266
+ }
267
+ // 2. Scopes handling (Monorepo shared & feature sub-configs)
268
+ const scopes = providedScopes || this.getEntityScopes(cwd);
269
+ const sharedScope = scopes.find((s) => s.isShared);
270
+ const featureScopes = scopes.filter((s) => !s.isShared);
271
+ const hasScopes = Boolean(sharedScope || featureScopes.length > 0);
272
+ const hasRootEntities = fs.existsSync(path.join(cwd, 'specs')) ||
273
+ fs.existsSync(path.join(cwd, 'page-objects')) ||
274
+ fs.existsSync(path.join(cwd, 'pageobjects'));
275
+ if (!hasScopes || hasRootEntities) {
276
+ for (const filename of Object.keys(platformConfigs)) {
277
+ references.push({ path: `./tsconfig/${filename}` });
278
+ }
279
+ }
280
+ const platforms = [
281
+ 'web',
282
+ 'mobile',
283
+ 'android',
284
+ 'ios',
285
+ 'common',
286
+ ];
287
+ if (sharedScope) {
288
+ const sharedTsConfigDir = path.join(tsconfigBaseDir, 'shared');
289
+ if (!fs.existsSync(sharedTsConfigDir)) {
290
+ fs.mkdirSync(sharedTsConfigDir, { recursive: true });
291
+ }
292
+ for (const p of platforms) {
293
+ const conf = this.getScopedConfig({
294
+ cwd,
295
+ subConfigDir: sharedTsConfigDir,
296
+ scopeDir: sharedScope.dir,
297
+ relTypesDir: '../../types/shared',
298
+ platform: p,
299
+ });
300
+ const filePath = path.join(sharedTsConfigDir, `${p}.json`);
301
+ fs.writeFileSync(filePath, JSON.stringify(conf, null, 2) + '\n', 'utf-8');
302
+ writtenFiles[`shared/${p}.json`] = filePath;
303
+ references.push({ path: `./tsconfig/shared/${p}.json` });
304
+ }
305
+ }
306
+ else {
307
+ const sharedTsConfigDir = path.join(tsconfigBaseDir, 'shared');
308
+ if (fs.existsSync(sharedTsConfigDir)) {
309
+ try {
310
+ fs.rmSync(sharedTsConfigDir, { recursive: true, force: true });
311
+ }
312
+ catch { }
313
+ }
314
+ }
315
+ const activeFeatureNames = new Set(featureScopes.map((f) => f.name));
316
+ for (const feat of featureScopes) {
317
+ const featTsConfigDir = path.join(tsconfigBaseDir, 'features', feat.name);
318
+ if (!fs.existsSync(featTsConfigDir)) {
319
+ fs.mkdirSync(featTsConfigDir, { recursive: true });
320
+ }
321
+ for (const p of platforms) {
322
+ const conf = this.getScopedConfig({
323
+ cwd,
324
+ subConfigDir: featTsConfigDir,
325
+ scopeDir: feat.dir,
326
+ relTypesDir: `../../../types/features/${feat.name}`,
327
+ platform: p,
328
+ });
329
+ const filePath = path.join(featTsConfigDir, `${p}.json`);
330
+ fs.writeFileSync(filePath, JSON.stringify(conf, null, 2) + '\n', 'utf-8');
331
+ writtenFiles[`features/${feat.name}/${p}.json`] = filePath;
332
+ references.push({ path: `./tsconfig/features/${feat.name}/${p}.json` });
333
+ }
334
+ }
335
+ // Clean up any stale feature tsconfig folders that no longer exist
336
+ const featuresBaseDir = path.join(tsconfigBaseDir, 'features');
337
+ if (fs.existsSync(featuresBaseDir)) {
338
+ try {
339
+ const existingFeatureDirs = fs.readdirSync(featuresBaseDir, { withFileTypes: true });
340
+ for (const entry of existingFeatureDirs) {
341
+ if (entry.isDirectory() && !activeFeatureNames.has(entry.name)) {
342
+ fs.rmSync(path.join(featuresBaseDir, entry.name), { recursive: true, force: true });
343
+ }
344
+ }
345
+ if (activeFeatureNames.size === 0) {
346
+ fs.rmSync(featuresBaseDir, { recursive: true, force: true });
347
+ }
348
+ }
349
+ catch { }
350
+ }
351
+ // 3. Write Master Orchestrator: .testspectra/tsconfig.json
352
+ const masterConfigPath = path.join(cwd, '.testspectra', 'tsconfig.json');
353
+ const masterConfigContent = JSON.stringify(this.getMasterSolutionConfig(references), null, 2) + '\n';
354
+ fs.writeFileSync(masterConfigPath, masterConfigContent, 'utf-8');
355
+ writtenFiles['.testspectra/tsconfig.json'] = masterConfigPath;
356
+ // Clean up any legacy root tsconfig.spectra.json
357
+ const legacySpectraPath = path.join(cwd, 'tsconfig.spectra.json');
358
+ if (fs.existsSync(legacySpectraPath)) {
359
+ try {
360
+ fs.unlinkSync(legacySpectraPath);
361
+ }
362
+ catch { }
363
+ }
364
+ return writtenFiles;
365
+ }
366
+ static scaffoldConfigs(cwd, force = false) {
367
+ const rootTsConfigPath = path.join(cwd, 'tsconfig.json');
368
+ const writtenFiles = {};
369
+ if (!fs.existsSync(rootTsConfigPath) || force) {
370
+ fs.writeFileSync(rootTsConfigPath, JSON.stringify(this.getRootTsConfig(), null, 2) + '\n', 'utf-8');
371
+ writtenFiles['tsconfig.json'] = rootTsConfigPath;
372
+ }
373
+ else {
374
+ try {
375
+ const existing = JSON.parse(fs.readFileSync(rootTsConfigPath, 'utf-8'));
376
+ if (!existing.references || !Array.isArray(existing.references)) {
377
+ existing.references = [];
378
+ }
379
+ existing.references = existing.references.filter((r) => r.path !== './tsconfig.spectra.json');
380
+ if (!existing.references.some((r) => r.path === './.testspectra/tsconfig.json')) {
381
+ existing.references.push({ path: './.testspectra/tsconfig.json' });
382
+ }
383
+ fs.writeFileSync(rootTsConfigPath, JSON.stringify(existing, null, 2) + '\n', 'utf-8');
384
+ }
385
+ catch { }
386
+ }
387
+ const subConfigs = this.writeConfigs(cwd);
388
+ Object.assign(writtenFiles, subConfigs);
389
+ return writtenFiles;
390
+ }
391
+ }
@@ -0,0 +1,36 @@
1
+ export type PlatformTarget = 'web' | 'android' | 'ios' | 'mobile' | 'common';
2
+ export declare const PLATFORM_HIERARCHY: Record<PlatformTarget, string[]>;
3
+ export interface EntityScope {
4
+ name: string;
5
+ dir: string;
6
+ isShared: boolean;
7
+ }
8
+ /**
9
+ * Discovers all feature directories and shared library directories.
10
+ * Standard discovery hierarchy:
11
+ * 1. Nx / Monorepo Project Descriptors (`project.json`):
12
+ * - projectType: "library" OR tags: ["type:shared", "type:library", "scope:shared"] => Shared Library Scope (isShared: true)
13
+ * - projectType: "application" OR tags: ["type:e2e", "type:app"] => Feature Scope (isShared: false)
14
+ * 2. Explicit User Configuration (`tsconfig.spectra.shared.json`):
15
+ * - Custom include path for shared testing utilities
16
+ * 3. Dynamic Workspace Filesystem Discovery (Fallback for non-Nx / custom layouts):
17
+ * - Directory with specs/e2e/tests subfolders => Feature Scope
18
+ * - Directory with page-objects/support/fixtures and NO specs => Shared Scope
19
+ */
20
+ export declare function discoverEntityScopes(cwd: string): EntityScope[];
21
+ export declare class TypeGenerator {
22
+ /**
23
+ * Main entry point to generate all ambient type declarations.
24
+ */
25
+ static generateAll(cwd: string): void;
26
+ /**
27
+ * Discovers all feature directories and shared library directories.
28
+ * Returns a map of scope -> base directory
29
+ */
30
+ static getEntityScopes(cwd: string): EntityScope[];
31
+ static getPageObjectsDirsForScope(scopeDir: string, sharedDir?: string): string[];
32
+ static getEntityDirsForScope(entityType: 'actions' | 'steps' | 'fixtures', scopeDir: string, sharedDir?: string): string[];
33
+ static generateDeclarationsForScope(cwd: string, outputTypesDir: string, scopeDir: string, sharedDir?: string): Record<PlatformTarget, string>;
34
+ static generateFixturesDeclarationForScope(cwd: string, outputTypesDir: string, scopeDir: string, sharedDir?: string): string;
35
+ static writeDeclarationFiles(cwd: string): void;
36
+ }