@testspectra/cli 1.1.8-rc.3 → 1.1.8-rc.30
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/README.md +50 -0
- package/bin/.testspectra-runner.hash +1 -1
- package/bin/spectra.js +0 -0
- package/dist/commands/__tests__/doctor-filter.test.js +37 -0
- package/dist/commands/__tests__/doctor-scope.test.d.ts +1 -0
- package/dist/commands/__tests__/doctor-scope.test.js +24 -0
- package/dist/commands/__tests__/run-e2e.test.js +49 -49
- package/dist/commands/__tests__/test-error-streaming.test.d.ts +1 -0
- package/dist/commands/__tests__/test-error-streaming.test.js +85 -0
- package/dist/commands/__tests__/test-scaffolding.test.d.ts +1 -0
- package/dist/commands/__tests__/test-scaffolding.test.js +32 -0
- package/dist/commands/__tests__/upgrade.test.d.ts +1 -0
- package/dist/commands/__tests__/upgrade.test.js +95 -0
- package/dist/commands/add.js +5 -4
- package/dist/commands/devices.js +1 -0
- package/dist/commands/docs.d.ts +4 -0
- package/dist/commands/docs.js +17 -0
- package/dist/commands/doctor.d.ts +9 -1
- package/dist/commands/doctor.js +17 -3
- package/dist/commands/init.js +7 -160
- package/dist/commands/install.js +5 -0
- package/dist/commands/license.js +1 -0
- package/dist/commands/test.d.ts +13 -0
- package/dist/commands/test.js +115 -21
- package/dist/commands/upgrade.d.ts +12 -0
- package/dist/commands/upgrade.js +197 -0
- package/dist/generator/__tests__/tsconfig-isolation.test.js +2 -1
- package/dist/generator/__tests__/type-generator.test.js +38 -0
- package/dist/generator/architecture-doc-generator.d.ts +14 -0
- package/dist/generator/architecture-doc-generator.js +80 -0
- package/dist/generator/index.d.ts +1 -0
- package/dist/generator/index.js +1 -0
- package/dist/generator/tsconfig-generator.js +1 -1
- package/dist/generator/type-generator.d.ts +5 -2
- package/dist/generator/type-generator.js +14 -17
- package/dist/index.js +54 -26
- package/dist/linter/__tests__/component-test-imports.test.js +51 -51
- package/dist/linter/__tests__/shared-lib-boundary.test.js +15 -15
- package/dist/linter/__tests__/spec-schema.test.js +167 -167
- package/dist/linter/discovery.d.ts +3 -3
- package/dist/linter/discovery.js +7 -7
- package/dist/linter/schemas/spec.schema.d.ts +8 -8
- package/dist/linter/schemas/suite.schema.d.ts +4 -4
- package/dist/runner/bridge.d.ts +1 -1
- package/dist/runner/bridge.js +101 -11
- package/dist/runner/reporter.d.ts +1 -0
- package/dist/runner/reporter.js +12 -6
- package/dist/utils/background-update-check.d.ts +1 -0
- package/dist/utils/background-update-check.js +43 -0
- package/dist/utils/dependency-updates.d.ts +15 -0
- package/dist/utils/dependency-updates.js +107 -0
- package/dist/utils/update-notifier.d.ts +2 -0
- package/dist/utils/update-notifier.js +67 -0
- package/package.json +34 -30
- package/templates/default/CLAUDE.md +16 -16
- package/templates/default/global-hooks/after/mobile.hook.ts +3 -3
- package/templates/default/global-hooks/after/web.hook.ts +3 -3
- package/templates/default/global-hooks/before/mobile.hook.ts +3 -3
- package/templates/default/global-hooks/before/web.hook.ts +3 -3
- package/templates/default/package.json +2 -2
- package/templates/default/page-objects/AuthPage/mobile.ts +5 -5
- package/templates/default/page-objects/AuthPage/web.ts +10 -10
- package/templates/default/page-objects/MatchersPage/mobile.ts +70 -70
- package/templates/default/page-objects/MatchersPage/web.ts +43 -43
- package/templates/default/page-objects/NavigationPage/mobile.ts +14 -14
- package/templates/default/page-objects/NavigationPage/web.ts +8 -8
- package/templates/default/page-objects/PlaygroundPage/mobile.ts +42 -42
- package/templates/default/page-objects/PlaygroundPage/web.ts +31 -31
- package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts +53 -53
- package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/spec.md +19 -19
- package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts +31 -31
- package/templates/default/specs/ApiInterception/TC-0009-post-mocking/android.test.ts +3 -3
- package/templates/default/specs/ApiInterception/TC-0009-post-mocking/common.test.ts +3 -3
- package/templates/default/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts +27 -27
- package/templates/default/specs/ApiInterception/TC-0009-post-mocking/spec.md +19 -19
- package/templates/default/specs/ApiInterception/TC-0009-post-mocking/web.test.ts +26 -26
- package/templates/default/specs/ApiInterception/TC-0012-direct-and-late-response/common.test.ts +30 -30
- package/templates/default/specs/ApiInterception/TC-0012-direct-and-late-response/spec.md +22 -22
- package/templates/default/specs/ApiInterception/TC-0013-real-network-call-recorded/common.test.ts +27 -27
- package/templates/default/specs/ApiInterception/TC-0013-real-network-call-recorded/spec.md +20 -20
- package/templates/default/specs/ApiInterception/TC-0015-mock-server-sent-events/spec.md +24 -24
- package/templates/default/specs/ApiInterception/TC-0015-mock-server-sent-events/web.test.ts +26 -26
- package/templates/default/specs/ApiInterception/TC-0016-bypass-websocket-with-app-level-mock/spec.md +37 -37
- package/templates/default/specs/ApiInterception/TC-0016-bypass-websocket-with-app-level-mock/web.test.ts +21 -21
- package/templates/default/specs/ApiInterception/TC-0017-bypass-captcha-with-test-mode-flag/spec.md +29 -29
- package/templates/default/specs/ApiInterception/TC-0017-bypass-captcha-with-test-mode-flag/web.test.ts +16 -16
- package/templates/default/specs/ApiInterception/suite.md +10 -10
- package/templates/default/specs/ApiSeeding/TC-0014-seed-and-cleanup-via-hooks/common.test.ts +30 -30
- package/templates/default/specs/ApiSeeding/TC-0014-seed-and-cleanup-via-hooks/spec.md +23 -23
- package/templates/default/specs/ApiSeeding/hooks/after/common.hook.ts +16 -16
- package/templates/default/specs/ApiSeeding/hooks/before/common.hook.ts +28 -28
- package/templates/default/specs/ApiSeeding/suite.md +9 -9
- package/templates/default/specs/Authentication/TC-0021-seed-authenticated-session/mobile.test.ts +7 -7
- package/templates/default/specs/Authentication/TC-0021-seed-authenticated-session/spec.md +19 -19
- package/templates/default/specs/Authentication/TC-0021-seed-authenticated-session/web.test.ts +9 -9
- package/templates/default/specs/Authentication/suite.md +9 -9
- package/templates/default/specs/BrowserContext/TC-0007-title-and-navigation/mobile.test.ts +9 -9
- package/templates/default/specs/BrowserContext/TC-0007-title-and-navigation/spec.md +17 -17
- package/templates/default/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts +19 -19
- package/templates/default/specs/BrowserContext/TC-0022-history-navigation/mobile.test.ts +17 -17
- package/templates/default/specs/BrowserContext/TC-0022-history-navigation/spec.md +28 -28
- package/templates/default/specs/BrowserContext/TC-0022-history-navigation/web.test.ts +26 -26
- package/templates/default/specs/ContentMatchers/TC-0005-text-and-values/common.test.ts +26 -26
- package/templates/default/specs/ContentMatchers/TC-0005-text-and-values/spec.md +19 -19
- package/templates/default/specs/ContentMatchers/TC-0006-collections-and-empty/mobile.test.ts +11 -11
- package/templates/default/specs/ContentMatchers/TC-0006-collections-and-empty/spec.md +17 -17
- package/templates/default/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts +11 -11
- package/templates/default/specs/ContentMatchers/TC-0020-scoped-element-access/common.test.ts +14 -14
- package/templates/default/specs/ContentMatchers/TC-0020-scoped-element-access/spec.md +21 -21
- package/templates/default/specs/DeepLink/TC-0018-navigate-via-deep-link/mobile.test.ts +28 -28
- package/templates/default/specs/DeepLink/TC-0018-navigate-via-deep-link/spec.md +29 -29
- package/templates/default/specs/DeepLink/suite.md +9 -9
- package/templates/default/specs/ElementMatchers/TC-0003-visibility-and-dom/mobile.test.ts +11 -11
- package/templates/default/specs/ElementMatchers/TC-0003-visibility-and-dom/spec.md +17 -17
- package/templates/default/specs/ElementMatchers/TC-0003-visibility-and-dom/web.test.ts +11 -11
- package/templates/default/specs/ElementMatchers/TC-0004-states-and-attributes/mobile.test.ts +29 -29
- package/templates/default/specs/ElementMatchers/TC-0004-states-and-attributes/spec.md +19 -19
- package/templates/default/specs/ElementMatchers/TC-0004-states-and-attributes/web.test.ts +29 -29
- package/templates/default/specs/ElementMatchers/suite.md +10 -10
- package/templates/default/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts +5 -5
- package/templates/default/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md +16 -16
- package/templates/default/specs/EnvironmentConfig/suite.md +9 -9
- package/templates/default/specs/PermissionRationale/TC-0010-camera-permission-allow/mobile.test.ts +26 -26
- package/templates/default/specs/PermissionRationale/TC-0010-camera-permission-allow/spec.md +22 -22
- package/templates/default/specs/PermissionRationale/TC-0011-camera-permission-deny/mobile.test.ts +13 -13
- package/templates/default/specs/PermissionRationale/TC-0011-camera-permission-deny/spec.md +20 -20
- package/templates/default/specs/PermissionRationale/suite.md +9 -9
- package/templates/default/specs/Playground/TC-0001-form-controls/mobile.test.ts +6 -6
- package/templates/default/specs/Playground/TC-0001-form-controls/spec.md +18 -18
- package/templates/default/specs/Playground/TC-0001-form-controls/web.test.ts +6 -6
- package/templates/default/specs/Playground/TC-0002-toggle-elements/mobile.test.ts +6 -6
- package/templates/default/specs/Playground/TC-0002-toggle-elements/spec.md +18 -18
- package/templates/default/specs/Playground/TC-0002-toggle-elements/web.test.ts +6 -6
- package/templates/default/spectra.config.ts +52 -52
- package/templates/default/support/actions/fillCredentials/mobile.action.ts +4 -4
- package/templates/default/support/actions/fillCredentials/web.action.ts +4 -4
- package/templates/default/support/actions/seedSession/mobile.action.ts +9 -9
- package/templates/default/support/actions/seedSession/web.action.ts +13 -13
- package/templates/default/support/steps/togglePlaygroundStates/mobile.step.ts +5 -5
- package/templates/default/support/steps/togglePlaygroundStates/web.step.ts +5 -5
- package/templates/default/support/steps/verifyPlaygroundState/mobile.step.ts +6 -6
- package/templates/default/support/steps/verifyPlaygroundState/web.step.ts +6 -6
- package/templates/docs/ARCHITECTURE.default.md +26 -0
- package/templates/docs/ARCHITECTURE.nx.md +119 -0
- package/templates/nx/.nx/workspace-data/{59842386-c7c4-44ca-b2c2-20e1700bd13d.db-shm → 70094CFD-E89B-57A1-9619-2FC5F4963C54.db} +0 -0
- package/templates/nx/.nx/workspace-data/d/daemon.log +1012 -1612
- package/templates/nx/.nx/workspace-data/file-map.json +123 -137
- package/templates/nx/.nx/workspace-data/lockfile.hash +1 -1
- package/templates/nx/.nx/workspace-data/nx_files.nxt +0 -0
- package/templates/nx/.nx/workspace-data/parsed-lock-file.json +535 -535
- package/templates/nx/.nx/workspace-data/project-graph.json +592 -591
- package/templates/nx/.nx/workspace-data/source-maps.json +336 -0
- package/templates/nx/CLAUDE.md +10 -10
- package/templates/nx/package.json +3 -3
- package/templates/nx/packages/matchers/e2e/project.json +2 -2
- package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts +27 -27
- package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts +27 -27
- package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts +24 -24
- package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts +24 -24
- package/templates/nx/packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/mobile.test.ts +3 -3
- package/templates/nx/packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts +19 -19
- package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/mobile.test.ts +3 -3
- package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/web.test.ts +17 -17
- package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/mobile.test.ts +3 -3
- package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts +11 -11
- package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/mobile.test.ts +3 -3
- package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/web.test.ts +11 -11
- package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/mobile.test.ts +3 -3
- package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/web.test.ts +29 -29
- package/templates/nx/packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts +5 -5
- package/templates/nx/packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md +16 -16
- package/templates/nx/packages/matchers/e2e/specs/EnvironmentConfig/suite.md +9 -9
- package/templates/nx/packages/playground/e2e/project.json +2 -2
- package/templates/nx/packages/playground/e2e/specs/Playground/TC-0001-form-controls/mobile.test.ts +3 -3
- package/templates/nx/packages/playground/e2e/specs/Playground/TC-0001-form-controls/web.test.ts +6 -6
- package/templates/nx/packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/mobile.test.ts +3 -3
- package/templates/nx/packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/web.test.ts +6 -6
- package/templates/nx/pnpm-lock.yaml +6663 -6663
- package/templates/nx/pnpm-workspace.yaml +9 -9
- package/templates/nx/shared/testing/page-objects/MatchersPage/mobile.ts +33 -33
- package/templates/nx/shared/testing/page-objects/MatchersPage/web.ts +91 -91
- package/templates/nx/shared/testing/page-objects/NavigationPage/mobile.ts +5 -5
- package/templates/nx/shared/testing/page-objects/NavigationPage/web.ts +8 -8
- package/templates/nx/shared/testing/page-objects/PlaygroundPage/mobile.ts +26 -26
- package/templates/nx/shared/testing/page-objects/PlaygroundPage/web.ts +31 -31
- package/templates/nx/shared/testing/project.json +18 -19
- package/templates/nx/shared/testing/support/actions/fillCredentials/mobile.action.ts +4 -4
- package/templates/nx/shared/testing/support/actions/fillCredentials/web.action.ts +4 -4
- package/templates/nx/shared/testing/support/steps/togglePlaygroundStates/mobile.step.ts +3 -3
- package/templates/nx/shared/testing/support/steps/togglePlaygroundStates/web.step.ts +5 -5
- package/templates/nx/shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts +4 -4
- package/templates/nx/shared/testing/support/steps/verifyPlaygroundState/web.step.ts +6 -6
- package/templates/nx/spectra.config.ts +52 -52
- package/templates/react-component/.cursorrules +17 -17
- package/templates/react-component/.vscode/extensions.json +5 -5
- package/templates/react-component/CLAUDE.md +14 -14
- package/templates/react-component/README.md +69 -69
- package/templates/react-component/fixtures/component-mock.json +12 -12
- package/templates/react-component/global-hooks/after/web.hook.ts +3 -3
- package/templates/react-component/global-hooks/before/web.hook.ts +3 -3
- package/templates/react-component/package.json +27 -27
- package/templates/react-component/page-objects/BadgeComponent/web.ts +23 -23
- package/templates/react-component/page-objects/ButtonComponent/web.ts +23 -23
- package/templates/react-component/page-objects/InputComponent/web.ts +13 -13
- package/templates/react-component/specs/BadgeComponent/TC-0002-badge-severities-and-dot/spec.md +18 -18
- package/templates/react-component/specs/BadgeComponent/TC-0002-badge-severities-and-dot/web.test.tsx +11 -11
- package/templates/react-component/specs/BadgeComponent/TC-0006-badge-success-with-dot/spec.md +18 -18
- package/templates/react-component/specs/BadgeComponent/TC-0006-badge-success-with-dot/web.test.tsx +10 -10
- package/templates/react-component/specs/BadgeComponent/TC-0007-badge-by-severity-lookup/spec.md +18 -18
- package/templates/react-component/specs/BadgeComponent/TC-0007-badge-by-severity-lookup/web.test.tsx +16 -16
- package/templates/react-component/specs/BadgeComponent/suite.md +12 -12
- package/templates/react-component/specs/ButtonComponent/TC-0001-button-rendering-and-click/spec.md +19 -19
- package/templates/react-component/specs/ButtonComponent/TC-0001-button-rendering-and-click/web.test.tsx +25 -28
- package/templates/react-component/specs/ButtonComponent/TC-0004-disabled-button-not-clickable/spec.md +19 -19
- package/templates/react-component/specs/ButtonComponent/TC-0004-disabled-button-not-clickable/web.test.tsx +13 -22
- package/templates/react-component/specs/ButtonComponent/TC-0005-button-renders-icon/spec.md +18 -18
- package/templates/react-component/specs/ButtonComponent/TC-0005-button-renders-icon/web.test.tsx +8 -8
- package/templates/react-component/specs/ButtonComponent/suite.md +12 -12
- package/templates/react-component/specs/InputComponent/TC-0003-input-typing-and-clear/spec.md +20 -20
- package/templates/react-component/specs/InputComponent/TC-0003-input-typing-and-clear/web.test.tsx +24 -28
- package/templates/react-component/specs/InputComponent/TC-0008-disabled-input-not-editable/spec.md +18 -18
- package/templates/react-component/specs/InputComponent/TC-0008-disabled-input-not-editable/web.test.tsx +9 -9
- package/templates/react-component/specs/InputComponent/suite.md +12 -12
- package/templates/react-component/spectra.config.ts +17 -27
- package/templates/react-component/src/components/Badge/Badge.tsx +60 -60
- package/templates/react-component/src/components/Button/Button.tsx +59 -57
- package/templates/react-component/src/components/Input/Input.tsx +40 -41
- package/templates/react-component/src/test-utils.tsx +23 -23
- package/templates/react-component/support/actions/fillInputField/web.action.ts +9 -9
- package/templates/react-component/support/steps/verifyButtonState/web.step.ts +12 -12
- package/bin/testspectra-runner.exe +0 -0
- package/dist/.tsbuildinfo +0 -1
- package/dist/commands/update.d.ts +0 -3
- package/dist/commands/update.js +0 -109
- package/dist/lifecycle/__tests__/lifecycle-engine.test.js +0 -290
- package/dist/lifecycle/hook-discovery.d.ts +0 -24
- package/dist/lifecycle/hook-discovery.js +0 -60
- package/dist/lifecycle/hook-dispatcher.d.ts +0 -34
- package/dist/lifecycle/hook-dispatcher.js +0 -190
- package/dist/lifecycle/index.d.ts +0 -3
- package/dist/lifecycle/index.js +0 -3
- package/dist/lifecycle/parallel-grouping.d.ts +0 -27
- package/dist/lifecycle/parallel-grouping.js +0 -151
- package/templates/nx/.nx/workspace-data/59842386-c7c4-44ca-b2c2-20e1700bd13d.db +0 -0
- package/templates/nx/.nx/workspace-data/59842386-c7c4-44ca-b2c2-20e1700bd13d.db-wal +0 -0
- package/templates/nx/.nx/workspace-data/d/server-process.json +0 -3
- /package/dist/{lifecycle/__tests__/lifecycle-engine.test.d.ts → commands/__tests__/doctor-filter.test.d.ts} +0 -0
|
@@ -1,74 +1,146 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "6.0",
|
|
3
|
-
"nxVersion": "
|
|
4
|
-
"deps": {
|
|
5
|
-
"@testspectra/cli": "^1.1.8-rc.3",
|
|
6
|
-
"@testspectra/matchers": "^1.1.8-rc.3",
|
|
7
|
-
"@types/node": "^20.14.0",
|
|
8
|
-
"@wdio/cli": "^9.2.8",
|
|
9
|
-
"@wdio/local-runner": "^9.2.8",
|
|
10
|
-
"@wdio/spec-reporter": "^9.2.8",
|
|
11
|
-
"@wdio/devtools-service": "^8.46.0",
|
|
12
|
-
"@wdio/globals": "^9.2.8",
|
|
13
|
-
"@wdio/mocha-framework": "^9.2.8",
|
|
14
|
-
"nx": "19.8.4",
|
|
15
|
-
"typescript": "^5.4.5",
|
|
16
|
-
"webdriverio": "^9.2.8"
|
|
17
|
-
},
|
|
3
|
+
"nxVersion": "20.8.4",
|
|
18
4
|
"pathMappings": {},
|
|
19
5
|
"nxJsonPlugins": [],
|
|
20
6
|
"fileMap": {
|
|
21
7
|
"nonProjectFiles": [
|
|
8
|
+
{
|
|
9
|
+
"file": "nx.json",
|
|
10
|
+
"hash": "2058784385052146326"
|
|
11
|
+
},
|
|
22
12
|
{
|
|
23
13
|
"file": "pnpm-workspace.yaml",
|
|
24
|
-
"hash": "
|
|
14
|
+
"hash": "11062973401223444734"
|
|
25
15
|
},
|
|
26
16
|
{
|
|
27
17
|
"file": ".vscode/extensions.json",
|
|
28
18
|
"hash": "6496079274348496909"
|
|
29
19
|
},
|
|
20
|
+
{
|
|
21
|
+
"file": "package.json",
|
|
22
|
+
"hash": "3499066280807669204"
|
|
23
|
+
},
|
|
30
24
|
{
|
|
31
25
|
"file": ".gitignore",
|
|
32
26
|
"hash": "1731686672878252345"
|
|
33
27
|
},
|
|
34
28
|
{
|
|
35
29
|
"file": "pnpm-lock.yaml",
|
|
36
|
-
"hash": "
|
|
30
|
+
"hash": "5459540818199025768"
|
|
37
31
|
},
|
|
38
32
|
{
|
|
39
|
-
"file": "
|
|
40
|
-
"hash": "
|
|
33
|
+
"file": "spectra.config.ts",
|
|
34
|
+
"hash": "5826567216431235375"
|
|
41
35
|
},
|
|
42
36
|
{
|
|
43
37
|
"file": "tsconfig.json",
|
|
44
38
|
"hash": "8890589832440448254"
|
|
45
39
|
},
|
|
46
|
-
{
|
|
47
|
-
"file": "spectra.config.ts",
|
|
48
|
-
"hash": "15760368716233691427"
|
|
49
|
-
},
|
|
50
40
|
{
|
|
51
41
|
"file": ".cursorrules",
|
|
52
42
|
"hash": "5914400097935294858"
|
|
53
43
|
},
|
|
54
|
-
{
|
|
55
|
-
"file": "package.json",
|
|
56
|
-
"hash": "2954080393436794491"
|
|
57
|
-
},
|
|
58
44
|
{
|
|
59
45
|
"file": "CLAUDE.md",
|
|
60
|
-
"hash": "
|
|
46
|
+
"hash": "9577234870771110688"
|
|
61
47
|
}
|
|
62
48
|
],
|
|
63
49
|
"projectFileMap": {
|
|
50
|
+
"shared-testing": [
|
|
51
|
+
{
|
|
52
|
+
"file": "shared/testing/fixtures/apiData.json",
|
|
53
|
+
"hash": "5455579627617620587"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"file": "shared/testing/fixtures/playgroundData.json",
|
|
57
|
+
"hash": "6646110001933817841"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"file": "shared/testing/global-hooks/after/mobile.hook.ts",
|
|
61
|
+
"hash": "17704300444638893067"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"file": "shared/testing/global-hooks/after/web.hook.ts",
|
|
65
|
+
"hash": "4319467857538977176"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"file": "shared/testing/global-hooks/before/mobile.hook.ts",
|
|
69
|
+
"hash": "1418831585755647488"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"file": "shared/testing/global-hooks/before/web.hook.ts",
|
|
73
|
+
"hash": "5655415662119179755"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"file": "shared/testing/page-objects/MatchersPage/mobile.ts",
|
|
77
|
+
"hash": "13486007993280160103"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"file": "shared/testing/page-objects/MatchersPage/web.ts",
|
|
81
|
+
"hash": "6708715830774655929"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"file": "shared/testing/page-objects/NavigationPage/mobile.ts",
|
|
85
|
+
"hash": "9843815020701207652"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"file": "shared/testing/page-objects/NavigationPage/web.ts",
|
|
89
|
+
"hash": "2341250336288762399"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"file": "shared/testing/page-objects/PlaygroundPage/mobile.ts",
|
|
93
|
+
"hash": "8192927760362991284"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"file": "shared/testing/page-objects/PlaygroundPage/web.ts",
|
|
97
|
+
"hash": "13289179655405426712"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"file": "shared/testing/project.json",
|
|
101
|
+
"hash": "7371378800661206349"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"file": "shared/testing/support/actions/fillCredentials/mobile.action.ts",
|
|
105
|
+
"hash": "12211081252127526235"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"file": "shared/testing/support/actions/fillCredentials/web.action.ts",
|
|
109
|
+
"hash": "9993357721307207213"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"file": "shared/testing/support/steps/togglePlaygroundStates/mobile.step.ts",
|
|
113
|
+
"hash": "2440504136325471241"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"file": "shared/testing/support/steps/togglePlaygroundStates/step.md",
|
|
117
|
+
"hash": "7033246481886462733"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"file": "shared/testing/support/steps/togglePlaygroundStates/web.step.ts",
|
|
121
|
+
"hash": "3684774997705487691"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"file": "shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts",
|
|
125
|
+
"hash": "7780197038828149329"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"file": "shared/testing/support/steps/verifyPlaygroundState/step.md",
|
|
129
|
+
"hash": "4808698815589956784"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"file": "shared/testing/support/steps/verifyPlaygroundState/web.step.ts",
|
|
133
|
+
"hash": "7710645189151727546"
|
|
134
|
+
}
|
|
135
|
+
],
|
|
64
136
|
"playground-e2e": [
|
|
65
137
|
{
|
|
66
138
|
"file": "packages/playground/e2e/project.json",
|
|
67
|
-
"hash": "
|
|
139
|
+
"hash": "7483436778468358608"
|
|
68
140
|
},
|
|
69
141
|
{
|
|
70
142
|
"file": "packages/playground/e2e/specs/Playground/TC-0001-form-controls/mobile.test.ts",
|
|
71
|
-
"hash": "
|
|
143
|
+
"hash": "4890867782031227471"
|
|
72
144
|
},
|
|
73
145
|
{
|
|
74
146
|
"file": "packages/playground/e2e/specs/Playground/TC-0001-form-controls/spec.md",
|
|
@@ -76,11 +148,11 @@
|
|
|
76
148
|
},
|
|
77
149
|
{
|
|
78
150
|
"file": "packages/playground/e2e/specs/Playground/TC-0001-form-controls/web.test.ts",
|
|
79
|
-
"hash": "
|
|
151
|
+
"hash": "1983735092902158167"
|
|
80
152
|
},
|
|
81
153
|
{
|
|
82
154
|
"file": "packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/mobile.test.ts",
|
|
83
|
-
"hash": "
|
|
155
|
+
"hash": "11975331038121344625"
|
|
84
156
|
},
|
|
85
157
|
{
|
|
86
158
|
"file": "packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/spec.md",
|
|
@@ -88,7 +160,7 @@
|
|
|
88
160
|
},
|
|
89
161
|
{
|
|
90
162
|
"file": "packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/web.test.ts",
|
|
91
|
-
"hash": "
|
|
163
|
+
"hash": "12887248939991345892"
|
|
92
164
|
},
|
|
93
165
|
{
|
|
94
166
|
"file": "packages/playground/e2e/specs/Playground/hooks/after/mobile.hook.ts",
|
|
@@ -130,11 +202,11 @@
|
|
|
130
202
|
"matchers-e2e": [
|
|
131
203
|
{
|
|
132
204
|
"file": "packages/matchers/e2e/project.json",
|
|
133
|
-
"hash": "
|
|
205
|
+
"hash": "8584556520682172690"
|
|
134
206
|
},
|
|
135
207
|
{
|
|
136
208
|
"file": "packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts",
|
|
137
|
-
"hash": "
|
|
209
|
+
"hash": "17579115414444861159"
|
|
138
210
|
},
|
|
139
211
|
{
|
|
140
212
|
"file": "packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/spec.md",
|
|
@@ -142,11 +214,11 @@
|
|
|
142
214
|
},
|
|
143
215
|
{
|
|
144
216
|
"file": "packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts",
|
|
145
|
-
"hash": "
|
|
217
|
+
"hash": "3506437341224463352"
|
|
146
218
|
},
|
|
147
219
|
{
|
|
148
220
|
"file": "packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts",
|
|
149
|
-
"hash": "
|
|
221
|
+
"hash": "9190801750994680269"
|
|
150
222
|
},
|
|
151
223
|
{
|
|
152
224
|
"file": "packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/spec.md",
|
|
@@ -154,7 +226,7 @@
|
|
|
154
226
|
},
|
|
155
227
|
{
|
|
156
228
|
"file": "packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts",
|
|
157
|
-
"hash": "
|
|
229
|
+
"hash": "9190801750994680269"
|
|
158
230
|
},
|
|
159
231
|
{
|
|
160
232
|
"file": "packages/matchers/e2e/specs/ApiInterception/hooks/after/mobile.hook.ts",
|
|
@@ -194,7 +266,7 @@
|
|
|
194
266
|
},
|
|
195
267
|
{
|
|
196
268
|
"file": "packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/mobile.test.ts",
|
|
197
|
-
"hash": "
|
|
269
|
+
"hash": "323792240291177398"
|
|
198
270
|
},
|
|
199
271
|
{
|
|
200
272
|
"file": "packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/spec.md",
|
|
@@ -202,7 +274,7 @@
|
|
|
202
274
|
},
|
|
203
275
|
{
|
|
204
276
|
"file": "packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts",
|
|
205
|
-
"hash": "
|
|
277
|
+
"hash": "511473937149422354"
|
|
206
278
|
},
|
|
207
279
|
{
|
|
208
280
|
"file": "packages/matchers/e2e/specs/BrowserContext/hooks/after/mobile.hook.ts",
|
|
@@ -242,7 +314,7 @@
|
|
|
242
314
|
},
|
|
243
315
|
{
|
|
244
316
|
"file": "packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/mobile.test.ts",
|
|
245
|
-
"hash": "
|
|
317
|
+
"hash": "8677841806027518974"
|
|
246
318
|
},
|
|
247
319
|
{
|
|
248
320
|
"file": "packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/spec.md",
|
|
@@ -250,11 +322,11 @@
|
|
|
250
322
|
},
|
|
251
323
|
{
|
|
252
324
|
"file": "packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/web.test.ts",
|
|
253
|
-
"hash": "
|
|
325
|
+
"hash": "12332179917980160209"
|
|
254
326
|
},
|
|
255
327
|
{
|
|
256
328
|
"file": "packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/mobile.test.ts",
|
|
257
|
-
"hash": "
|
|
329
|
+
"hash": "3266336732830051248"
|
|
258
330
|
},
|
|
259
331
|
{
|
|
260
332
|
"file": "packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/spec.md",
|
|
@@ -262,7 +334,7 @@
|
|
|
262
334
|
},
|
|
263
335
|
{
|
|
264
336
|
"file": "packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts",
|
|
265
|
-
"hash": "
|
|
337
|
+
"hash": "17282964442852282533"
|
|
266
338
|
},
|
|
267
339
|
{
|
|
268
340
|
"file": "packages/matchers/e2e/specs/ContentMatchers/hooks/after/mobile.hook.ts",
|
|
@@ -302,7 +374,7 @@
|
|
|
302
374
|
},
|
|
303
375
|
{
|
|
304
376
|
"file": "packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/mobile.test.ts",
|
|
305
|
-
"hash": "
|
|
377
|
+
"hash": "3003231334062979167"
|
|
306
378
|
},
|
|
307
379
|
{
|
|
308
380
|
"file": "packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/spec.md",
|
|
@@ -310,11 +382,11 @@
|
|
|
310
382
|
},
|
|
311
383
|
{
|
|
312
384
|
"file": "packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/web.test.ts",
|
|
313
|
-
"hash": "
|
|
385
|
+
"hash": "15122524465264354499"
|
|
314
386
|
},
|
|
315
387
|
{
|
|
316
388
|
"file": "packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/mobile.test.ts",
|
|
317
|
-
"hash": "
|
|
389
|
+
"hash": "7303226060649403765"
|
|
318
390
|
},
|
|
319
391
|
{
|
|
320
392
|
"file": "packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/spec.md",
|
|
@@ -322,7 +394,7 @@
|
|
|
322
394
|
},
|
|
323
395
|
{
|
|
324
396
|
"file": "packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/web.test.ts",
|
|
325
|
-
"hash": "
|
|
397
|
+
"hash": "5046284625116809582"
|
|
326
398
|
},
|
|
327
399
|
{
|
|
328
400
|
"file": "packages/matchers/e2e/specs/ElementMatchers/hooks/after/mobile.hook.ts",
|
|
@@ -362,101 +434,15 @@
|
|
|
362
434
|
},
|
|
363
435
|
{
|
|
364
436
|
"file": "packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts",
|
|
365
|
-
"hash": "
|
|
437
|
+
"hash": "18074865448566424579"
|
|
366
438
|
},
|
|
367
439
|
{
|
|
368
440
|
"file": "packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md",
|
|
369
|
-
"hash": "
|
|
441
|
+
"hash": "4313157257621471941"
|
|
370
442
|
},
|
|
371
443
|
{
|
|
372
444
|
"file": "packages/matchers/e2e/specs/EnvironmentConfig/suite.md",
|
|
373
|
-
"hash": "
|
|
374
|
-
}
|
|
375
|
-
],
|
|
376
|
-
"shared-testing": [
|
|
377
|
-
{
|
|
378
|
-
"file": "shared/testing/fixtures/apiData.json",
|
|
379
|
-
"hash": "5455579627617620587"
|
|
380
|
-
},
|
|
381
|
-
{
|
|
382
|
-
"file": "shared/testing/fixtures/playgroundData.json",
|
|
383
|
-
"hash": "6646110001933817841"
|
|
384
|
-
},
|
|
385
|
-
{
|
|
386
|
-
"file": "shared/testing/global-hooks/after/mobile.hook.ts",
|
|
387
|
-
"hash": "17704300444638893067"
|
|
388
|
-
},
|
|
389
|
-
{
|
|
390
|
-
"file": "shared/testing/global-hooks/after/web.hook.ts",
|
|
391
|
-
"hash": "4319467857538977176"
|
|
392
|
-
},
|
|
393
|
-
{
|
|
394
|
-
"file": "shared/testing/global-hooks/before/mobile.hook.ts",
|
|
395
|
-
"hash": "1418831585755647488"
|
|
396
|
-
},
|
|
397
|
-
{
|
|
398
|
-
"file": "shared/testing/global-hooks/before/web.hook.ts",
|
|
399
|
-
"hash": "5655415662119179755"
|
|
400
|
-
},
|
|
401
|
-
{
|
|
402
|
-
"file": "shared/testing/page-objects/MatchersPage/mobile.ts",
|
|
403
|
-
"hash": "14739770433286832154"
|
|
404
|
-
},
|
|
405
|
-
{
|
|
406
|
-
"file": "shared/testing/page-objects/MatchersPage/web.ts",
|
|
407
|
-
"hash": "10534289472778041645"
|
|
408
|
-
},
|
|
409
|
-
{
|
|
410
|
-
"file": "shared/testing/page-objects/NavigationPage/mobile.ts",
|
|
411
|
-
"hash": "11930933505220566244"
|
|
412
|
-
},
|
|
413
|
-
{
|
|
414
|
-
"file": "shared/testing/page-objects/NavigationPage/web.ts",
|
|
415
|
-
"hash": "4680403657482770927"
|
|
416
|
-
},
|
|
417
|
-
{
|
|
418
|
-
"file": "shared/testing/page-objects/PlaygroundPage/mobile.ts",
|
|
419
|
-
"hash": "13898814571616324397"
|
|
420
|
-
},
|
|
421
|
-
{
|
|
422
|
-
"file": "shared/testing/page-objects/PlaygroundPage/web.ts",
|
|
423
|
-
"hash": "17078042520995651552"
|
|
424
|
-
},
|
|
425
|
-
{
|
|
426
|
-
"file": "shared/testing/project.json",
|
|
427
|
-
"hash": "11335838434811718514"
|
|
428
|
-
},
|
|
429
|
-
{
|
|
430
|
-
"file": "shared/testing/support/actions/fillCredentials/mobile.action.ts",
|
|
431
|
-
"hash": "8096860271186295656"
|
|
432
|
-
},
|
|
433
|
-
{
|
|
434
|
-
"file": "shared/testing/support/actions/fillCredentials/web.action.ts",
|
|
435
|
-
"hash": "8762216567275912008"
|
|
436
|
-
},
|
|
437
|
-
{
|
|
438
|
-
"file": "shared/testing/support/steps/togglePlaygroundStates/mobile.step.ts",
|
|
439
|
-
"hash": "13466002792648515658"
|
|
440
|
-
},
|
|
441
|
-
{
|
|
442
|
-
"file": "shared/testing/support/steps/togglePlaygroundStates/step.md",
|
|
443
|
-
"hash": "7033246481886462733"
|
|
444
|
-
},
|
|
445
|
-
{
|
|
446
|
-
"file": "shared/testing/support/steps/togglePlaygroundStates/web.step.ts",
|
|
447
|
-
"hash": "13190630044352974546"
|
|
448
|
-
},
|
|
449
|
-
{
|
|
450
|
-
"file": "shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts",
|
|
451
|
-
"hash": "15310420586937940575"
|
|
452
|
-
},
|
|
453
|
-
{
|
|
454
|
-
"file": "shared/testing/support/steps/verifyPlaygroundState/step.md",
|
|
455
|
-
"hash": "4808698815589956784"
|
|
456
|
-
},
|
|
457
|
-
{
|
|
458
|
-
"file": "shared/testing/support/steps/verifyPlaygroundState/web.step.ts",
|
|
459
|
-
"hash": "11897106765901527184"
|
|
445
|
+
"hash": "2736763753819703752"
|
|
460
446
|
}
|
|
461
447
|
]
|
|
462
448
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
10768379145142504764
|
|
Binary file
|