@testspectra/cli 1.1.8-rc.8 → 1.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (88) hide show
  1. package/README.md +11 -8
  2. package/dist/.tsbuildinfo +1 -1
  3. package/dist/commands/__tests__/doctor-filter.test.d.ts +1 -0
  4. package/dist/commands/__tests__/doctor-filter.test.js +37 -0
  5. package/dist/commands/__tests__/test-error-streaming.test.d.ts +1 -0
  6. package/dist/commands/__tests__/test-error-streaming.test.js +85 -0
  7. package/dist/commands/__tests__/test-scaffolding.test.d.ts +1 -0
  8. package/dist/commands/__tests__/test-scaffolding.test.js +32 -0
  9. package/dist/commands/__tests__/upgrade.test.d.ts +1 -0
  10. package/dist/commands/__tests__/upgrade.test.js +95 -0
  11. package/dist/commands/add.js +5 -4
  12. package/dist/commands/devices.js +1 -0
  13. package/dist/commands/docs.d.ts +4 -0
  14. package/dist/commands/docs.js +17 -0
  15. package/dist/commands/doctor.d.ts +9 -1
  16. package/dist/commands/doctor.js +17 -3
  17. package/dist/commands/init.js +7 -160
  18. package/dist/commands/install.js +5 -0
  19. package/dist/commands/license.js +1 -0
  20. package/dist/commands/run.d.ts +2 -0
  21. package/dist/commands/run.js +22 -0
  22. package/dist/commands/test.d.ts +13 -0
  23. package/dist/commands/test.js +115 -21
  24. package/dist/commands/upgrade.d.ts +12 -0
  25. package/dist/commands/upgrade.js +197 -0
  26. package/dist/config/schema.d.ts +53 -0
  27. package/dist/config/schema.js +2 -0
  28. package/dist/generator/__tests__/tsconfig-isolation.test.js +2 -1
  29. package/dist/generator/__tests__/type-generator.test.js +38 -0
  30. package/dist/generator/architecture-doc-generator.d.ts +14 -0
  31. package/dist/generator/architecture-doc-generator.js +80 -0
  32. package/dist/generator/index.d.ts +1 -0
  33. package/dist/generator/index.js +1 -0
  34. package/dist/generator/tsconfig-generator.js +1 -1
  35. package/dist/generator/type-generator.d.ts +5 -2
  36. package/dist/generator/type-generator.js +14 -17
  37. package/dist/index.js +59 -16
  38. package/dist/linter/__tests__/shared-lib-boundary.test.js +15 -15
  39. package/dist/linter/discovery.d.ts +3 -3
  40. package/dist/linter/discovery.js +7 -7
  41. package/dist/linter/schemas/spec.schema.d.ts +6 -6
  42. package/dist/runner/bridge.d.ts +1 -1
  43. package/dist/runner/bridge.js +67 -16
  44. package/dist/runner/reporter.d.ts +1 -0
  45. package/dist/runner/reporter.js +12 -6
  46. package/dist/utils/__tests__/dev-server-manager.test.d.ts +1 -0
  47. package/dist/utils/__tests__/dev-server-manager.test.js +72 -0
  48. package/dist/utils/background-update-check.d.ts +1 -0
  49. package/dist/utils/background-update-check.js +43 -0
  50. package/dist/utils/dependency-updates.d.ts +15 -0
  51. package/dist/utils/dependency-updates.js +107 -0
  52. package/dist/utils/dev-server-manager.d.ts +40 -0
  53. package/dist/utils/dev-server-manager.js +257 -0
  54. package/dist/utils/update-notifier.d.ts +2 -0
  55. package/dist/utils/update-notifier.js +67 -0
  56. package/package.json +10 -9
  57. package/templates/default/package.json +2 -2
  58. package/templates/docs/ARCHITECTURE.default.md +26 -0
  59. package/templates/docs/ARCHITECTURE.nx.md +147 -0
  60. package/templates/nx/.nx/workspace-data/70094CFD-E89B-57A1-9619-2FC5F4963C54.db +0 -0
  61. package/templates/nx/.nx/workspace-data/70094CFD-E89B-57A1-9619-2FC5F4963C54.db-shm +0 -0
  62. package/templates/nx/.nx/workspace-data/70094CFD-E89B-57A1-9619-2FC5F4963C54.db-wal +0 -0
  63. package/templates/nx/.nx/workspace-data/d/daemon.log +947 -0
  64. package/templates/nx/.nx/workspace-data/d/server-process.json +1 -1
  65. package/templates/nx/.nx/workspace-data/file-map.json +172 -186
  66. package/templates/nx/.nx/workspace-data/lockfile.hash +1 -1
  67. package/templates/nx/.nx/workspace-data/nx_files.nxt +0 -0
  68. package/templates/nx/.nx/workspace-data/parsed-lock-file.json +81 -130
  69. package/templates/nx/.nx/workspace-data/project-graph.json +90 -144
  70. package/templates/nx/.nx/workspace-data/source-maps.json +336 -0
  71. package/templates/nx/package.json +3 -3
  72. package/templates/nx/packages/matchers/e2e/project.json +2 -2
  73. package/templates/nx/packages/playground/e2e/project.json +2 -2
  74. package/templates/nx/pnpm-lock.yaml +191 -214
  75. package/templates/nx/shared/testing/project.json +1 -2
  76. package/templates/nx/spectra.config.ts +13 -0
  77. package/templates/react-component/package.json +3 -3
  78. package/templates/react-component/page-objects/BadgeComponent/web.ts +4 -4
  79. package/templates/react-component/page-objects/ButtonComponent/web.ts +3 -3
  80. package/templates/react-component/page-objects/InputComponent/web.ts +1 -1
  81. package/templates/react-component/specs/ButtonComponent/TC-0001-button-rendering-and-click/web.test.tsx +0 -3
  82. package/templates/react-component/specs/ButtonComponent/TC-0004-disabled-button-not-clickable/web.test.tsx +0 -9
  83. package/templates/react-component/specs/ButtonComponent/TC-0005-button-renders-icon/web.test.tsx +1 -1
  84. package/templates/react-component/specs/InputComponent/TC-0003-input-typing-and-clear/web.test.tsx +4 -8
  85. package/templates/react-component/spectra.config.ts +0 -10
  86. package/templates/react-component/src/components/Badge/Badge.tsx +3 -3
  87. package/templates/react-component/src/components/Button/Button.tsx +5 -3
  88. package/templates/react-component/src/components/Input/Input.tsx +2 -3
