Skip to content

Commit d7aace5

Browse files
committed
fix formatting issues
1 parent 920ecce commit d7aace5

File tree

7 files changed

+27
-16
lines changed

7 files changed

+27
-16
lines changed

src/app/learn/examples/cypress-io/page.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ Take a look at the YAML file for the workflow definition. We recommend diving in
1313

1414
- [project repository](https://github.com/replayio-public/overboard)
1515
- [workflow file](https://github.com/replayio-public/overboard/blob/main/.github/workflows/cypress.yaml)
16-
{% /callout %}
16+
17+
{% /callout %}
1718

1819
## Debugging a Cypress test flake on CI
1920

@@ -30,7 +31,8 @@ The replay shown in video [can be found on this link](https://replay.help/cypres
3031
{% callout title="Debugging a flaky test" type="link" %}
3132

3233
- [link to the replay showing flaky Cypress test](https://replay.help/cypress-flake-debug)
33-
{% /callout %}
34+
35+
{% /callout %}
3436

3537
## False positive accessibility check
3638

@@ -44,4 +46,5 @@ You can read about the debugging process in this blogpost. If you want to see th
4446

4547
- [example project](https://github.com/replayio/replay-examples/tree/main/examples/03_accessibility_false_positive)
4648
- [blogpost about the false positive case](https://blog.replay.io/finding-%22false-positive%22-tests-with-replay.io)
47-
{% /callout %}
49+
50+
{% /callout %}

src/app/reference/ci-workflows/github-action-upload/page.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
---
22
title: GitHub upload action
33
---
4+
45
GitHub upload action takes care of uploading your recordings during your CI test runs on GitHub. It enables you to filter the recordings you upload to Replay App.
56

67
{% tabs labels=["cypress", "playwright"] %}
78
{% tab %}
9+
810
```yaml {% fileName=".github/workflows/e2e.yml" highlight=["15-19"] lineNumbers=true %}
911
name: End-to-end tests
1012
on: push
@@ -26,8 +28,10 @@ jobs:
2628
with:
2729
api-key: ${{ secrets.REPLAY_API_KEY }}
2830
```
31+
2932
{% /tab %}
3033
{% tab %}
34+
3135
```yml {% fileName=".github/workflows/e2e.yml" lineNumbers=true highlight=["19-23"] %}
3236
name: End-to-end tests
3337
on:
@@ -53,6 +57,7 @@ jobs:
5357
with:
5458
api-key: ${{ secrets.REPLAY_API_KEY }}
5559
```
60+
5661
{% /tab %}
5762
{% /tabs %}
5863
@@ -62,11 +67,11 @@ Make sure to set `if: ${{ always() }}` so that this step is always executed, eve
6267

6368
{% quick-links title="Learn more" %}
6469

65-
{% quick-link
66-
title="Upload strategies"
70+
{% quick-link
71+
title="Upload strategies"
6772
icon="uploadicon"
6873
description="There are different strategies for uploading your replays such as uploading only on test flakes or failures."
6974
href="/reference/ci-workflows/upload-strategies"
7075
/%}
7176

72-
{% /quick-links %}
77+
{% /quick-links %}

src/app/reference/replay-teams/okta-integration/page.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,13 @@ Logging in with SSO, is as easy as going to app.replay.io, clicking Sign In with
4141
To make this change, you must have Admin access to your Okta deployment.
4242

4343
1. Find the necessary dialogue to add an App by going to Admin → Applications → Applications. Here’s an example of the screen you should see:
44-
{% figure alt="Elements panel" src="/images/okta-2.webp" height=440 width=870/%}
44+
45+
{% figure alt="Elements panel" src="/images/okta-2.webp" height=440 width=870/%}
4546

4647
2. Click on “Create App Integration”, select “SAML 2.0” and click on Next.
4748
3. In General Settings give the name to the app: “Replay” and click Next.
48-
{% figure alt="Elements panel" src="/images/okta-3.webp" height=440 width=870/%}
49+
50+
{% figure alt="Elements panel" src="/images/okta-3.webp" height=440 width=870/%}
4951

5052
4. Using the configuration info sent from Replay (and referencing the above) fill out the next screen. Here is an example of that screen filled out with example information:
5153

src/app/reference/test-runners/cypress-io/faq/page.md

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ title: Frequently asked questions
2828

2929
- All logs
3030
- DEBUG=cypress:launcher:browsers RECORD_REPLAY_VERBOSE=1
31+
3132
{% /table %}
3233

3334
## How do I group tests ran in a matrix or across multiple runners into the same test run?

src/app/reference/test-runners/cypress-io/github-actions/page.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ title: GitHub actions with Cypress
66
These instructions assume that you have already [set up your Cypress project](/basics/getting-started/record-your-cypress-tests).
77
{% /callout %}
88

9-
This example uses [Cypress GitHub Action](https://github.com/cypress-io/github-action) that provides dependency installation, built-in caching, and multiple options for advanced workflow configuration. For recording your test, the `replay-chromium` browser needs to be passed as a browser.
9+
This example uses [Cypress GitHub Action](https://github.com/cypress-io/github-action) that provides dependency installation, built-in caching, and multiple options for advanced workflow configuration. For recording your test, the `replay-chromium` browser needs to be passed as a browser.
1010

1111
```yaml {% fileName=".github/workflows/e2e.yml" highlight=["11-19"] lineNumbers=true %}
1212
name: End-to-end tests
@@ -31,17 +31,17 @@ Running with Replay browser will create your replays. These are stored locally o
3131
3232
{% quick-links title="Learn more" %}
3333
34-
{% quick-link
35-
title="Upload strategies"
34+
{% quick-link
35+
title="Upload strategies"
3636
icon="uploadicon"
3737
description="There are different strategies for uploading your replays such as uploading only on test flakes or failures."
3838
href="/reference/ci-workflows/upload-strategies"
3939
/%}
40-
{% quick-link
41-
title="GitHub upload action"
40+
{% quick-link
41+
title="GitHub upload action"
4242
icon="github"
4343
description="GitHub upload action takes care of uploading your recordings during your CI test runs on GitHub. It enables you to filter the recordings you upload to Replay App."
4444
href="/reference/ci-workflows/github-action-upload"
4545
/%}
4646
47-
{% /quick-links %}
47+
{% /quick-links %}

src/components/Icon.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ export const icons = {
112112
video: VideocamSharp,
113113
redux: ReduxIcon,
114114
vercel: Vercel,
115-
uploadicon: UploadIcon
115+
uploadicon: UploadIcon,
116116
}
117117

118118
export const iconStyles = {

src/lib/navigation.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ export const navigation: Record<NavigationNames, NavigationItem[]> = {
312312
{
313313
title: 'GitHub upload action',
314314
href: '/reference/ci-workflows/github-action-upload',
315-
}
315+
},
316316
],
317317
},
318318
{

0 commit comments

Comments
 (0)