From f03235b72e60485a82a5dabd588c112cc0dc64e7 Mon Sep 17 00:00:00 2001 From: Mike Han Date: Wed, 17 Jul 2024 15:50:15 -0600 Subject: [PATCH 1/3] Add deprecation warning for cypress.reporters feature --- docs/web-apps/automated-testing/cypress/yaml/v1.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/web-apps/automated-testing/cypress/yaml/v1.md b/docs/web-apps/automated-testing/cypress/yaml/v1.md index dd73267ef9..e008909ae0 100644 --- a/docs/web-apps/automated-testing/cypress/yaml/v1.md +++ b/docs/web-apps/automated-testing/cypress/yaml/v1.md @@ -897,6 +897,10 @@ cypress: In order for your additional reporter to work, it must be compatible with the [cypress-multi-reporter plugin](https://www.npmjs.com/package/cypress-multi-reporters), which provides the underlying functionality. ::: +:::warning +This feature has been deprecated. We recommend configuring your reporters with your cypress config file. See the [cypress documentation](https://docs.cypress.io/guides/tooling/reporters) for details. +::: + --- #### `name` From 146230013e85d118db796efc36426e39bf53337b Mon Sep 17 00:00:00 2001 From: Mike Han Date: Wed, 17 Jul 2024 15:52:39 -0600 Subject: [PATCH 2/3] Add link to our example for multi reporters in cypress --- docs/web-apps/automated-testing/cypress/yaml/v1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/web-apps/automated-testing/cypress/yaml/v1.md b/docs/web-apps/automated-testing/cypress/yaml/v1.md index e008909ae0..e3531b6fbd 100644 --- a/docs/web-apps/automated-testing/cypress/yaml/v1.md +++ b/docs/web-apps/automated-testing/cypress/yaml/v1.md @@ -898,7 +898,7 @@ In order for your additional reporter to work, it must be compatible with the [c ::: :::warning -This feature has been deprecated. We recommend configuring your reporters with your cypress config file. See the [cypress documentation](https://docs.cypress.io/guides/tooling/reporters) for details. +This feature has been deprecated. We recommend configuring your reporters with your cypress config file. See the [cypress documentation](https://docs.cypress.io/guides/tooling/reporters) for details or our [example repo](https://github.com/saucelabs/saucectl-cypress-example/tree/main/v1/examples/multi-reporter) for an example implementation. ::: --- From 3b8b43476f707bc218eba5bb52512a31ab54af20 Mon Sep 17 00:00:00 2001 From: Mike Han Date: Wed, 17 Jul 2024 16:57:55 -0600 Subject: [PATCH 3/3] More forceful wording --- docs/web-apps/automated-testing/cypress/yaml/v1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/web-apps/automated-testing/cypress/yaml/v1.md b/docs/web-apps/automated-testing/cypress/yaml/v1.md index e3531b6fbd..9025048e37 100644 --- a/docs/web-apps/automated-testing/cypress/yaml/v1.md +++ b/docs/web-apps/automated-testing/cypress/yaml/v1.md @@ -898,7 +898,7 @@ In order for your additional reporter to work, it must be compatible with the [c ::: :::warning -This feature has been deprecated. We recommend configuring your reporters with your cypress config file. See the [cypress documentation](https://docs.cypress.io/guides/tooling/reporters) for details or our [example repo](https://github.com/saucelabs/saucectl-cypress-example/tree/main/v1/examples/multi-reporter) for an example implementation. +This feature has been deprecated and will be removed in a future release. Migrate your reporter configuration to your cypress config file. See the [cypress documentation](https://docs.cypress.io/guides/tooling/reporters) for details or our [example repo](https://github.com/saucelabs/saucectl-cypress-example/tree/main/v1/examples/multi-reporter) for an example implementation. ::: ---