@@ -10,8 +10,8 @@
10
10
  "projectType": "application",
11
11
  "sourceRoot": "packages/playground/e2e",
12
12
  "tags": [
13
- "scope:playground",
14
- "type:e2e"
13
+ "testspectra:e2e",
14
+ "testspectra:scope:playground"
15
15
  ],
16
16
  "targets": {
17
17
  "e2e": {
@@ -69,8 +69,8 @@
69
69
  "projectType": "application",
70
70
  "sourceRoot": "packages/matchers/e2e",
71
71
  "tags": [
72
- "scope:matchers",
73
- "type:e2e"
72
+ "testspectra:e2e",
73
+ "testspectra:scope:matchers"
74
74
  ],
75
75
  "targets": {
76
76
  "e2e": {
@@ -128,8 +128,7 @@
128
128
  "projectType": "library",
129
129
  "sourceRoot": "shared/testing",
130
130
  "tags": [
131
- "scope:shared",
132
- "type:shared"
131
+ "testspectra:shared"
133
132
  ],
134
133
  "targets": {
135
134
  "type-check": {
@@ -863,103 +862,94 @@
863
862
  "hash": "sha512-8L9xFeTYKhm49xfIypoe2W5wV1m/3Z58kT+7kR9A8OyFxcPduI4VmxaUMQyKYrRjUoLLSXv6EKKID5Tvj9cUVw=="
864
863
  }
865
864
  },
866
- "npm:@nrwl/tao": {
867
- "type": "npm",
868
- "name": "npm:@nrwl/tao",
869
- "data": {
870
- "version": "19.8.4",
871
- "packageName": "@nrwl/tao",
872
- "hash": "sha512-03/+QZ4/6HmKbEmvzCutLI1XIclBspNYtiVHmGPRWuwhnZViqYfnyl8J7RWVdFEoKKA5fhJqpg7e28aGuoMBvQ=="
873
- }
874
- },
875
865
  "npm:@nx/nx-darwin-arm64": {
876
866
  "type": "npm",
877
867
  "name": "npm:@nx/nx-darwin-arm64",
878
868
  "data": {
879
- "version": "19.8.4",
869
+ "version": "20.8.4",
880
870
  "packageName": "@nx/nx-darwin-arm64",
881
- "hash": "sha512-mbSGt63hYcVCSQ54kpHl0lFqr5CsbkGJ4L3liWE30Da7vXZJwUBr9f+b9DnQ64IZzlu6vAhNcaiYQXa9lAk0yQ=="
871
+ "hash": "sha512-8Y7+4wj1qoZsuDRpnuiHzSIsMt3VqtJ0su8dgd/MyGccvvi4pndan2R5yTiVw/wmbMxtBmZ6PO6Z8dgSIrMVog=="
882
872
  }
883
873
  },
884
874
  "npm:@nx/nx-darwin-x64": {
885
875
  "type": "npm",
886
876
  "name": "npm:@nx/nx-darwin-x64",
887
877
  "data": {
888
- "version": "19.8.4",
878
+ "version": "20.8.4",
889
879
  "packageName": "@nx/nx-darwin-x64",
890
- "hash": "sha512-lTcXUCXNvqHdLmrNCOyDF+u6pDx209Ew7nSR47sQPvkycIHYi0gvgk0yndFn1Swah0lP4OxWg7rzAfmOlZd6ew=="
880
+ "hash": "sha512-2lfuxRc56QWnAysMhcD03tpCPiRzV1+foUq0MhV2sSBIybXmgV4wHLkPZNhlBCl4FNXrWiZiN1OJ2X9AGiOdug=="
891
881
  }
892
882
  },
893
883
  "npm:@nx/nx-freebsd-x64": {
894
884
  "type": "npm",
895
885
  "name": "npm:@nx/nx-freebsd-x64",
896
886
  "data": {
897
- "version": "19.8.4",
887
+ "version": "20.8.4",
898
888
  "packageName": "@nx/nx-freebsd-x64",
899
- "hash": "sha512-4BUplOxPZeUwlUNfzHHMmebNVgDFW/jNX6TWRS+jINwOHnpWLkLFAXu27G80/S3OaniVCzEQklXO9b+1UsdgXw=="
889
+ "hash": "sha512-99vnUXZy+OUBHU+8Yhabre2qafepKg9GKkQkhmXvJGqOmuIsepK7wirUFo2PiVM8YhS6UV2rv6hKAZcQ7skYyg=="
900
890
  }
901
891
  },
902
892
  "npm:@nx/nx-linux-arm-gnueabihf": {
903
893
  "type": "npm",
904
894
  "name": "npm:@nx/nx-linux-arm-gnueabihf",
905
895
  "data": {
906
- "version": "19.8.4",
896
+ "version": "20.8.4",
907
897
  "packageName": "@nx/nx-linux-arm-gnueabihf",
908
- "hash": "sha512-Wahul8oz9huEm/Jv3wud5IGWdZxkGG4tdJm9i5TV5wxfUMAWbKU9v2nzZZins452UYESWvwvDkiuBPZqSto3qw=="
898
+ "hash": "sha512-dht73zpnpzEUEzMHFQs4mfiwZH3WcJgQNWkD5p7WkeJewHq2Yyd0eG5Jg3kB7wnFtwPUV1eNJRM5rephgylkLA=="
909
899
  }
910
900
  },
911
901
  "npm:@nx/nx-linux-arm64-gnu": {
912
902
  "type": "npm",
913
903
  "name": "npm:@nx/nx-linux-arm64-gnu",
914
904
  "data": {
915
- "version": "19.8.4",
905
+ "version": "20.8.4",
916
906
  "packageName": "@nx/nx-linux-arm64-gnu",
917
- "hash": "sha512-L0RVCZkNAtZDplLT7uJV7M9cXxq2Fxw+8ex3eb9XSp7eyLeFO21T0R6vTouJ42E/PEvGApCAcyGqtnyPNMZFfw=="
907
+ "hash": "sha512-syXxbJZ0yPaqzVmB28QJgUtaarSiW/PQmv/5Z2Ps8rCi7kYylISPVNjP1NNiIOcGDRWbHqoBfM0bEGPfSp0rBQ=="
918
908
  }
919
909
  },
920
910
  "npm:@nx/nx-linux-arm64-musl": {
921
911
  "type": "npm",
922
912
  "name": "npm:@nx/nx-linux-arm64-musl",
923
913
  "data": {
924
- "version": "19.8.4",
914
+ "version": "20.8.4",
925
915
  "packageName": "@nx/nx-linux-arm64-musl",
926
- "hash": "sha512-0q8r8I8WCsY3xowDI2j109SCUSkFns/BJ40aCfRh9hhrtaIIc5qXUw2YFTjxUZNcRJXx9j9+hTe9jBkUSIGvCw=="
916
+ "hash": "sha512-AlZZFolS/S0FahRKG7rJ0Z9CgmIkyzHgGaoy3qNEMDEjFhR3jt2ZZSLp90W7zjgrxojOo90ajNMrg2UmtcQRDA=="
927
917
  }
928
918
  },
929
919
  "npm:@nx/nx-linux-x64-gnu": {
930
920
  "type": "npm",
931
921
  "name": "npm:@nx/nx-linux-x64-gnu",
932
922
  "data": {
933
- "version": "19.8.4",
923
+ "version": "20.8.4",
934
924
  "packageName": "@nx/nx-linux-x64-gnu",
935
- "hash": "sha512-XcRBNe0ws7KB0PMcUlpQqzzjjxMP8VdqirBz7CfB2XQ8xKmP3370p0cDvqs/4oKDHK4PCkmvVFX60tzakutylA=="
925
+ "hash": "sha512-MSu+xVNdR95tuuO+eL/a/ZeMlhfrZ627On5xaCZXnJ+lFxNg/S4nlKZQk0Eq5hYALCd/GKgFGasRdlRdOtvGPg=="
936
926
  }
937
927
  },
938
928
  "npm:@nx/nx-linux-x64-musl": {
939
929
  "type": "npm",
940
930
  "name": "npm:@nx/nx-linux-x64-musl",
941
931
  "data": {
942
- "version": "19.8.4",
932
+ "version": "20.8.4",
943
933
  "packageName": "@nx/nx-linux-x64-musl",
944
- "hash": "sha512-JB4tAuZBCF0yqSnKF3pHXa0b7LA3ebi3Bw08QmMr//ON4aU+eXURGBuj9XvULD2prY+gpBrvf+MsG1XJAHL6Zg=="
934
+ "hash": "sha512-KxpQpyLCgIIHWZ4iRSUN9ohCwn1ZSDASbuFCdG3mohryzCy8WrPkuPcb+68J3wuQhmA5w//Xpp/dL0hHoit9zQ=="
945
935
  }
946
936
  },
947
937
  "npm:@nx/nx-win32-arm64-msvc": {
948
938
  "type": "npm",
949
939
  "name": "npm:@nx/nx-win32-arm64-msvc",
950
940
  "data": {
951
- "version": "19.8.4",
941
+ "version": "20.8.4",
952
942
  "packageName": "@nx/nx-win32-arm64-msvc",
953
- "hash": "sha512-WvQag/pN9ofRWRDvOZxj3jvJoTetlvV1uyirnDrhupRgi+Fj67OlGGt2zVUHaXFGEa1MfCEG6Vhk6152m4KyaQ=="
943
+ "hash": "sha512-ffLBrxM9ibk+eWSY995kiFFRTSRb9HkD5T1s/uZyxV6jfxYPaZDBAWAETDneyBXps7WtaOMu+kVZlXQ3X+TfIA=="
954
944
  }
955
945
  },
956
946
  "npm:@nx/nx-win32-x64-msvc": {
957
947
  "type": "npm",
958
948
  "name": "npm:@nx/nx-win32-x64-msvc",
959
949
  "data": {
960
- "version": "19.8.4",
950
+ "version": "20.8.4",
961
951
  "packageName": "@nx/nx-win32-x64-msvc",
962
- "hash": "sha512-//JntLrN3L7WL/WgP3D0FE34caYTPcG/GIMBguC9w7YDyTlEikLgLbobjdCPz+2f9OWGvIZbJgGmtHNjnETM/g=="
952
+ "hash": "sha512-JxuuZc4h8EBqoYAiRHwskimpTJx70yn4lhIRFBoW5ICkxXW1Rw0yip/1UVsWRHXg/x9BxmH7VVazdfaQWmGu6A=="
963
953
  }
964
954
  },
965
955
  "npm:@pkgjs/parseargs": {
@@ -1506,9 +1496,9 @@
1506
1496
  "type": "npm",
1507
1497
  "name": "npm:@yarnpkg/parsers",
1508
1498
  "data": {
1509
- "version": "3.0.0-rc.46",
1499
+ "version": "3.0.2",
1510
1500
  "packageName": "@yarnpkg/parsers",
1511
- "hash": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q=="
1501
+ "hash": "sha512-/HcYgtUSiJiot/XWGLOlGxPYUG65+/31V8oqk17vZLW1xlCoR4PampyePljOxY2n8/3jz9+tIFzICsyGujJZoA=="
1512
1502
  }
1513
1503
  },
1514
1504
  "npm:@zip.js/zip.js": {
@@ -2798,15 +2788,6 @@
2798
2788
  "hash": "sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA=="
2799
2789
  }
2800
2790
  },
2801
- "npm:duplexer": {
2802
- "type": "npm",
2803
- "name": "npm:duplexer",
2804
- "data": {
2805
- "version": "0.1.2",
2806
- "packageName": "duplexer",
2807
- "hash": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg=="
2808
- }
2809
- },
2810
2791
  "npm:eastasianwidth": {
2811
2792
  "type": "npm",
2812
2793
  "name": "npm:eastasianwidth",
@@ -5115,9 +5096,9 @@
5115
5096
  "type": "npm",
5116
5097
  "name": "npm:nx",
5117
5098
  "data": {
5118
- "version": "19.8.4",
5099
+ "version": "20.8.4",
5119
5100
  "packageName": "nx",
5120
- "hash": "sha512-fc833c3UKo6kuoG4z0kSKet17yWym3VzcQ+yPWYspxxxd8GFVVk42+9wieyVQDi9YqtKZQ6PdQfSEPm59/M7SA=="
5101
+ "hash": "sha512-/++x0OM3/UTmDR+wmPeV13tSxeTr+QGzj3flgtH9DiOPmQnn2CjHWAMZiOhcSh/hHoE/V3ySL4757InQUsVtjQ=="
5121
5102
  }
5122
5103
  },
5123
5104
  "npm:object-inspect": {
@@ -5813,6 +5794,15 @@
5813
5794
  "hash": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw=="
5814
5795
  }
5815
5796
  },
5797
+ "npm:resolve.exports": {
5798
+ "type": "npm",
5799
+ "name": "npm:resolve.exports",
5800
+ "data": {
5801
+ "version": "2.0.3",
5802
+ "packageName": "resolve.exports",
5803
+ "hash": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A=="
5804
+ }
5805
+ },
5816
5806
  "npm:responselike@1.0.2": {
5817
5807
  "type": "npm",
5818
5808
  "name": "npm:responselike@1.0.2",
@@ -6344,15 +6334,6 @@
6344
6334
  "hash": "sha512-rDG3Ah4TV0k1hWvLSzkZtMmLN9+eS+h3knq4MP6A42Y3Yh5qGNnOUs1jJkoSr8FG5dsL28c7KgkIBzSEykqtuw=="
6345
6335
  }
6346
6336
  },
6347
- "npm:strong-log-transformer": {
6348
- "type": "npm",
6349
- "name": "npm:strong-log-transformer",
6350
- "data": {
6351
- "version": "2.1.0",
6352
- "packageName": "strong-log-transformer",
6353
- "hash": "sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA=="
6354
- }
6355
- },
6356
6337
  "npm:supports-color@7.2.0": {
6357
6338
  "type": "npm",
6358
6339
  "name": "npm:supports-color@7.2.0",
@@ -6821,9 +6802,9 @@
6821
6802
  "hash": "sha512-SyrSVpygEdPzvgpapVZRQCy8XIOecadp56bPQewpfSfo9ypB6wdOUkx13NBu2ANDlUAtJX7KaLJpTtywVHNlVw=="
6822
6803
  }
6823
6804
  },
