From b95db82fc615ca55bfdc101bfc1843ea7690654e Mon Sep 17 00:00:00 2001 From: Ahmed Ashour Date: Fri, 13 Jun 2025 17:27:04 +0200 Subject: [PATCH] docs: Fix typo (#31888) * Fix typo * empty commit --------- Co-authored-by: Jennifer Shehane --- packages/app/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/app/README.md b/packages/app/README.md index 2c45a3bcc7..fd39f9cfe9 100644 --- a/packages/app/README.md +++ b/packages/app/README.md @@ -17,7 +17,7 @@ This is the front-end for the Cypress App. Cypress has two modes: `run` and `open`. We want run mode to be as light and fast as possible, since this is the mode used to run on CI machines, etc. Run mode has minimal UI showing only what is necessary. Open mode is the interactive experience. - **`open`** mode is driven using GraphQL and urql. It shows the full Cypress app, include the top nav, side nav, spec list, etc. You can change between testing types, check your latest runs on Cypress Cloud, update settings, etc. -- **`run`** mode is does not rely on GraphQL. This is so we can be as performant as possible. It only renders the "runner" part of the UI, which is comprised of the command log, Spec Runner header, and AUT iframe. +- **`run`** mode does not rely on GraphQL. This is so we can be as performant as possible. It only renders the "runner" part of the UI, which is comprised of the command log, Spec Runner header, and AUT iframe. The two modes are composed using the same logic, but have slightly different components. You can see where the differences are in `Runner.vue`(src/pages/Specs/Runner.vue). Notice that `` receives a `gql` prop, since it uses GraphQL, and `` does not.