diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index 49da6eb7139..c4b3725f16e 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -11,6 +11,10 @@ _Released 6/17/2025 (PENDING)_ - Fixed an issue when using `Cypress.stop()` where a run may be aborted prior to receiving the required runner events causing Test Replay to not be available. Addresses [#31781](https://github.com/cypress-io/cypress/issues/31781). +**Misc:** + +- Added timeout field to EnqueuedCommandAttributes type. Addresses [#30198](https://github.com/cypress-io/cypress/issues/30198). + ## 14.4.1 _Released 6/3/2025_ diff --git a/cli/types/cypress.d.ts b/cli/types/cypress.d.ts index 65f51f96722..570522c2f2d 100644 --- a/cli/types/cypress.d.ts +++ b/cli/types/cypress.d.ts @@ -6426,6 +6426,7 @@ declare namespace Cypress { injected: boolean userInvocationStack?: string query?: boolean + timeout?: number fn(...args: any[]): any }