diff --git a/docs/guides/cloud/runs.mdx b/docs/guides/cloud/runs.mdx
index 1f7c766903..1335b6c09b 100644
--- a/docs/guides/cloud/runs.mdx
+++ b/docs/guides/cloud/runs.mdx
@@ -3,15 +3,22 @@ title: Runs
sidebar_position: 30
---
-Recorded runs capture the results from your test runs.
+Recorded runs capture the results from your test runs. Each specific area of
+this highly informative view is described below.
-:::info
+:::tip
-If you haven't set up your project to record
-[read here](/guides/cloud/projects#Setup).
+ If you haven't set up your
+project to record, [read here](/guides/cloud/projects#Setup).
:::
+## Latest Runs
+
+The Project entry point provides a high-level overview of your most recent runs.
+This view presents a paginated summary of runs which are filterable and can be
+manually refreshed in the top right corner.
+
## Run Details
On navigating to a specific run, you are presented with the Run Details page.
@@ -28,9 +35,9 @@ This page consists of a common header and four tabbed sub-pages,
At the left side of the header is important metadata about the run, including
git author and branch
-[if available](/guides/continuous-integration/introduction#Git-information), run
-time and duration, CI data and more. Clicking on the three dots to the right of
-this section displays additional metadata, including browsers and operating
+([if available](/guides/continuous-integration/introduction#Git-information)),
+run time and duration, CI data and more. Clicking on the three dots to the right
+of this section displays additional metadata, including browsers and operating
systems used, the Cypress version, and what
[Smart Orchestration](/guides/cloud/smart-orchestration) settings were active.
@@ -106,10 +113,10 @@ view, focusing attention on the specs producing the most relevant results.
It orders results by:
-- Failed - when a failure occurred in the test or a hook associated with the
+- **Failed** - when a failure occurred in the test or a hook associated with the
test
-- Flaky - when a test failed one or more attempts before finally passing
-- Modified - when the test body has changed from a previously recorded tests
+- **Flaky** - when a test failed one or more attempts before finally passing
+- **Modified** - when the test body has changed from a previously recorded tests
The panel shows these tests broken down by spec, with easy access to run
artifacts, and a badge clearly indicating the reason the result was considered
@@ -131,8 +138,6 @@ results by a wide range of metrics, like
[test statuses](/guides/core-concepts/writing-and-organizing-tests#Test-statuses)
or [flaky tests](/guides/cloud/flaky-test-management).
-The
-
-
### What happens when a run is canceled?
- The run status will update to canceled.
@@ -306,11 +312,7 @@ canceled by members of the project.
[cypress run --record](/guides/guides/command-line#cypress-run) for the run
will exit with an error like below.
-
+
## Archive run
diff --git a/src/components/icon/index.tsx b/src/components/icon/index.tsx
index 815db77be3..91f274dcd6 100644
--- a/src/components/icon/index.tsx
+++ b/src/components/icon/index.tsx
@@ -1,14 +1,13 @@
import React from "react";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
-/* Note: Docusaurus/MDX v1 has parsing issues where some markdown renders statically and can cuse sibsequent links when beside a component or
-HTML tag while NOT in a section header or table, etc. https://github.com/mdx-js/mdx/issues/1571#issuecomment-853384939
+/* Note: Docusaurus/MDX v1 has parsing issues where some markdown renders statically when beside a component or HTML tag while NOT in a section header or table, etc. https://github.com/mdx-js/mdx/issues/1571#issuecomment-853384939
Exact issue here is noted here https://docusaurus.io/docs/markdown-features/react#markdown-and-jsx-interoperability.
This should be fixed when DS moves to MDX v2 https://github.com/facebook/docusaurus/issues/4029
-For now, we we wrap the anchor in this component for reusability. Other in-line workarounds are add a narrow no-break space (#8239; or &nnbsp;) before the or replace markdown syntax with equivalient html tags. */
+For now, we we wrap the anchor in this component for reusability. Other in-line workarounds are add a narrow no-break space ( or &nnbsp; or respectively) before the or replace markdown syntax with equivalent html tags. */
// TODO: refactor this component after DS moves to MDX v2.
diff --git a/src/css/custom.scss b/src/css/custom.scss
index 0a61a4a744..a5d3f7a5d6 100644
--- a/src/css/custom.scss
+++ b/src/css/custom.scss
@@ -311,7 +311,7 @@ div[class^='codeBlockTitle'] {
/* adding this back after original Docusaurus
rules overwritten by .embedContainer
- TODO: fix what casues this */
+ TODO: fix what causes this */
[class^='mainContentHeader'] {
border-bottom: 1px solid var(--ifm-toc-border-color);
margin-bottom: 20px;
diff --git a/src/css/markdown.scss b/src/css/markdown.scss
index 63aa02e415..72ffda0a14 100644
--- a/src/css/markdown.scss
+++ b/src/css/markdown.scss
@@ -33,8 +33,7 @@ div.markdown {
}
}
- h2,
- h4 {
+ h2 {
margin-bottom: 1.5rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid var(--ifm-toc-border-color);
diff --git a/static/img/dashboard/cancel-run-error.png b/static/img/dashboard/cancel-run-error.png
index 5da6b64d62..8652b813b1 100644
Binary files a/static/img/dashboard/cancel-run-error.png and b/static/img/dashboard/cancel-run-error.png differ
diff --git a/static/img/guides/cloud/runs/run-details-page.png b/static/img/guides/cloud/runs/run-details-page.png
index bd6729442d..9ee5730030 100644
Binary files a/static/img/guides/cloud/runs/run-details-page.png and b/static/img/guides/cloud/runs/run-details-page.png differ
diff --git a/static/img/guides/cloud/runs/sidebar-artifacts.png b/static/img/guides/cloud/runs/sidebar-artifacts.png
index b0df808c26..55543edd9b 100644
Binary files a/static/img/guides/cloud/runs/sidebar-artifacts.png and b/static/img/guides/cloud/runs/sidebar-artifacts.png differ
diff --git a/static/img/guides/cloud/runs/sidebar-errors.png b/static/img/guides/cloud/runs/sidebar-errors.png
index ce165da6b8..da52fbe681 100644
Binary files a/static/img/guides/cloud/runs/sidebar-errors.png and b/static/img/guides/cloud/runs/sidebar-errors.png differ
diff --git a/static/img/snippets/cancelling-run.mp4 b/static/img/snippets/cancelling-run.mp4
deleted file mode 100644
index 2d20f32e82..0000000000
Binary files a/static/img/snippets/cancelling-run.mp4 and /dev/null differ