From 8e462060b242b932cc02147b3656e6760285a362 Mon Sep 17 00:00:00 2001 From: Gleb Bahmutov Date: Sun, 14 Feb 2021 12:34:50 -0500 Subject: [PATCH] fix: Add autoEnd option to Cypress.Log Typescript definitions (#15076) (#15087) Co-authored-by: Emil Goldsmith Olesen --- cli/types/cypress.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cli/types/cypress.d.ts b/cli/types/cypress.d.ts index 25694223e2a3..55cb1924ed9a 100644 --- a/cli/types/cypress.d.ts +++ b/cli/types/cypress.d.ts @@ -5424,6 +5424,8 @@ declare namespace Cypress { /** Override *name* for display purposes only */ displayName: string message: any + /** Set to false if you want to control the finishing of the command in the log yourself */ + autoEnd: boolean /** Return an object that will be printed in the dev tools console */ consoleProps(): ObjectLike }