Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jaffrepaul committed Jun 29, 2023
1 parent e8e1d0a commit c11690e
Showing 1 changed file with 49 additions and 12 deletions.
61 changes: 49 additions & 12 deletions docs/guides/cloud/branch-review.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ Branch Review is the default view of the **Branches** tab. You can also toggle t
alt="Displaying different views for branches"
/>


### Review Header

At the left side of the header is the Git commit message, PR selector, PR status and base and target branch indicators. If there are multiple pull requests open for the same branch, you can select the pull request you want to review from the dropdown to the right of the commit message.
Expand All @@ -52,7 +51,6 @@ The right side of the header includes the Cypress Cloud test run number and test
alt="Branch Review Header"
/>


### Review Test Status

When on the review screen, you will see tabs Failures, Flaky, Pending, Added, and Modified. Each tab will show you the tests that fall into that category. You can click on a test to view the test details.
Expand All @@ -66,15 +64,54 @@ When on the review screen, you will see tabs Failures, Flaky, Pending, Added, an
:::info

The arrows next to the numbers in each of the tabs indicate:
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 10V4M12 4L6 4M12 4L4 12" stroke="#C62B49" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg> total number increased in your branch
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 6V12M12 12L6 12M12 12L4 4" stroke="#C62B49" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg> total number decreased in your branch
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9 12L13 8M13 8L9 4M13 8L3 8" stroke="#C62B49" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg> there are new items, but the total count remained the same - for example, <em>1 resolved and 1 added</em>

- <svg
width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M12 10V4M12 4L6 4M12 4L4 12"
stroke="#C62B49"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg> total number increased in your branch
- <svg
width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M12 6V12M12 12L6 12M12 12L4 4"
stroke="#C62B49"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg> total number decreased in your branch
- <svg
width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M9 12L13 8M13 8L9 4M13 8L3 8"
stroke="#C62B49"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg> there are new items, but the total count remained the same - for example, <em>
1 resolved and 1 added
</em>

:::

Expand All @@ -85,4 +122,4 @@ Navigating into the test detail view reveals a side-by-side comparison of the te
<DocsImage
src="/img/guides/cloud/branch-review/test-comparison.jpg"
alt="Test Comparison View"
/>
/>

0 comments on commit c11690e

Please sign in to comment.