File tree Expand file tree Collapse file tree 5 files changed +17
-9
lines changed Expand file tree Collapse file tree 5 files changed +17
-9
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import CypressLogo from "@site/src/img/frameworks/cypress.png";
11
11
import PlaywrightLogo from " @site/src/img/frameworks/playwright.png" ;
12
12
import PuppeteerLogo from " @site/src/img/frameworks/puppeteer.png" ;
13
13
import NextjsLogo from " @site/src/img/frameworks/next-js.png" ;
14
- import RemixLogo from " @site/src/img/frameworks/remix .png" ;
14
+ import ReactRouterLogo from " @site/src/img/frameworks/react-router .png" ;
15
15
import WebdriverIOLogo from " @site/src/img/frameworks/webdriverio.png" ;
16
16
import StorybookLogo from " @site/src/img/frameworks/storybook.png" ;
17
17
import OthersLogo from " @site/src/img/frameworks/others.png" ;
@@ -46,7 +46,11 @@ Learn how to setup Argos in your project:
46
46
to = " /quickstart/puppeteer"
47
47
/>
48
48
<XCard logo = { NextjsLogo } text = " Next.js Quickstart" to = " /quickstart/next-js" />
49
- <XCard logo = { RemixLogo } text = " Remix Quickstart" to = " /quickstart/remix" />
49
+ <XCard
50
+ logo = { ReactRouterLogo }
51
+ text = " React Router Quickstart"
52
+ to = " /quickstart/react-router"
53
+ />
50
54
<XCard
51
55
logo = { StorybookLogo }
52
56
text = " Storybook Quickstart"
Original file line number Diff line number Diff line change 1
1
---
2
- slug : /quickstart/remix
3
- title : Remix
2
+ slug : /quickstart/react-router
3
+ title : React Router ( Remix)
4
4
sidebar_position : 6
5
5
---
6
6
@@ -13,17 +13,17 @@ import {
13
13
ScreenshotGuidesLink ,
14
14
} from " @site/src/partials" ;
15
15
16
- # Remix Quickstart
16
+ # React Router ( Remix) Quickstart
17
17
18
- Learn how to setup visual testing in a Remix project using Argos.
18
+ Learn how to setup visual testing in a React Router (previously Remix) project using Argos.
19
19
20
- The best way to integrate Argos with Remix is to setup Playwright in your project.
20
+ The best way to integrate Argos with React Router is to setup Playwright in your project.
21
21
22
22
## Prerequisites
23
23
24
24
To get the most out of this guide, you’ll need to:
25
25
26
- - [ Use Remix ] ( https://remix.run / )
26
+ - [ Use React Router ] ( https://reactrouter.com / )
27
27
- [ Install Playwright] ( https://playwright.dev/docs/intro )
28
28
- [ Run Playwright on your CI/CD] ( https://playwright.dev/docs/ci-intro#on-pushpull_request )
29
29
- [ Create your project in Argos] ( https://app.argos-ci.com/new )
@@ -47,7 +47,7 @@ Get the Argos Playwright SDK.
47
47
48
48
## Additional resources
49
49
50
- - [ Remix example] ( https://github.com/argos-ci/argos-javascript/tree/main/examples/remix )
50
+ - [ React Router example] ( https://github.com/argos-ci/argos-javascript/tree/main/examples/react-router )
51
51
- [ Argos Playwright SDK reference] ( /playwright )
52
52
53
53
---
Original file line number Diff line number Diff line change @@ -89,6 +89,10 @@ const config = {
89
89
from : "/quickstart" ,
90
90
to : "/getting-started" ,
91
91
} ,
92
+ {
93
+ from : "/quickstart/remix" ,
94
+ to : "/quickstart/react-router" ,
95
+ } ,
92
96
] ,
93
97
} ,
94
98
] ,
You can’t perform that action at this time.
0 commit comments