From 09bdb04300b8fbfc8e2ccc26ee9ad6837bb5a858 Mon Sep 17 00:00:00 2001 From: Jan-Gerke Salomon Date: Wed, 25 Nov 2020 13:10:33 +0100 Subject: [PATCH] refactor(deprication warning): show in one line --- packages/cypress-commands/src/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/cypress-commands/src/index.js b/packages/cypress-commands/src/index.js index ebd64a3c..4d33623e 100644 --- a/packages/cypress-commands/src/index.js +++ b/packages/cypress-commands/src/index.js @@ -14,7 +14,7 @@ export { enableAutoLogin } from './setups/enableAutoLogin' // backward compatibility export const registerCommands = () => { - cy.log('The usage of `registerCommands` has been deprecated') - cy.log('It is now a no-op') - cy.log('commands are registered automatically.') + cy.log( + 'The usage of `registerCommands` has been deprecated. It is now a no-op. Commands are registered automatically.' + ) }