Skip to content

Commit 1cb6f7a

Browse files
remove experimentalStudio flag
1 parent 8f6cda6 commit 1cb6f7a

File tree

3 files changed

+9
-19
lines changed

3 files changed

+9
-19
lines changed

cypress.config.ts

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

docs/app/guides/cypress-studio.mdx

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,10 @@ Instead of manually typing every `.get()`, `.click()`, or `.type()` command, you
3737

3838
:::success
3939

40-
1. **Enable Studio:**
41-
Add to your `cypress.config.js` (Cypress Studio is currently experimental):
42-
43-
```js
44-
{
45-
e2e: {
46-
experimentalStudio: true
47-
}
48-
}
49-
```
50-
51-
2. **Run a Spec:**
52-
Open Cypress, run a spec file, and click New Test or Edit in Studio.
40+
1. **Run a Spec:**
41+
Open Cypress and run a spec file
42+
2. **Open Studio:**
43+
Click Edit in Studio on a test in the Command Log or click Studio Beta in the Studio panel.
5344

5445
3. **Interact & Save:**
5546
Click, type, and right-click to add assertions. Click Save to save your test.

docs/app/references/experiments.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -263,11 +263,10 @@ creating `e2e` and `component` objects inside your Cypress configuration.
263263
These experiments are available to be specified inside the `e2e` configuration
264264
object:
265265

266-
| Option | Default | Description |
267-
| -------------------------------- | ------- | --------------------------------------------------------------------------------------------------------- |
268-
| `experimentalStudio` | `false` | Generate and save commands directly to your test suite by interacting with your app as an end user would. |
269-
| `experimentalRunAllSpecs` | `false` | Enables the "Run All Specs" UI feature, allowing the execution of multiple specs sequentially. |
270-
| `experimentalOriginDependencies` | `false` | Enables support for `Cypress.require` within `cy.origin`. |
266+
| Option | Default | Description |
267+
| -------------------------------- | ------- | ---------------------------------------------------------------------------------------------- |
268+
| `experimentalRunAllSpecs` | `false` | Enables the "Run All Specs" UI feature, allowing the execution of multiple specs sequentially. |
269+
| `experimentalOriginDependencies` | `false` | Enables support for `Cypress.require` within `cy.origin`. |
271270

272271
### Component Testing
273272

@@ -282,6 +281,7 @@ configuration object:
282281

283282
| Version | Changes |
284283
| -------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- |
284+
| [15.4.0](/app/references/changelog) | Removed `experimentalStudio`. Cypress Studio is available as default behavior. |
285285
| [14.0.0](/app/references/changelog#14-0-0) | Removed `experimentalJustInTimeCompile` and `experimentalSkipDomainInjection` and made it default behavior. |
286286
| [13.14.0](/app/references/changelog#13-14-0) | Added support for configuring the Experimental Just-In-Time (JIT) Compiling for component testing via `experimentalJustInTimeCompile`. |
287287
| [13.4.0](/app/references/changelog#13-4-0) | Added support for configuring the Experimental Flake Detection strategy via `retries.experimentalStrategy` and `retries.experimentalOptions`. |

0 commit comments

Comments
 (0)