@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.
- package/LICENSE.md +48 -0
- package/README.md +36 -270
- package/bin/.testspectra-runner.hash +1 -0
- package/bin/spectra.js +1 -1
- package/bin/testspectra-runner +0 -0
- package/demo-app/assets/index-DPfv5_EF.js +116 -0
- package/demo-app/assets/index-gIwu2EMV.css +1 -0
- package/demo-app/index.html +2 -2
- package/dist/.tsbuildinfo +1 -0
- package/dist/commands/__tests__/cloud-run.test.d.ts +1 -0
- package/dist/commands/__tests__/cloud-run.test.js +93 -0
- package/dist/commands/__tests__/doctor.test.d.ts +1 -0
- package/dist/commands/__tests__/doctor.test.js +39 -0
- package/dist/commands/__tests__/init.test.d.ts +1 -0
- package/dist/commands/__tests__/init.test.js +148 -0
- package/dist/commands/__tests__/license.test.d.ts +1 -0
- package/dist/commands/__tests__/license.test.js +13 -0
- package/dist/commands/__tests__/refactor.test.d.ts +1 -0
- package/dist/commands/__tests__/refactor.test.js +64 -0
- package/dist/commands/__tests__/run-e2e.test.d.ts +1 -0
- package/dist/commands/__tests__/run-e2e.test.js +181 -0
- package/dist/commands/__tests__/run.test.d.ts +1 -0
- package/dist/commands/__tests__/run.test.js +197 -0
- package/dist/commands/__tests__/watch.test.d.ts +1 -0
- package/dist/commands/__tests__/watch.test.js +155 -0
- package/dist/commands/add.js +86 -85
- package/dist/commands/cloud-run.d.ts +11 -0
- package/dist/commands/cloud-run.js +118 -0
- package/dist/commands/demo.js +7 -7
- package/dist/commands/devices.d.ts +14 -2
- package/dist/commands/devices.js +44 -34
- package/dist/commands/doctor.d.ts +3 -1
- package/dist/commands/doctor.js +43 -264
- package/dist/commands/init.d.ts +1 -1
- package/dist/commands/init.js +206 -196
- package/dist/commands/install.d.ts +4 -0
- package/dist/commands/install.js +59 -0
- package/dist/commands/license.d.ts +4 -0
- package/dist/commands/license.js +30 -0
- package/dist/commands/refactor.d.ts +8 -0
- package/dist/commands/refactor.js +78 -0
- package/dist/commands/run.d.ts +22 -1
- package/dist/commands/run.js +252 -109
- package/dist/commands/sync-types.d.ts +4 -0
- package/dist/commands/sync-types.js +14 -0
- package/dist/commands/update.js +39 -43
- package/dist/commands/watch.d.ts +6 -0
- package/dist/commands/watch.js +47 -43
- package/dist/config/loader.d.ts +1 -1
- package/dist/config/loader.js +40 -25
- package/dist/config/schema.d.ts +117 -49
- package/dist/config/schema.js +41 -34
- package/dist/generator/__tests__/tsconfig-isolation.test.d.ts +1 -0
- package/dist/generator/__tests__/tsconfig-isolation.test.js +278 -0
- package/dist/generator/__tests__/type-generator.test.d.ts +1 -0
- package/dist/generator/__tests__/type-generator.test.js +386 -0
- package/dist/generator/index.d.ts +2 -0
- package/dist/generator/index.js +2 -0
- package/dist/generator/tsconfig-generator.d.ts +27 -0
- package/dist/generator/tsconfig-generator.js +391 -0
- package/dist/generator/type-generator.d.ts +36 -0
- package/dist/generator/type-generator.js +644 -0
- package/dist/index.d.ts +9 -5
- package/dist/index.js +124 -51
- package/dist/lifecycle/__tests__/lifecycle-engine.test.d.ts +1 -0
- package/dist/lifecycle/__tests__/lifecycle-engine.test.js +290 -0
- package/dist/lifecycle/hook-discovery.d.ts +24 -0
- package/dist/lifecycle/hook-discovery.js +60 -0
- package/dist/lifecycle/hook-dispatcher.d.ts +34 -0
- package/dist/lifecycle/hook-dispatcher.js +190 -0
- package/dist/lifecycle/index.d.ts +3 -0
- package/dist/lifecycle/index.js +3 -0
- package/dist/lifecycle/parallel-grouping.d.ts +27 -0
- package/dist/lifecycle/parallel-grouping.js +151 -0
- package/dist/mobile/__tests__/android-device-e2e.test.d.ts +1 -0
- package/dist/mobile/__tests__/android-device-e2e.test.js +53 -0
- package/dist/mobile/__tests__/device-pool.test.d.ts +1 -0
- package/dist/mobile/__tests__/device-pool.test.js +97 -0
- package/dist/mobile/device-pool.d.ts +23 -0
- package/dist/mobile/device-pool.js +1 -0
- package/dist/mobile/index.d.ts +1 -0
- package/dist/mobile/index.js +1 -0
- package/dist/refactor/__tests__/refactor-engine.test.d.ts +1 -0
- package/dist/refactor/__tests__/refactor-engine.test.js +175 -0
- package/dist/refactor/index.d.ts +1 -0
- package/dist/refactor/index.js +1 -0
- package/dist/refactor/refactor-engine.d.ts +25 -0
- package/dist/refactor/refactor-engine.js +255 -0
- package/dist/reporter/__tests__/semantic-formatter.test.d.ts +1 -0
- package/dist/reporter/__tests__/semantic-formatter.test.js +73 -0
- package/dist/reporter/semantic-formatter.d.ts +6 -0
- package/dist/reporter/semantic-formatter.js +191 -0
- package/dist/reporter/summary-view.d.ts +12 -0
- package/dist/reporter/summary-view.js +19 -0
- package/dist/reporter/terminal-stream.d.ts +32 -0
- package/dist/reporter/terminal-stream.js +82 -0
- package/dist/reporter/types.d.ts +2 -0
- package/dist/reporter/types.js +1 -0
- package/dist/runner/bridge.d.ts +10 -5
- package/dist/runner/bridge.js +69 -44
- package/dist/runner/reporter.d.ts +30 -2
- package/dist/runner/reporter.js +419 -13
- package/dist/server/demo.js +43 -44
- package/dist/types/generator.d.ts +1 -17
- package/dist/types/generator.js +1 -443
- package/dist/utils/demo-server.js +38 -35
- package/package.json +20 -12
- package/templates/default/CLAUDE.md +7 -5
- package/templates/default/fixtures/apiData.json +24 -0
- package/templates/default/package.json +13 -4
- package/templates/default/page-objects/MatchersPage/mobile.ts +41 -16
- package/templates/default/page-objects/MatchersPage/web.ts +14 -0
- package/templates/default/page-objects/NavigationPage/mobile.ts +10 -1
- package/templates/default/page-objects/PlaygroundPage/mobile.ts +27 -17
- package/templates/default/page-objects/PlaygroundPage/web.ts +2 -0
- package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts +11 -0
- package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/spec.md +12 -0
- package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts +27 -0
- package/templates/default/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts +16 -0
- package/templates/default/specs/ApiInterception/TC-0009-post-mocking/spec.md +12 -0
- package/templates/default/specs/ApiInterception/TC-0009-post-mocking/web.test.ts +24 -0
- package/templates/default/specs/ApiInterception/suite.md +9 -0
- package/templates/default/specs/BrowserContext/TC-0007-title-and-navigation/mobile.test.ts +7 -1
- package/templates/default/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts +17 -3
- package/templates/default/specs/ContentMatchers/TC-0005-text-and-values/mobile.test.ts +15 -1
- package/templates/default/specs/ContentMatchers/TC-0005-text-and-values/web.test.ts +14 -4
- package/templates/default/specs/ContentMatchers/TC-0006-collections-and-empty/mobile.test.ts +9 -1
- package/templates/default/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts +8 -3
- package/templates/default/specs/ElementMatchers/TC-0003-visibility-and-dom/mobile.test.ts +9 -1
- package/templates/default/specs/ElementMatchers/TC-0003-visibility-and-dom/web.test.ts +9 -3
- package/templates/default/specs/ElementMatchers/TC-0004-states-and-attributes/mobile.test.ts +27 -1
- package/templates/default/specs/ElementMatchers/TC-0004-states-and-attributes/web.test.ts +27 -6
- package/templates/default/specs/Playground/TC-0001-form-controls/mobile.test.ts +4 -1
- package/templates/default/specs/Playground/TC-0001-form-controls/web.test.ts +3 -3
- package/templates/default/specs/Playground/TC-0002-toggle-elements/mobile.test.ts +4 -1
- package/templates/default/specs/Playground/TC-0002-toggle-elements/web.test.ts +2 -2
- package/templates/default/spectra.config.ts +21 -14
- package/templates/default/support/actions/fillCredentials/mobile.action.ts +2 -2
- package/templates/default/support/steps/togglePlaygroundStates/mobile.step.ts +2 -0
- package/templates/default/support/steps/togglePlaygroundStates/web.step.ts +2 -2
- package/templates/default/support/steps/verifyPlaygroundState/mobile.step.ts +3 -1
- package/templates/default/support/steps/verifyPlaygroundState/web.step.ts +3 -3
- package/templates/default/tsconfig.json +3 -1
- package/templates/nx/.nx/workspace-data/d/daemon.log +168 -0
- package/templates/nx/CLAUDE.md +2 -2
- package/templates/nx/package.json +7 -5
- package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts +3 -0
- package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/spec.md +12 -0
- package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts +27 -0
- package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts +3 -0
- package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/spec.md +12 -0
- package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts +24 -0
- package/templates/nx/packages/matchers/e2e/specs/ApiInterception/suite.md +9 -0
- package/templates/nx/packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts +17 -3
- package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/web.test.ts +14 -4
- package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts +8 -3
- package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/web.test.ts +9 -3
- package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/web.test.ts +27 -6
- package/templates/nx/packages/playground/e2e/specs/Playground/TC-0001-form-controls/web.test.ts +3 -3
- package/templates/nx/packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/web.test.ts +2 -2
- package/templates/nx/pnpm-lock.yaml +6663 -0
- package/templates/nx/pnpm-workspace.yaml +2 -1
- package/templates/nx/shared/testing/fixtures/apiData.json +24 -0
- package/templates/nx/shared/testing/page-objects/MatchersPage/mobile.ts +12 -0
- package/templates/nx/shared/testing/page-objects/MatchersPage/web.ts +14 -0
- package/templates/nx/shared/testing/page-objects/PlaygroundPage/web.ts +2 -0
- package/templates/nx/shared/testing/project.json +19 -0
- package/templates/nx/shared/testing/support/steps/togglePlaygroundStates/web.step.ts +2 -2
- package/templates/nx/shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts +1 -1
- package/templates/nx/shared/testing/support/steps/verifyPlaygroundState/web.step.ts +3 -3
- package/templates/nx/spectra.config.ts +19 -12
- package/templates/nx/tsconfig.json +3 -1
- package/demo-app/assets/index-DAUlrHTr.css +0 -1
- package/demo-app/assets/index-DN2Kb0A8.js +0 -100
- package/dist/index.cjs +0 -101
- package/dist/plugin.cjs +0 -575
- package/dist/plugin.d.ts +0 -16
- package/dist/plugin.js +0 -184
- package/dist/step/index.d.ts +0 -6
- package/dist/step/index.js +0 -6
- package/dist/step/matchers.d.ts +0 -14
- package/dist/step/matchers.js +0 -114
- package/dist/step/proto.d.ts +0 -46
- package/dist/step/proto.js +0 -114
- package/dist/step/runner/collection.d.ts +0 -13
- package/dist/step/runner/collection.js +0 -51
- package/dist/step/runner/single.d.ts +0 -21
- package/dist/step/runner/single.js +0 -138
- package/dist/step/spectra.d.ts +0 -34
- package/dist/step/spectra.js +0 -156
- package/dist/step/types.d.ts +0 -32
- package/dist/step/types.js +0 -5
- package/templates/default/tsconfig.spectra.android.json +0 -46
- package/templates/default/tsconfig.spectra.ios.json +0 -46
- package/templates/default/tsconfig.spectra.json +0 -22
- package/templates/default/tsconfig.spectra.web.json +0 -53
- package/templates/nx/fixtures/playgroundData.json +0 -7
- package/templates/nx/global-hooks/after/mobile.hook.ts +0 -3
- package/templates/nx/global-hooks/after/web.hook.ts +0 -3
- package/templates/nx/global-hooks/before/mobile.hook.ts +0 -3
- package/templates/nx/global-hooks/before/web.hook.ts +0 -3
- package/templates/nx/page-objects/MatchersPage/mobile.ts +0 -21
- package/templates/nx/page-objects/MatchersPage/web.ts +0 -23
- package/templates/nx/page-objects/NavigationPage/mobile.ts +0 -5
- package/templates/nx/page-objects/NavigationPage/web.ts +0 -8
- package/templates/nx/page-objects/PlaygroundPage/mobile.ts +0 -26
- package/templates/nx/page-objects/PlaygroundPage/web.ts +0 -29
- package/templates/nx/specs/BrowserContext/TC-0007-title-and-navigation/mobile.test.ts +0 -3
- package/templates/nx/specs/BrowserContext/TC-0007-title-and-navigation/spec.md +0 -12
- package/templates/nx/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts +0 -5
- package/templates/nx/specs/BrowserContext/suite.md +0 -9
- package/templates/nx/specs/ContentMatchers/TC-0005-text-and-values/mobile.test.ts +0 -3
- package/templates/nx/specs/ContentMatchers/TC-0005-text-and-values/spec.md +0 -12
- package/templates/nx/specs/ContentMatchers/TC-0005-text-and-values/web.test.ts +0 -7
- package/templates/nx/specs/ContentMatchers/TC-0006-collections-and-empty/mobile.test.ts +0 -3
- package/templates/nx/specs/ContentMatchers/TC-0006-collections-and-empty/spec.md +0 -12
- package/templates/nx/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts +0 -6
- package/templates/nx/specs/ContentMatchers/suite.md +0 -9
- package/templates/nx/specs/ElementMatchers/TC-0003-visibility-and-dom/mobile.test.ts +0 -3
- package/templates/nx/specs/ElementMatchers/TC-0003-visibility-and-dom/spec.md +0 -12
- package/templates/nx/specs/ElementMatchers/TC-0003-visibility-and-dom/web.test.ts +0 -5
- package/templates/nx/specs/ElementMatchers/TC-0004-states-and-attributes/mobile.test.ts +0 -3
- package/templates/nx/specs/ElementMatchers/TC-0004-states-and-attributes/spec.md +0 -12
- package/templates/nx/specs/ElementMatchers/TC-0004-states-and-attributes/web.test.ts +0 -8
- package/templates/nx/specs/ElementMatchers/hooks/after/mobile.hook.ts +0 -1
- package/templates/nx/specs/ElementMatchers/hooks/after/web.hook.ts +0 -1
- package/templates/nx/specs/ElementMatchers/hooks/afterEach/mobile.hook.ts +0 -1
- package/templates/nx/specs/ElementMatchers/hooks/afterEach/web.hook.ts +0 -1
- package/templates/nx/specs/ElementMatchers/hooks/before/mobile.hook.ts +0 -1
- package/templates/nx/specs/ElementMatchers/hooks/before/web.hook.ts +0 -1
- package/templates/nx/specs/ElementMatchers/hooks/beforeEach/mobile.hook.ts +0 -1
- package/templates/nx/specs/ElementMatchers/hooks/beforeEach/web.hook.ts +0 -1
- package/templates/nx/specs/ElementMatchers/suite.md +0 -9
- package/templates/nx/specs/Playground/TC-0001-form-controls/mobile.test.ts +0 -3
- package/templates/nx/specs/Playground/TC-0001-form-controls/spec.md +0 -12
- package/templates/nx/specs/Playground/TC-0001-form-controls/web.test.ts +0 -6
- package/templates/nx/specs/Playground/TC-0002-toggle-elements/mobile.test.ts +0 -3
- package/templates/nx/specs/Playground/TC-0002-toggle-elements/spec.md +0 -12
- package/templates/nx/specs/Playground/TC-0002-toggle-elements/web.test.ts +0 -6
- package/templates/nx/specs/Playground/hooks/after/mobile.hook.ts +0 -1
- package/templates/nx/specs/Playground/hooks/after/web.hook.ts +0 -1
- package/templates/nx/specs/Playground/hooks/afterEach/mobile.hook.ts +0 -1
- package/templates/nx/specs/Playground/hooks/afterEach/web.hook.ts +0 -1
- package/templates/nx/specs/Playground/hooks/before/mobile.hook.ts +0 -1
- package/templates/nx/specs/Playground/hooks/before/web.hook.ts +0 -1
- package/templates/nx/specs/Playground/hooks/beforeEach/mobile.hook.ts +0 -1
- package/templates/nx/specs/Playground/hooks/beforeEach/web.hook.ts +0 -1
- package/templates/nx/specs/Playground/suite.md +0 -9
- package/templates/nx/support/actions/fillCredentials/mobile.action.ts +0 -4
- package/templates/nx/support/actions/fillCredentials/web.action.ts +0 -4
- package/templates/nx/support/steps/togglePlaygroundStates/mobile.step.ts +0 -3
- package/templates/nx/support/steps/togglePlaygroundStates/step.md +0 -7
- package/templates/nx/support/steps/togglePlaygroundStates/web.step.ts +0 -5
- package/templates/nx/support/steps/verifyPlaygroundState/mobile.step.ts +0 -4
- package/templates/nx/support/steps/verifyPlaygroundState/step.md +0 -7
- package/templates/nx/support/steps/verifyPlaygroundState/web.step.ts +0 -6
- package/templates/nx/tsconfig.spectra.android.json +0 -39
- package/templates/nx/tsconfig.spectra.ios.json +0 -39
- package/templates/nx/tsconfig.spectra.json +0 -25
- package/templates/nx/tsconfig.spectra.shared.json +0 -25
- package/templates/nx/tsconfig.spectra.web.json +0 -45
- /package/templates/{nx/specs/BrowserContext → default/specs/ApiInterception}/hooks/after/mobile.hook.ts +0 -0
- /package/templates/{nx/specs/BrowserContext → default/specs/ApiInterception}/hooks/after/web.hook.ts +0 -0
- /package/templates/{nx/specs/BrowserContext → default/specs/ApiInterception}/hooks/afterEach/mobile.hook.ts +0 -0
- /package/templates/{nx/specs/BrowserContext → default/specs/ApiInterception}/hooks/afterEach/web.hook.ts +0 -0
- /package/templates/{nx/specs/BrowserContext → default/specs/ApiInterception}/hooks/before/mobile.hook.ts +0 -0
- /package/templates/{nx/specs/BrowserContext → default/specs/ApiInterception}/hooks/before/web.hook.ts +0 -0
- /package/templates/{nx/specs/BrowserContext → default/specs/ApiInterception}/hooks/beforeEach/mobile.hook.ts +0 -0
- /package/templates/{nx/specs/BrowserContext → default/specs/ApiInterception}/hooks/beforeEach/web.hook.ts +0 -0
- /package/templates/nx/{specs/ContentMatchers → packages/matchers/e2e/specs/ApiInterception}/hooks/after/mobile.hook.ts +0 -0
- /package/templates/nx/{specs/ContentMatchers → packages/matchers/e2e/specs/ApiInterception}/hooks/after/web.hook.ts +0 -0
- /package/templates/nx/{specs/ContentMatchers → packages/matchers/e2e/specs/ApiInterception}/hooks/afterEach/mobile.hook.ts +0 -0
- /package/templates/nx/{specs/ContentMatchers → packages/matchers/e2e/specs/ApiInterception}/hooks/afterEach/web.hook.ts +0 -0
- /package/templates/nx/{specs/ContentMatchers → packages/matchers/e2e/specs/ApiInterception}/hooks/before/mobile.hook.ts +0 -0
- /package/templates/nx/{specs/ContentMatchers → packages/matchers/e2e/specs/ApiInterception}/hooks/before/web.hook.ts +0 -0
- /package/templates/nx/{specs/ContentMatchers → packages/matchers/e2e/specs/ApiInterception}/hooks/beforeEach/mobile.hook.ts +0 -0
- /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
|
+
}
|