From a7b9cfc9336e6e1313fadb9b76dfe0f10f4d0427 Mon Sep 17 00:00:00 2001 From: Mike Han Date: Tue, 16 Jul 2024 15:51:57 -0600 Subject: [PATCH] Add a warning to move reporter config --- src/cypress-runner.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cypress-runner.ts b/src/cypress-runner.ts index c9dadc6b..8a384561 100644 --- a/src/cypress-runner.ts +++ b/src/cypress-runner.ts @@ -185,6 +185,7 @@ function getCypressOpts( if (runCfg.cypress.reporters) { opts = configureReporters(runCfg, opts); + console.log('Configuring multi reporters with saucectl is deprecated. We recommend migrating your configuration to your cypress config file.'); } configureWebkitOptions(process.env, opts, suite);