Skip to content

Commit a0fcdf8

Browse files
authored
Remove nodeVersion documentation (#5318)
* Remove reference to 'nodeVersion' * added history, removed changes to legacy
1 parent dcea3ed commit a0fcdf8

File tree

1 file changed

+2
-23
lines changed

1 file changed

+2
-23
lines changed

docs/guides/references/configuration.mdx

+2-23
Original file line numberDiff line numberDiff line change
@@ -162,28 +162,6 @@ For more options regarding screenshots, view the
162162
For more information, see the docs on
163163
[actionability](/guides/core-concepts/interacting-with-elements#Actionability).
164164

165-
### Node version
166-
167-
:::caution
168-
169-
<Icon name="exclamation-triangle" /> The <code>nodeVersion</code> configuration option is deprecated and will be removed in a
170-
future version of Cypress. Please remove this option from your configuration
171-
file.
172-
173-
:::
174-
175-
| Option | Default | Description |
176-
| ------------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
177-
| `nodeVersion` | `system` | Can be `system` or `bundled`. If set to `system`, Cypress will try to use the same Node version that launched Cypress to execute your [plugins](/guides/tooling/plugins-guide). If that can't be determined, Cypress will use the Node version bundled with Cypress. If set to `bundled` Cypress will use the version bundled with Cypress. |
178-
179-
The Node version is used in Cypress to:
180-
181-
- Build files in the
182-
[supportFile](#Folders-Files).
183-
- Execute code in the config file.
184-
185-
<DocsImage src="/img/guides/configuration/test-runner-settings-nodejs-version.jpg" alt="Node version in Settings in Cypress" />
186-
187165
### Experiments
188166

189167
Configuration might include experimental options currently being tested. See
@@ -235,7 +213,7 @@ object:
235213
| `supportFile` | `cypress/support/component.js` | Path to file to load before spec files load. This file is compiled and bundled. (Pass `false` to disable) |
236214
| `specPattern` | <code>\*\*/*.cy.{js,jsx,ts,tsx}</code> | A glob pattern String or Array of glob pattern Strings of the spec files to load. <br /><br />Note that any files found matching the `e2e.specPattern` value will be automatically **excluded.** |
237215
| `excludeSpecPattern` | `['/snapshots/*', '/image_snapshots/*']` | A String or Array of glob patterns used to ignore spec files that would otherwise be shown in your list of specs. [Please read the notes on using this.](#excludeSpecPattern) |
238-
`experimentalSingleTabRunMode` | `false` | Run all specs in a single tab, instead of creating a new tab per spec. This can improve run mode performance, but can impact spec isolation and reliability on large test suites. This experiment currently only applies to Component Testing.
216+
`experimentalSingleTabRunMode` | `false` | Run all specs in a single tab, instead of creating a new tab per spec. This can improve run mode performance, but can impact spec isolation and reliability on large test suites. This experiment currently only applies to Component Testing.
239217
| `slowTestThreshold` | `250` | Time, in milliseconds, to consider a test "slow" during `cypress run`. A slow test will display in orange text in the default reporter. |
240218

241219

@@ -740,6 +718,7 @@ DEBUG=cypress:cli,cypress:server:specs
740718

741719
| Version | Changes |
742720
| --------------------------------------------- | ------------------------------------------------------------------------------------- |
721+
| [13.0.0](/guides/references/changelog#13-0-0) | Removed `nodeVersion` option. |
743722
| [13.0.0](/guides/references/changelog#13-0-0) | Removed `videoUploadOnPasses` option. |
744723
| [11.0.0](/guides/references/changelog#11-0-0) | Removed `e2e.experimentalSessionAndOrigin` option. |
745724
| [10.4.0](/guides/references/changelog#10-4-0) | Added `e2e.testIsolation` option. |

0 commit comments

Comments
 (0)