mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-21 14:41:00 -06:00
misc: Ensure cypress tab is active before any command runs (#28334)
This commit is contained in:
@@ -10,6 +10,7 @@ _Released 11/21/2023 (PENDING)_
|
||||
**Misc:**
|
||||
|
||||
- Browser tabs and windows other than the Cypress tab are now closed between tests in Chromium-based browsers. Addressed in [#28204](https://github.com/cypress-io/cypress/pull/28204).
|
||||
- Cypress now ensures the main browser tab is active before running eaech command in Chromium-based browsers. Addressed in [#28334](https://github.com/cypress-io/cypress/pull/28334).
|
||||
|
||||
## 13.5.1
|
||||
|
||||
|
||||
2
cli/types/cypress.d.ts
vendored
2
cli/types/cypress.d.ts
vendored
@@ -818,7 +818,7 @@ declare namespace Cypress {
|
||||
* Trigger action
|
||||
* @private
|
||||
*/
|
||||
action: (action: string, ...args: any[]) => any[] | void
|
||||
action: <T = (any[] | void)>(action: string, ...args: any[]) => T
|
||||
|
||||
/**
|
||||
* Load files
|
||||
|
||||
Reference in New Issue
Block a user