You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`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
-
<DocsImagesrc="/img/guides/configuration/test-runner-settings-nodejs-version.jpg"alt="Node version in Settings in Cypress" />
|`specPattern`|<code>\*\*/*.cy.{js,jsx,ts,tsx}</code>|AglobpatternStringorArrayofglobpatternStringsofthespecfilestoload.<br /><br />Note that any files found matching the `e2e.specPattern` value will be automatically **excluded.** |
237
215
|`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.
239
217
|`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. |
0 commit comments