File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
packages/remix/test/integration Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 7
7
"start" : " remix-serve build"
8
8
},
9
9
"dependencies" : {
10
- "@remix-run/express" : " 1.9 .0" ,
11
- "@remix-run/node" : " 1.9 .0" ,
12
- "@remix-run/react" : " 1.9 .0" ,
13
- "@remix-run/serve" : " 1.9 .0" ,
10
+ "@remix-run/express" : " 1.17 .0" ,
11
+ "@remix-run/node" : " 1.17 .0" ,
12
+ "@remix-run/react" : " 1.17 .0" ,
13
+ "@remix-run/serve" : " 1.17 .0" ,
14
14
"@sentry/remix" : " file:../.." ,
15
15
"react" : " ^17.0.2" ,
16
16
"react-dom" : " ^17.0.2"
17
17
},
18
18
"devDependencies" : {
19
- "@remix-run/dev" : " 1.9 .0" ,
19
+ "@remix-run/dev" : " 1.17 .0" ,
20
20
"@types/react" : " ^17.0.47" ,
21
21
"@types/react-dom" : " ^17.0.17" ,
22
22
"nock" : " ^13.1.0" ,
Original file line number Diff line number Diff line change 1
1
import { test , expect , Page } from '@playwright/test' ;
2
2
3
3
async function getRouteData ( page : Page ) : Promise < any > {
4
- return page . evaluate ( 'window.__remixContext.routeData ' ) . catch ( err => {
4
+ return page . evaluate ( 'window.__remixContext.state.loaderData ' ) . catch ( err => {
5
5
console . warn ( err ) ;
6
6
7
7
return { } ;
You can’t perform that action at this time.
0 commit comments