6824
- "npm:webdriverio": {
6805
+ "npm:webdriverio@9.31.6": {
6825
6806
  "type": "npm",
6826
- "name": "npm:webdriverio",
6807
+ "name": "npm:webdriverio@9.31.6",
6827
6808
  "data": {
6828
6809
  "version": "9.31.6",
6829
6810
  "packageName": "webdriverio",
@@ -7028,6 +7009,15 @@
7028
7009
  "hash": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g=="
7029
7010
  }
7030
7011
  },
7012
+ "npm:yaml": {
7013
+ "type": "npm",
7014
+ "name": "npm:yaml",
7015
+ "data": {
7016
+ "version": "2.9.1",
7017
+ "packageName": "yaml",
7018
+ "hash": "sha512-3NxN8+78OdzbT7C/WjGsyfPAtJaN3FNDsWxv7Y7mcDsT/oOmgW8BpyQQFFBnvZE3j9Y2Sdz1ULFLezL7Eb2yFw=="
7019
+ }
7020
+ },
7031
7021
  "npm:yargs-parser@20.2.9": {
7032
7022
  "type": "npm",
7033
7023
  "name": "npm:yargs-parser@20.2.9",
@@ -7974,18 +7964,6 @@
7974
7964
  "type": "static"
7975
7965
  }
7976
7966
  ],
