@testspectra/cli 1.1.6 → 1.1.8-rc.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/bin/.testspectra-runner.hash +1 -1
- package/bin/testspectra-runner +0 -0
- package/demo-app/assets/index-BhlW-eXG.css +1 -0
- package/demo-app/assets/index-DOtRypCa.js +154 -0
- package/demo-app/index.html +2 -2
- package/dist/.tsbuildinfo +1 -1
- package/dist/commands/__tests__/run-e2e.test.js +254 -13
- package/dist/commands/__tests__/run.test.js +92 -16
- package/dist/commands/demo.js +17 -7
- package/dist/commands/init.d.ts +1 -1
- package/dist/commands/init.js +6 -1
- package/dist/commands/lint.d.ts +5 -0
- package/dist/commands/lint.js +55 -0
- package/dist/commands/refactor.d.ts +2 -1
- package/dist/commands/refactor.js +129 -35
- package/dist/commands/run.d.ts +2 -3
- package/dist/commands/run.js +93 -28
- package/dist/commands/skills.d.ts +9 -0
- package/dist/commands/skills.js +28 -0
- package/dist/commands/sync-types.js +1 -0
- package/dist/commands/test.d.ts +17 -0
- package/dist/commands/test.js +76 -0
- package/dist/commands/watch.js +9 -3
- package/dist/config/loader.js +1 -1
- package/dist/config/schema.d.ts +5 -114
- package/dist/config/schema.js +1 -17
- package/dist/generator/__tests__/tsconfig-isolation.test.js +6 -2
- package/dist/generator/__tests__/type-generator.test.js +1 -1
- package/dist/generator/tsconfig-generator.js +44 -16
- package/dist/generator/type-generator.d.ts +24 -1
- package/dist/generator/type-generator.js +104 -8
- package/dist/index.d.ts +1 -1
- package/dist/index.js +65 -29
- package/dist/linter/__tests__/anonymous-export.test.js +184 -0
- package/dist/linter/__tests__/component-test-imports.test.d.ts +1 -0
- package/dist/linter/__tests__/component-test-imports.test.js +115 -0
- package/dist/linter/__tests__/shared-lib-boundary.test.d.ts +1 -0
- package/dist/linter/__tests__/shared-lib-boundary.test.js +270 -0
- package/dist/linter/__tests__/spec-schema.test.d.ts +1 -0
- package/dist/linter/__tests__/spec-schema.test.js +369 -0
- package/dist/linter/__tests__/step-parity.test.d.ts +1 -0
- package/dist/linter/__tests__/step-parity.test.js +372 -0
- package/dist/linter/discovery.d.ts +30 -0
- package/dist/linter/discovery.js +249 -0
- package/dist/linter/extractor.d.ts +67 -0
- package/dist/linter/extractor.js +245 -0
- package/dist/linter/index.d.ts +7 -0
- package/dist/linter/index.js +7 -0
- package/dist/linter/parser.d.ts +24 -0
- package/dist/linter/parser.js +219 -0
- package/dist/linter/schemas/spec.schema.d.ts +83 -0
- package/dist/linter/schemas/spec.schema.js +150 -0
- package/dist/linter/schemas/suite.schema.d.ts +59 -0
- package/dist/linter/schemas/suite.schema.js +83 -0
- package/dist/linter/spec-linter.d.ts +23 -0
- package/dist/linter/spec-linter.js +630 -0
- package/dist/linter/types.d.ts +28 -0
- package/dist/linter/types.js +1 -0
- package/dist/refactor/__tests__/refactor-engine.test.js +698 -0
- package/dist/refactor/refactor-engine.d.ts +25 -0
- package/dist/refactor/refactor-engine.js +374 -42
- package/dist/reporter/semantic-formatter.js +17 -2
- package/dist/reporter/types.d.ts +1 -1
- package/dist/runner/bridge.d.ts +1 -1
- package/dist/runner/bridge.js +34 -21
- package/dist/runner/reporter.d.ts +2 -0
- package/dist/runner/reporter.js +11 -3
- package/dist/utils/__tests__/api-server.test.d.ts +1 -0
- package/dist/utils/__tests__/api-server.test.js +62 -0
- package/dist/utils/__tests__/demo-server.test.d.ts +1 -0
- package/dist/utils/__tests__/demo-server.test.js +35 -0
- package/dist/utils/api-server.d.ts +19 -0
- package/dist/utils/api-server.js +179 -0
- package/dist/utils/demo-server.d.ts +5 -0
- package/dist/utils/demo-server.js +8 -1
- package/package.json +29 -25
- package/templates/default/CLAUDE.md +5 -0
- package/templates/default/package.json +3 -3
- package/templates/default/page-objects/AuthPage/mobile.ts +5 -0
- package/templates/default/page-objects/AuthPage/web.ts +10 -0
- package/templates/default/page-objects/MatchersPage/mobile.ts +26 -2
- package/templates/default/page-objects/MatchersPage/web.ts +8 -2
- package/templates/default/page-objects/NavigationPage/mobile.ts +1 -1
- package/templates/default/page-objects/NavigationPage/web.ts +1 -1
- package/templates/default/page-objects/PlaygroundPage/mobile.ts +12 -6
- package/templates/default/page-objects/PlaygroundPage/web.ts +2 -2
- package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts +45 -3
- package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/spec.md +7 -0
- package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts +8 -4
- package/templates/default/specs/ApiInterception/TC-0009-post-mocking/android.test.ts +3 -0
- package/templates/default/specs/ApiInterception/TC-0009-post-mocking/common.test.ts +3 -0
- package/templates/default/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts +13 -2
- package/templates/default/specs/ApiInterception/TC-0009-post-mocking/spec.md +7 -0
- package/templates/default/specs/ApiInterception/TC-0009-post-mocking/web.test.ts +6 -4
- package/templates/default/specs/ApiInterception/TC-0012-direct-and-late-response/common.test.ts +30 -0
- package/templates/default/specs/ApiInterception/TC-0012-direct-and-late-response/spec.md +22 -0
- package/templates/default/specs/ApiInterception/TC-0013-real-network-call-recorded/common.test.ts +27 -0
- package/templates/default/specs/ApiInterception/TC-0013-real-network-call-recorded/spec.md +20 -0
- package/templates/default/specs/ApiInterception/TC-0015-mock-server-sent-events/spec.md +24 -0
- package/templates/default/specs/ApiInterception/TC-0015-mock-server-sent-events/web.test.ts +26 -0
- package/templates/default/specs/ApiInterception/TC-0016-bypass-websocket-with-app-level-mock/spec.md +37 -0
- package/templates/default/specs/ApiInterception/TC-0016-bypass-websocket-with-app-level-mock/web.test.ts +21 -0
- package/templates/default/specs/ApiInterception/TC-0017-bypass-captcha-with-test-mode-flag/spec.md +29 -0
- package/templates/default/specs/ApiInterception/TC-0017-bypass-captcha-with-test-mode-flag/web.test.ts +16 -0
- package/templates/default/specs/ApiInterception/suite.md +1 -0
- package/templates/default/specs/ApiSeeding/TC-0014-seed-and-cleanup-via-hooks/common.test.ts +30 -0
- package/templates/default/specs/ApiSeeding/TC-0014-seed-and-cleanup-via-hooks/spec.md +23 -0
- package/templates/default/specs/ApiSeeding/hooks/after/common.hook.ts +16 -0
- package/templates/default/specs/ApiSeeding/hooks/before/common.hook.ts +28 -0
- package/templates/default/specs/ApiSeeding/suite.md +9 -0
- package/templates/default/specs/Authentication/TC-0021-seed-authenticated-session/mobile.test.ts +7 -0
- package/templates/default/specs/Authentication/TC-0021-seed-authenticated-session/spec.md +19 -0
- package/templates/default/specs/Authentication/TC-0021-seed-authenticated-session/web.test.ts +9 -0
- package/templates/default/specs/Authentication/suite.md +9 -0
- package/templates/default/specs/BrowserContext/TC-0007-title-and-navigation/mobile.test.ts +1 -1
- package/templates/default/specs/BrowserContext/TC-0007-title-and-navigation/spec.md +5 -0
- package/templates/default/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts +1 -1
- package/templates/default/specs/BrowserContext/TC-0022-history-navigation/mobile.test.ts +17 -0
- package/templates/default/specs/BrowserContext/TC-0022-history-navigation/spec.md +28 -0
- package/templates/default/specs/BrowserContext/TC-0022-history-navigation/web.test.ts +26 -0
- package/templates/default/specs/ContentMatchers/TC-0005-text-and-values/common.test.ts +26 -0
- package/templates/default/specs/ContentMatchers/TC-0005-text-and-values/spec.md +7 -0
- package/templates/default/specs/ContentMatchers/TC-0006-collections-and-empty/mobile.test.ts +1 -1
- package/templates/default/specs/ContentMatchers/TC-0006-collections-and-empty/spec.md +5 -0
- package/templates/default/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts +1 -1
- package/templates/default/specs/ContentMatchers/TC-0020-scoped-element-access/common.test.ts +14 -0
- package/templates/default/specs/ContentMatchers/TC-0020-scoped-element-access/spec.md +21 -0
- package/templates/default/specs/DeepLink/TC-0018-navigate-via-deep-link/mobile.test.ts +28 -0
- package/templates/default/specs/DeepLink/TC-0018-navigate-via-deep-link/spec.md +29 -0
- package/templates/default/specs/DeepLink/suite.md +9 -0
- package/templates/default/specs/ElementMatchers/TC-0003-visibility-and-dom/mobile.test.ts +1 -1
- package/templates/default/specs/ElementMatchers/TC-0003-visibility-and-dom/spec.md +5 -0
- package/templates/default/specs/ElementMatchers/TC-0003-visibility-and-dom/web.test.ts +1 -1
- package/templates/default/specs/ElementMatchers/TC-0004-states-and-attributes/mobile.test.ts +1 -1
- package/templates/default/specs/ElementMatchers/TC-0004-states-and-attributes/spec.md +7 -0
- package/templates/default/specs/ElementMatchers/TC-0004-states-and-attributes/web.test.ts +1 -1
- package/templates/default/specs/ElementMatchers/suite.md +2 -1
- package/templates/default/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts +5 -0
- package/templates/default/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md +16 -0
- package/templates/default/specs/EnvironmentConfig/suite.md +9 -0
- package/templates/default/specs/PermissionRationale/TC-0010-camera-permission-allow/mobile.test.ts +26 -0
- package/templates/default/specs/PermissionRationale/TC-0010-camera-permission-allow/spec.md +22 -0
- package/templates/default/specs/PermissionRationale/TC-0011-camera-permission-deny/mobile.test.ts +13 -0
- package/templates/default/specs/PermissionRationale/TC-0011-camera-permission-deny/spec.md +20 -0
- package/templates/default/specs/PermissionRationale/suite.md +9 -0
- package/templates/default/specs/Playground/TC-0001-form-controls/mobile.test.ts +1 -1
- package/templates/default/specs/Playground/TC-0001-form-controls/spec.md +6 -0
- package/templates/default/specs/Playground/TC-0001-form-controls/web.test.ts +1 -1
- package/templates/default/specs/Playground/TC-0002-toggle-elements/mobile.test.ts +1 -1
- package/templates/default/specs/Playground/TC-0002-toggle-elements/spec.md +6 -0
- package/templates/default/specs/Playground/TC-0002-toggle-elements/web.test.ts +1 -1
- package/templates/default/spectra.config.ts +1 -17
- package/templates/default/support/actions/fillCredentials/mobile.action.ts +3 -3
- package/templates/default/support/actions/fillCredentials/web.action.ts +1 -1
- package/templates/default/support/actions/seedSession/mobile.action.ts +9 -0
- package/templates/default/support/actions/seedSession/web.action.ts +13 -0
- package/templates/default/support/steps/togglePlaygroundStates/mobile.step.ts +1 -1
- package/templates/default/support/steps/togglePlaygroundStates/web.step.ts +1 -1
- package/templates/default/support/steps/verifyPlaygroundState/mobile.step.ts +1 -1
- package/templates/default/support/steps/verifyPlaygroundState/web.step.ts +1 -1
- package/templates/nx/.nx/workspace-data/70094CFD-E89B-57A1-9619-2FC5F4963C54.db +0 -0
- package/templates/nx/.nx/workspace-data/70094CFD-E89B-57A1-9619-2FC5F4963C54.db-shm +0 -0
- package/templates/nx/.nx/workspace-data/70094CFD-E89B-57A1-9619-2FC5F4963C54.db-wal +0 -0
- package/templates/nx/.nx/workspace-data/d/daemon.log +5388 -168
- package/templates/nx/.nx/workspace-data/d/server-process.json +3 -0
- package/templates/nx/.nx/workspace-data/file-map.json +464 -0
- package/templates/nx/.nx/workspace-data/lockfile.hash +1 -0
- package/templates/nx/.nx/workspace-data/nx_files.nxt +0 -0
- package/templates/nx/.nx/workspace-data/parsed-lock-file.json +13485 -0
- package/templates/nx/.nx/workspace-data/project-graph.json +14389 -0
- package/templates/nx/package.json +3 -3
- package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts +25 -1
- package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts +2 -2
- package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts +22 -1
- package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts +2 -2
- package/templates/nx/packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/mobile.test.ts +1 -1
- package/templates/nx/packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts +1 -1
- package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/mobile.test.ts +1 -1
- package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/web.test.ts +1 -1
- package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/mobile.test.ts +1 -1
- package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts +1 -1
- package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/mobile.test.ts +1 -1
- package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/web.test.ts +1 -1
- package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/mobile.test.ts +1 -1
- package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/web.test.ts +1 -1
- package/templates/nx/packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts +5 -0
- package/templates/nx/packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md +16 -0
- package/templates/nx/packages/matchers/e2e/specs/EnvironmentConfig/suite.md +9 -0
- package/templates/nx/packages/playground/e2e/specs/Playground/TC-0001-form-controls/mobile.test.ts +1 -1
- package/templates/nx/packages/playground/e2e/specs/Playground/TC-0001-form-controls/web.test.ts +1 -1
- package/templates/nx/packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/mobile.test.ts +1 -1
- package/templates/nx/packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/web.test.ts +1 -1
- package/templates/nx/shared/testing/page-objects/MatchersPage/mobile.ts +1 -1
- package/templates/nx/shared/testing/page-objects/MatchersPage/web.ts +83 -29
- package/templates/nx/shared/testing/page-objects/NavigationPage/mobile.ts +1 -1
- package/templates/nx/shared/testing/page-objects/NavigationPage/web.ts +1 -1
- package/templates/nx/shared/testing/page-objects/PlaygroundPage/mobile.ts +1 -1
- package/templates/nx/shared/testing/page-objects/PlaygroundPage/web.ts +2 -2
- package/templates/nx/shared/testing/support/actions/fillCredentials/mobile.action.ts +1 -1
- package/templates/nx/shared/testing/support/actions/fillCredentials/web.action.ts +1 -1
- package/templates/nx/shared/testing/support/steps/togglePlaygroundStates/mobile.step.ts +1 -1
- package/templates/nx/shared/testing/support/steps/togglePlaygroundStates/web.step.ts +1 -1
- package/templates/nx/shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts +1 -1
- package/templates/nx/shared/testing/support/steps/verifyPlaygroundState/web.step.ts +1 -1
- package/templates/nx/spectra.config.ts +1 -17
- package/templates/react-component/.cursorrules +17 -0
- package/templates/react-component/.vscode/extensions.json +5 -0
- package/templates/react-component/CLAUDE.md +14 -0
- package/templates/react-component/README.md +69 -0
- package/templates/react-component/fixtures/component-mock.json +12 -0
- package/templates/react-component/global-hooks/after/web.hook.ts +3 -0
- package/templates/react-component/global-hooks/before/web.hook.ts +3 -0
- package/templates/react-component/package.json +27 -0
- package/templates/react-component/page-objects/BadgeComponent/web.ts +23 -0
- package/templates/react-component/page-objects/ButtonComponent/web.ts +23 -0
- package/templates/react-component/page-objects/InputComponent/web.ts +13 -0
- package/templates/react-component/specs/BadgeComponent/TC-0002-badge-severities-and-dot/spec.md +18 -0
- package/templates/react-component/specs/BadgeComponent/TC-0002-badge-severities-and-dot/web.test.tsx +11 -0
- package/templates/react-component/specs/BadgeComponent/TC-0006-badge-success-with-dot/spec.md +18 -0
- package/templates/react-component/specs/BadgeComponent/TC-0006-badge-success-with-dot/web.test.tsx +10 -0
- package/templates/react-component/specs/BadgeComponent/TC-0007-badge-by-severity-lookup/spec.md +18 -0
- package/templates/react-component/specs/BadgeComponent/TC-0007-badge-by-severity-lookup/web.test.tsx +16 -0
- package/templates/react-component/specs/BadgeComponent/suite.md +12 -0
- package/templates/react-component/specs/ButtonComponent/TC-0001-button-rendering-and-click/spec.md +19 -0
- package/templates/react-component/specs/ButtonComponent/TC-0001-button-rendering-and-click/web.test.tsx +28 -0
- package/templates/react-component/specs/ButtonComponent/TC-0004-disabled-button-not-clickable/spec.md +19 -0
- package/templates/react-component/specs/ButtonComponent/TC-0004-disabled-button-not-clickable/web.test.tsx +22 -0
- package/templates/react-component/specs/ButtonComponent/TC-0005-button-renders-icon/spec.md +18 -0
- package/templates/react-component/specs/ButtonComponent/TC-0005-button-renders-icon/web.test.tsx +8 -0
- package/templates/react-component/specs/ButtonComponent/suite.md +12 -0
- package/templates/react-component/specs/InputComponent/TC-0003-input-typing-and-clear/spec.md +20 -0
- package/templates/react-component/specs/InputComponent/TC-0003-input-typing-and-clear/web.test.tsx +28 -0
- package/templates/react-component/specs/InputComponent/TC-0008-disabled-input-not-editable/spec.md +18 -0
- package/templates/react-component/specs/InputComponent/TC-0008-disabled-input-not-editable/web.test.tsx +9 -0
- package/templates/react-component/specs/InputComponent/suite.md +12 -0
- package/templates/react-component/spectra.config.ts +27 -0
- package/templates/react-component/src/components/Badge/Badge.tsx +60 -0
- package/templates/react-component/src/components/Button/Button.tsx +57 -0
- package/templates/react-component/src/components/Input/Input.tsx +41 -0
- package/templates/react-component/src/test-utils.tsx +23 -0
- package/templates/react-component/support/actions/fillInputField/web.action.ts +9 -0
- package/templates/react-component/support/steps/verifyButtonState/web.step.ts +12 -0
- package/templates/react-component/tsconfig.json +8 -0
- package/demo-app/assets/index-DPfv5_EF.js +0 -116
- package/demo-app/assets/index-gIwu2EMV.css +0 -1
- package/dist/commands/__tests__/cloud-run.test.js +0 -93
- package/dist/commands/cloud-run.d.ts +0 -13
- package/dist/commands/cloud-run.js +0 -120
- package/templates/default/specs/ContentMatchers/TC-0005-text-and-values/mobile.test.ts +0 -17
- package/templates/default/specs/ContentMatchers/TC-0005-text-and-values/web.test.ts +0 -17
- /package/dist/{commands/__tests__/cloud-run.test.d.ts → linter/__tests__/anonymous-export.test.d.ts} +0 -0
|
@@ -0,0 +1,464 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "6.0",
|
|
3
|
+
"nxVersion": "19.8.4",
|
|
4
|
+
"deps": {
|
|
5
|
+
"@testspectra/cli": "^1.1.8-rc.1",
|
|
6
|
+
"@testspectra/matchers": "^1.1.8-rc.1",
|
|
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
|
+
},
|
|
18
|
+
"pathMappings": {},
|
|
19
|
+
"nxJsonPlugins": [],
|
|
20
|
+
"fileMap": {
|
|
21
|
+
"nonProjectFiles": [
|
|
22
|
+
{
|
|
23
|
+
"file": ".gitignore",
|
|
24
|
+
"hash": "1731686672878252345"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"file": "package.json",
|
|
28
|
+
"hash": "4835928903292916152"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"file": "spectra.config.ts",
|
|
32
|
+
"hash": "5826567216431235375"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"file": "tsconfig.json",
|
|
36
|
+
"hash": "8890589832440448254"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"file": "nx.json",
|
|
40
|
+
"hash": "2058784385052146326"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"file": ".cursorrules",
|
|
44
|
+
"hash": "5914400097935294858"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"file": ".vscode/extensions.json",
|
|
48
|
+
"hash": "6496079274348496909"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"file": "pnpm-lock.yaml",
|
|
52
|
+
"hash": "5459540818199025768"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"file": "CLAUDE.md",
|
|
56
|
+
"hash": "9577234870771110688"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"file": "pnpm-workspace.yaml",
|
|
60
|
+
"hash": "11062973401223444734"
|
|
61
|
+
}
|
|
62
|
+
],
|
|
63
|
+
"projectFileMap": {
|
|
64
|
+
"matchers-e2e": [
|
|
65
|
+
{
|
|
66
|
+
"file": "packages/matchers/e2e/project.json",
|
|
67
|
+
"hash": "18324501588508262577"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"file": "packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts",
|
|
71
|
+
"hash": "17579115414444861159"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"file": "packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/spec.md",
|
|
75
|
+
"hash": "14628194141941950054"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"file": "packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts",
|
|
79
|
+
"hash": "3506437341224463352"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"file": "packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts",
|
|
83
|
+
"hash": "9190801750994680269"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"file": "packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/spec.md",
|
|
87
|
+
"hash": "10192166495242338866"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"file": "packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts",
|
|
91
|
+
"hash": "9190801750994680269"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"file": "packages/matchers/e2e/specs/ApiInterception/hooks/after/mobile.hook.ts",
|
|
95
|
+
"hash": "14051783072589214011"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"file": "packages/matchers/e2e/specs/ApiInterception/hooks/after/web.hook.ts",
|
|
99
|
+
"hash": "14051783072589214011"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"file": "packages/matchers/e2e/specs/ApiInterception/hooks/afterEach/mobile.hook.ts",
|
|
103
|
+
"hash": "14051783072589214011"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"file": "packages/matchers/e2e/specs/ApiInterception/hooks/afterEach/web.hook.ts",
|
|
107
|
+
"hash": "14051783072589214011"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"file": "packages/matchers/e2e/specs/ApiInterception/hooks/before/mobile.hook.ts",
|
|
111
|
+
"hash": "14051783072589214011"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"file": "packages/matchers/e2e/specs/ApiInterception/hooks/before/web.hook.ts",
|
|
115
|
+
"hash": "14051783072589214011"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"file": "packages/matchers/e2e/specs/ApiInterception/hooks/beforeEach/mobile.hook.ts",
|
|
119
|
+
"hash": "14051783072589214011"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"file": "packages/matchers/e2e/specs/ApiInterception/hooks/beforeEach/web.hook.ts",
|
|
123
|
+
"hash": "14051783072589214011"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"file": "packages/matchers/e2e/specs/ApiInterception/suite.md",
|
|
127
|
+
"hash": "5220528353413312843"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"file": "packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/mobile.test.ts",
|
|
131
|
+
"hash": "323792240291177398"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"file": "packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/spec.md",
|
|
135
|
+
"hash": "6634982293435252454"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"file": "packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts",
|
|
139
|
+
"hash": "511473937149422354"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"file": "packages/matchers/e2e/specs/BrowserContext/hooks/after/mobile.hook.ts",
|
|
143
|
+
"hash": "14051783072589214011"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"file": "packages/matchers/e2e/specs/BrowserContext/hooks/after/web.hook.ts",
|
|
147
|
+
"hash": "14051783072589214011"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"file": "packages/matchers/e2e/specs/BrowserContext/hooks/afterEach/mobile.hook.ts",
|
|
151
|
+
"hash": "14051783072589214011"
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"file": "packages/matchers/e2e/specs/BrowserContext/hooks/afterEach/web.hook.ts",
|
|
155
|
+
"hash": "14051783072589214011"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"file": "packages/matchers/e2e/specs/BrowserContext/hooks/before/mobile.hook.ts",
|
|
159
|
+
"hash": "14051783072589214011"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"file": "packages/matchers/e2e/specs/BrowserContext/hooks/before/web.hook.ts",
|
|
163
|
+
"hash": "14051783072589214011"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"file": "packages/matchers/e2e/specs/BrowserContext/hooks/beforeEach/mobile.hook.ts",
|
|
167
|
+
"hash": "14051783072589214011"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"file": "packages/matchers/e2e/specs/BrowserContext/hooks/beforeEach/web.hook.ts",
|
|
171
|
+
"hash": "14051783072589214011"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"file": "packages/matchers/e2e/specs/BrowserContext/suite.md",
|
|
175
|
+
"hash": "6012328608722212682"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"file": "packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/mobile.test.ts",
|
|
179
|
+
"hash": "8677841806027518974"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"file": "packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/spec.md",
|
|
183
|
+
"hash": "17780221467222960171"
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"file": "packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/web.test.ts",
|
|
187
|
+
"hash": "12332179917980160209"
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"file": "packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/mobile.test.ts",
|
|
191
|
+
"hash": "3266336732830051248"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"file": "packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/spec.md",
|
|
195
|
+
"hash": "12740401532227616202"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"file": "packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts",
|
|
199
|
+
"hash": "17282964442852282533"
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"file": "packages/matchers/e2e/specs/ContentMatchers/hooks/after/mobile.hook.ts",
|
|
203
|
+
"hash": "14051783072589214011"
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"file": "packages/matchers/e2e/specs/ContentMatchers/hooks/after/web.hook.ts",
|
|
207
|
+
"hash": "14051783072589214011"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"file": "packages/matchers/e2e/specs/ContentMatchers/hooks/afterEach/mobile.hook.ts",
|
|
211
|
+
"hash": "14051783072589214011"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"file": "packages/matchers/e2e/specs/ContentMatchers/hooks/afterEach/web.hook.ts",
|
|
215
|
+
"hash": "14051783072589214011"
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"file": "packages/matchers/e2e/specs/ContentMatchers/hooks/before/mobile.hook.ts",
|
|
219
|
+
"hash": "14051783072589214011"
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"file": "packages/matchers/e2e/specs/ContentMatchers/hooks/before/web.hook.ts",
|
|
223
|
+
"hash": "14051783072589214011"
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"file": "packages/matchers/e2e/specs/ContentMatchers/hooks/beforeEach/mobile.hook.ts",
|
|
227
|
+
"hash": "14051783072589214011"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"file": "packages/matchers/e2e/specs/ContentMatchers/hooks/beforeEach/web.hook.ts",
|
|
231
|
+
"hash": "14051783072589214011"
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"file": "packages/matchers/e2e/specs/ContentMatchers/suite.md",
|
|
235
|
+
"hash": "7886016465513756096"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"file": "packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/mobile.test.ts",
|
|
239
|
+
"hash": "3003231334062979167"
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"file": "packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/spec.md",
|
|
243
|
+
"hash": "17922511752871933316"
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"file": "packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/web.test.ts",
|
|
247
|
+
"hash": "15122524465264354499"
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
"file": "packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/mobile.test.ts",
|
|
251
|
+
"hash": "7303226060649403765"
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"file": "packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/spec.md",
|
|
255
|
+
"hash": "13778804543857513666"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"file": "packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/web.test.ts",
|
|
259
|
+
"hash": "5046284625116809582"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"file": "packages/matchers/e2e/specs/ElementMatchers/hooks/after/mobile.hook.ts",
|
|
263
|
+
"hash": "14051783072589214011"
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"file": "packages/matchers/e2e/specs/ElementMatchers/hooks/after/web.hook.ts",
|
|
267
|
+
"hash": "14051783072589214011"
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"file": "packages/matchers/e2e/specs/ElementMatchers/hooks/afterEach/mobile.hook.ts",
|
|
271
|
+
"hash": "14051783072589214011"
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"file": "packages/matchers/e2e/specs/ElementMatchers/hooks/afterEach/web.hook.ts",
|
|
275
|
+
"hash": "14051783072589214011"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"file": "packages/matchers/e2e/specs/ElementMatchers/hooks/before/mobile.hook.ts",
|
|
279
|
+
"hash": "14051783072589214011"
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"file": "packages/matchers/e2e/specs/ElementMatchers/hooks/before/web.hook.ts",
|
|
283
|
+
"hash": "14051783072589214011"
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"file": "packages/matchers/e2e/specs/ElementMatchers/hooks/beforeEach/mobile.hook.ts",
|
|
287
|
+
"hash": "14051783072589214011"
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"file": "packages/matchers/e2e/specs/ElementMatchers/hooks/beforeEach/web.hook.ts",
|
|
291
|
+
"hash": "14051783072589214011"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"file": "packages/matchers/e2e/specs/ElementMatchers/suite.md",
|
|
295
|
+
"hash": "16817934389284560006"
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"file": "packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts",
|
|
299
|
+
"hash": "18074865448566424579"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"file": "packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md",
|
|
303
|
+
"hash": "4313157257621471941"
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"file": "packages/matchers/e2e/specs/EnvironmentConfig/suite.md",
|
|
307
|
+
"hash": "2736763753819703752"
|
|
308
|
+
}
|
|
309
|
+
],
|
|
310
|
+
"playground-e2e": [
|
|
311
|
+
{
|
|
312
|
+
"file": "packages/playground/e2e/project.json",
|
|
313
|
+
"hash": "6122062871794656679"
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"file": "packages/playground/e2e/specs/Playground/TC-0001-form-controls/mobile.test.ts",
|
|
317
|
+
"hash": "4890867782031227471"
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"file": "packages/playground/e2e/specs/Playground/TC-0001-form-controls/spec.md",
|
|
321
|
+
"hash": "1594899313611085372"
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"file": "packages/playground/e2e/specs/Playground/TC-0001-form-controls/web.test.ts",
|
|
325
|
+
"hash": "1983735092902158167"
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"file": "packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/mobile.test.ts",
|
|
329
|
+
"hash": "11975331038121344625"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"file": "packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/spec.md",
|
|
333
|
+
"hash": "12190577339537127331"
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"file": "packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/web.test.ts",
|
|
337
|
+
"hash": "12887248939991345892"
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"file": "packages/playground/e2e/specs/Playground/hooks/after/mobile.hook.ts",
|
|
341
|
+
"hash": "14051783072589214011"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"file": "packages/playground/e2e/specs/Playground/hooks/after/web.hook.ts",
|
|
345
|
+
"hash": "14051783072589214011"
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"file": "packages/playground/e2e/specs/Playground/hooks/afterEach/mobile.hook.ts",
|
|
349
|
+
"hash": "14051783072589214011"
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"file": "packages/playground/e2e/specs/Playground/hooks/afterEach/web.hook.ts",
|
|
353
|
+
"hash": "14051783072589214011"
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"file": "packages/playground/e2e/specs/Playground/hooks/before/mobile.hook.ts",
|
|
357
|
+
"hash": "14051783072589214011"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"file": "packages/playground/e2e/specs/Playground/hooks/before/web.hook.ts",
|
|
361
|
+
"hash": "14051783072589214011"
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"file": "packages/playground/e2e/specs/Playground/hooks/beforeEach/mobile.hook.ts",
|
|
365
|
+
"hash": "14051783072589214011"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"file": "packages/playground/e2e/specs/Playground/hooks/beforeEach/web.hook.ts",
|
|
369
|
+
"hash": "14051783072589214011"
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"file": "packages/playground/e2e/specs/Playground/suite.md",
|
|
373
|
+
"hash": "17750886301217575279"
|
|
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": "13486007993280160103"
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"file": "shared/testing/page-objects/MatchersPage/web.ts",
|
|
407
|
+
"hash": "6708715830774655929"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"file": "shared/testing/page-objects/NavigationPage/mobile.ts",
|
|
411
|
+
"hash": "9843815020701207652"
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"file": "shared/testing/page-objects/NavigationPage/web.ts",
|
|
415
|
+
"hash": "2341250336288762399"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"file": "shared/testing/page-objects/PlaygroundPage/mobile.ts",
|
|
419
|
+
"hash": "8192927760362991284"
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"file": "shared/testing/page-objects/PlaygroundPage/web.ts",
|
|
423
|
+
"hash": "13289179655405426712"
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"file": "shared/testing/project.json",
|
|
427
|
+
"hash": "16067677866830747787"
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
"file": "shared/testing/support/actions/fillCredentials/mobile.action.ts",
|
|
431
|
+
"hash": "12211081252127526235"
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
"file": "shared/testing/support/actions/fillCredentials/web.action.ts",
|
|
435
|
+
"hash": "9993357721307207213"
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"file": "shared/testing/support/steps/togglePlaygroundStates/mobile.step.ts",
|
|
439
|
+
"hash": "2440504136325471241"
|
|
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": "3684774997705487691"
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
"file": "shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts",
|
|
451
|
+
"hash": "7780197038828149329"
|
|
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": "7710645189151727546"
|
|
460
|
+
}
|
|
461
|
+
]
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
570877138422518711
|
|
Binary file
|