Skip to content

Commit b9b8c20

Browse files
authored
Merge branch 'main' into release/15.1.0
2 parents 7db7978 + a9f2740 commit b9b8c20

File tree

6 files changed

+407
-145
lines changed

6 files changed

+407
-145
lines changed

cypress.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export default defineConfig({
1313
openMode: 0,
1414
},
1515
e2e: {
16+
experimentalStudio: true,
1617
supportFile: false,
1718
baseUrl: "http://localhost:3000",
1819
setupNodeEvents(on, config) {

docs/app/guides/cypress-studio.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ Want more control? Use the [`Cypress.ElementSelector`](/api/cypress-api/element-
155155
## Limitations
156156

157157
- Works only in E2E tests (Component Testing not yet supported)
158+
- Cucumber tests are not yet supported
158159
- Cannot record across [multiple
159160
origins](/app/guides/cross-origin-testing).
160161
- Studio cannot load when running in open mode with `@cypress/grep`. You will see an error in this case. Remove any `--grep` flags from your command during `cypress open` to use Studio.

docs/app/references/changelog.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ _Released 1/28/2025_
389389

390390
- Fixed an issue where Cypress would incorrectly navigate to `about:blank` when test isolation was disabled and the last test would fail and then retry. Fixes [#28527](https://github.com/cypress-io/cypress/issues/28527).
391391
- Fixed a regression introduced in [14.0.0](#14-0-0) where an element would not return the correct visibility if its offset parent was within the clipping element. Fixes [#30922](https://github.com/cypress-io/cypress/issues/30922).
392-
- Fixed a regression introduced in [14.0.0](#14-0-0) where the incorrect visiblity would be returned when either `overflow-x` or `overflow-y` was visible but the other one was clipping. Fixed in [#30934](https://github.com/cypress-io/cypress/pull/30934).
392+
- Fixed a regression introduced in [14.0.0](#14-0-0) where the incorrect visibility would be returned when either `overflow-x` or `overflow-y` was visible but the other one was clipping. Fixed in [#30934](https://github.com/cypress-io/cypress/pull/30934).
393393
- Fixed an issue where an `option` element would not return the correct visibility if its parent element has a clipping overflow. Fixed in [#30934](https://github.com/cypress-io/cypress/pull/30934).
394394
- Fixed an issue where non-HTMLElement(s) may fail during assertions. Fixes [#30944](https://github.com/cypress-io/cypress/issues/30944).
395395

@@ -1425,7 +1425,7 @@ _Released 06/07/2023_
14251425

14261426
- Upgraded [`find-process`](https://www.npmjs.com/package/find-process) from
14271427
`1.4.1` to `1.4.7` to address this
1428-
[Synk](https://security.snyk.io/vuln/SNYK-JS-FINDPROCESS-1090284) security
1428+
[Snyk](https://security.snyk.io/vuln/SNYK-JS-FINDPROCESS-1090284) security
14291429
vulnerability. Addressed in
14301430
[#26906](https://github.com/cypress-io/cypress/pull/26906).
14311431
- Upgraded [`firefox-profile`](https://www.npmjs.com/package/firefox-profile)
@@ -2037,7 +2037,7 @@ _Released 1/03/2023_
20372037
[#25036](https://github.com/cypress-io/cypress/pull/25036).
20382038
- Fixed a regression in [10.11.0](#10-11-0) where the mocha test results no
20392039
longer sent the pending boolean to reporters. This caused the
2040-
[`mochaawesome`](https://www.npmjs.com/package/mochawesome) reporter to
2040+
[`mochawesome`](https://www.npmjs.com/package/mochawesome) reporter to
20412041
incorrectly report pending tests as pending and skipped. Fixes
20422042
[#24477](https://github.com/cypress-io/cypress/issues/24477).
20432043
- Fix for regression introduced in [12.1.0](#12-1-0), where

docs/ui-coverage/configuration/allowedinteractioncommands.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ Note that because `allowedInteractionCommands` replaces the allowed interactions
149149
```json
150150
{
151151
"uiCoverage": {
152-
"additionalInteractionCommands": [
152+
"allowedInteractionCommands": [
153153
{
154154
"selector": "button[data-no-explicit-interaction='true']",
155155
"commands": ["assert"]

0 commit comments

Comments
 (0)