7977
- "npm:@nrwl/tao": [
7978
- {
7979
- "source": "npm:@nrwl/tao",
7980
- "target": "npm:nx",
7981
- "type": "static"
7982
- },
7983
- {
7984
- "source": "npm:@nrwl/tao",
7985
- "target": "npm:tslib",
7986
- "type": "static"
7987
- }
7988
- ],
7989
7967
  "npm:@promptbook/utils": [
7990
7968
  {
7991
7969
  "source": "npm:@promptbook/utils",
@@ -8314,7 +8292,7 @@
8314
8292
  },
8315
8293
  {
8316
8294
  "source": "npm:@wdio/cli",
8317
- "target": "npm:webdriverio",
8295
+ "target": "npm:webdriverio@9.31.6",
8318
8296
  "type": "static"
8319
8297
  },
8320
8298
  {
@@ -8489,7 +8467,7 @@
8489
8467
  },
8490
8468
  {
8491
8469
  "source": "npm:@wdio/globals",
8492
- "target": "npm:webdriverio",
8470
+ "target": "npm:webdriverio@9.31.6",
8493
8471
  "type": "static"
8494
8472
  }
8495
8473
  ],
@@ -8720,7 +8698,7 @@
8720
8698
  },
8721
8699
  {
8722
8700
  "source": "npm:@wdio/runner",
8723
- "target": "npm:webdriverio",
8701
+ "target": "npm:webdriverio@9.31.6",
8724
8702
  "type": "static"
8725
8703
  }
