@@ -12,8 +12,7 @@ let fixture: Fixture;
12
12
let appFixture : AppFixture ;
13
13
14
14
////////////////////////////////////////////////////////////////////////////////
15
- // 💿 👋 Hola! It's me, Dora the Remix Disc, I'm here to help you write a great
16
- // bug report pull request.
15
+ // 👋 Hola! I'm here to help you write a great bug report pull request.
17
16
//
18
17
// You don't need to fix the bug, this is just to report one.
19
18
//
@@ -24,23 +23,30 @@ let appFixture: AppFixture;
24
23
// commit to this pull request, and your now-succeeding test will have to be moved
25
24
// to the appropriate file.
26
25
//
27
- // First, make sure to install dependencies and build Remix . From the root of
26
+ // First, make sure to install dependencies and build React Router . From the root of
28
27
// the project, run this:
29
28
//
30
29
// ```
31
30
// pnpm install && pnpm build
32
31
// ```
32
+ //
33
+ // If you have never installed playwright on your system before, you may also need
34
+ // to install a browser engine:
35
+ //
36
+ // ```
37
+ // pnpm exec playwright install chromium
38
+ // ```
33
39
//
34
40
// Now try running this test:
35
41
//
36
42
// ```
37
- // pnpm bug-report-test
43
+ // pnpm test:integration bug-report --project chromium
38
44
// ```
39
45
//
40
46
// You can add `--watch` to the end to have it re-run on file changes:
41
47
//
42
48
// ```
43
- // pnpm bug-report-test --watch
49
+ // pnpm test:integration bug-report --project chromium --watch
44
50
// ```
45
51
////////////////////////////////////////////////////////////////////////////////
46
52
@@ -94,7 +100,7 @@ test.afterAll(() => {
94
100
95
101
////////////////////////////////////////////////////////////////////////////////
96
102
// 💿 Almost done, now write your failing test case(s) down here Make sure to
97
- // add a good description for what you expect Remix to do 👇🏽
103
+ // add a good description for what you expect React Router to do 👇🏽
98
104
////////////////////////////////////////////////////////////////////////////////
99
105
100
106
test ( "[description of what you expect it to do]" , async ( { page } ) => {
@@ -116,5 +122,6 @@ test("[description of what you expect it to do]", async ({ page }) => {
116
122
} ) ;
117
123
118
124
////////////////////////////////////////////////////////////////////////////////
119
- // 💿 Finally, push your changes to your fork of Remix and open a pull request!
125
+ // 💿 Finally, push your changes to your fork of React Router
126
+ // and open a pull request!
120
127
////////////////////////////////////////////////////////////////////////////////
0 commit comments