8726
8704
  ],
@@ -9868,11 +9846,6 @@
9868
9846
  "source": "npm:debug@2.6.9",
9869
9847
  "target": "npm:ms@2.0.0",
9870
9848
  "type": "static"
9871
- },
9872
- {
9873
- "source": "npm:debug@2.6.9",
9874
- "target": "npm:supports-color@8.1.1",
9875
- "type": "static"
9876
9849
  }
9877
9850
  ],
9878
9851
  "npm:debug@4.3.4": [
@@ -9880,11 +9853,6 @@
9880
9853
  "source": "npm:debug@4.3.4",
9881
9854
  "target": "npm:ms@2.1.2",
9882
9855
  "type": "static"
9883
- },
9884
- {
9885
- "source": "npm:debug@4.3.4",
9886
- "target": "npm:supports-color@8.1.1",
9887
- "type": "static"
9888
9856
  }
9889
9857
  ],
9890
9858
  "npm:debug@4.4.3": [
@@ -10456,7 +10424,7 @@
10456
10424
  },
10457
10425
  {
10458
10426
  "source": "npm:expect-webdriverio",
10459
- "target": "npm:webdriverio",
10427
+ "target": "npm:webdriverio@9.31.6",
10460
10428
  "type": "static"
10461
10429
  }
10462
10430
  ],
@@ -10648,13 +10616,6 @@
10648
10616
  "type": "static"
10649
10617
  }
10650
10618
  ],
10651
- "npm:follow-redirects": [
10652
- {
10653
- "source": "npm:follow-redirects",
10654
- "target": "npm:debug@4.4.3",
10655
- "type": "static"
10656
- }
10657
- ],
10658
10619
  "npm:foreground-child": [
10659
10620
  {
10660
10621
  "source": "npm:foreground-child",
@@ -12179,11 +12140,6 @@
12179
12140
  "target": "npm:@napi-rs/wasm-runtime",
12180
12141
  "type": "static"
12181
12142
  },
12182
- {
12183
- "source": "npm:nx",
12184
- "target": "npm:@nrwl/tao",
12185
- "type": "static"
12186
- },
12187
12143
  {
12188
12144
  "source": "npm:nx",
12189
12145
  "target": "npm:@yarnpkg/lockfile",
@@ -12301,17 +12257,17 @@
12301
12257
  },
12302
12258
  {
12303
12259
  "source": "npm:nx",
12304
- "target": "npm:semver@7.8.5",
12260
+ "target": "npm:resolve.exports",
12305
12261
  "type": "static"
12306
12262
  },
12307
12263
  {
12308
12264
  "source": "npm:nx",
12309
- "target": "npm:string-width@4.2.3",
12265
+ "target": "npm:semver@7.8.5",
12310
12266
  "type": "static"
12311
12267
  },
12312
12268
  {
12313
12269
  "source": "npm:nx",
12314
- "target": "npm:strong-log-transformer",
12270
+ "target": "npm:string-width@4.2.3",
12315
12271
  "type": "static"
12316
12272
  },
12317
12273
  {
@@ -12334,6 +12290,11 @@
12334
12290
  "target": "npm:tslib",
12335
12291
  "type": "static"
12336
12292
  },
12293
+ {
12294
+ "source": "npm:nx",
12295
+ "target": "npm:yaml",
12296
+ "type": "static"
12297
+ },
12337
12298
  {
12338
12299
  "source": "npm:nx",
12339
12300
  "target": "npm:yargs@17.7.3",
@@ -13326,23 +13287,6 @@
13326
13287
  "type": "static"
13327
13288
  }
13328
13289
  ],
13329
- "npm:strong-log-transformer": [
13330
- {
13331
- "source": "npm:strong-log-transformer",
13332
- "target": "npm:duplexer",
13333
- "type": "static"
13334
- },
13335
- {
13336
- "source": "npm:strong-log-transformer",
13337
- "target": "npm:minimist",
13338
- "type": "static"
13339
- },
13340
- {
13341
- "source": "npm:strong-log-transformer",
13342
- "target": "npm:through",
13343
- "type": "static"
13344
- }
13345
- ],
13346
13290
  "npm:supports-color@7.2.0": [
13347
13291
  {
13348
13292
  "source": "npm:supports-color@7.2.0",
@@ -13958,129 +13902,129 @@
13958
13902
  "type": "static"
13959
13903
  }
13960
13904
  ],
13961
- "npm:webdriverio": [
13905
+ "npm:webdriverio@9.31.6": [
13962
13906
  {
13963
- "source": "npm:webdriverio",
13907
+ "source": "npm:webdriverio@9.31.6",
13964
13908
  "target": "npm:@types/node",
13965
13909
  "type": "static"
13966
13910
  },
13967
13911
  {
13968
- "source": "npm:webdriverio",
13912
+ "source": "npm:webdriverio@9.31.6",
13969
13913
  "target": "npm:@types/sinonjs__fake-timers",
13970
13914
  "type": "static"
13971
13915
  },
13972
13916
  {
13973
- "source": "npm:webdriverio",
13917
+ "source": "npm:webdriverio@9.31.6",
13974
13918
  "target": "npm:@wdio/config@9.31.6",
13975
13919
  "type": "static"
13976
13920
  },
13977
13921
  {
13978
- "source": "npm:webdriverio",
13922
+ "source": "npm:webdriverio@9.31.6",
13979
13923
  "target": "npm:@wdio/logger@9.29.1",
13980
13924
  "type": "static"
13981
13925
  },
13982
13926
  {
13983
- "source": "npm:webdriverio",
13927
+ "source": "npm:webdriverio@9.31.6",
13984
13928
  "target": "npm:@wdio/protocols@9.31.5",
13985
13929
  "type": "static"
13986
13930
  },
13987
13931
  {
13988
- "source": "npm:webdriverio",
13932
+ "source": "npm:webdriverio@9.31.6",
13989
13933
  "target": "npm:@wdio/repl@9.16.2",
13990
13934
  "type": "static"
13991
13935
  },
13992
13936
  {
13993
- "source": "npm:webdriverio",
13937
+ "source": "npm:webdriverio@9.31.6",
13994
13938
  "target": "npm:@wdio/types@9.31.2",
13995
13939
  "type": "static"
13996
13940
  },
13997
13941
  {
13998
- "source": "npm:webdriverio",
13942
+ "source": "npm:webdriverio@9.31.6",
13999
13943
  "target": "npm:@wdio/utils@9.31.6",
14000
13944
  "type": "static"
14001
13945
  },
14002
13946
  {
14003
- "source": "npm:webdriverio",
13947
+ "source": "npm:webdriverio@9.31.6",
14004
13948
  "target": "npm:archiver",
14005
13949
  "type": "static"
14006
13950
  },
14007
13951
  {
14008
- "source": "npm:webdriverio",
13952
+ "source": "npm:webdriverio@9.31.6",
14009
13953
  "target": "npm:aria-query",
14010
13954
  "type": "static"
14011
13955
  },
14012
13956
  {
14013
- "source": "npm:webdriverio",
13957
+ "source": "npm:webdriverio@9.31.6",
14014
13958
  "target": "npm:cheerio",
14015
13959
  "type": "static"
14016
13960
  },
14017
13961
  {
14018
- "source": "npm:webdriverio",
13962
+ "source": "npm:webdriverio@9.31.6",
14019
13963
  "target": "npm:css-shorthand-properties",
14020
13964
  "type": "static"
14021
13965
  },
14022
13966
  {
14023
- "source": "npm:webdriverio",
13967
+ "source": "npm:webdriverio@9.31.6",
14024
13968
  "target": "npm:css-value",
14025
13969
  "type": "static"
14026
13970
  },
14027
13971
  {
14028
- "source": "npm:webdriverio",
13972
+ "source": "npm:webdriverio@9.31.6",
14029
13973
  "target": "npm:grapheme-splitter",
14030
13974
  "type": "static"
14031
13975
  },
14032
13976
  {
14033
- "source": "npm:webdriverio",
13977
+ "source": "npm:webdriverio@9.31.6",
14034
13978
  "target": "npm:htmlfy",
14035
13979
  "type": "static"
14036
13980
  },
14037
13981
  {
14038
- "source": "npm:webdriverio",
13982
+ "source": "npm:webdriverio@9.31.6",
14039
13983
  "target": "npm:is-plain-obj@4.1.0",
14040
13984
  "type": "static"
14041
13985
  },
14042
13986
  {
14043
- "source": "npm:webdriverio",
13987
+ "source": "npm:webdriverio@9.31.6",
14044
13988
  "target": "npm:jszip",
14045
13989
  "type": "static"
14046
13990
  },
14047
13991
  {
14048
- "source": "npm:webdriverio",
13992
+ "source": "npm:webdriverio@9.31.6",
14049
13993
  "target": "npm:lodash.clonedeep",
14050
13994
  "type": "static"
14051
13995
  },
14052
13996
  {
14053
- "source": "npm:webdriverio",
13997
+ "source": "npm:webdriverio@9.31.6",
14054
13998
  "target": "npm:lodash.zip",
14055
13999
  "type": "static"
14056
14000
  },
14057
14001
  {
14058
- "source": "npm:webdriverio",
14002
+ "source": "npm:webdriverio@9.31.6",
14059
14003
  "target": "npm:query-selector-shadow-dom",
14060
14004
  "type": "static"
14061
14005
  },
14062
14006
  {
14063
- "source": "npm:webdriverio",
14007
+ "source": "npm:webdriverio@9.31.6",
14064
14008
  "target": "npm:resq",
14065
14009
  "type": "static"
14066
14010
  },
14067
14011
  {
14068
- "source": "npm:webdriverio",
14012
+ "source": "npm:webdriverio@9.31.6",
14069
14013
  "target": "npm:rgb2hex",
14070
14014
  "type": "static"
14071
14015
  },
14072
14016
  {
14073
- "source": "npm:webdriverio",
14017
+ "source": "npm:webdriverio@9.31.6",
14074
14018
  "target": "npm:serialize-error@12.0.0",
14075
14019
  "type": "static"
14076
14020
  },
14077
14021
  {
14078
- "source": "npm:webdriverio",
14022
+ "source": "npm:webdriverio@9.31.6",
14079
14023
  "target": "npm:urlpattern-polyfill@10.1.0",
14080
14024
  "type": "static"
14081
14025
  },
14082
14026
  {
14083
- "source": "npm:webdriverio",
14027
+ "source": "npm:webdriverio@9.31.6",
14084
14028
  "target": "npm:webdriver@9.31.6",
14085
14029
  "type": "static"
14086
14030
  }
@@ -14385,5 +14329,7 @@
14385
14329
  }
14386
14330
  ]
14387
14331
  },
14388
- "version": "6.0"
14332
+ "version": "6.0",
14333
+ "errors": [],
14334
+ "computedAt": 1789712958816
14389
14335
  }