Skip to content

Commit f92b159

Browse files
authored
test: fix type error in segment-cache-basic test (#73755)
Fix type error introduced in #73540
1 parent 4074ede commit f92b159

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/e2e/app-dir/segment-cache/basic/segment-cache-basic.test.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,9 @@ describe('segment cache (basic tests)', () => {
144144
it('skips dynamic request if prefetched data is fully static', async () => {
145145
const interceptor = createRequestInterceptor()
146146
const browser = await next.browser('/fully-static', {
147-
beforePageLoad(page: Page) {
148-
page.route('**/*', async (route: Route) => {
149-
await interceptor.interceptRoute(route)
147+
beforePageLoad(page: Playwright.Page) {
148+
page.route('**/*', async (route: Playwright.Route) => {
149+
await interceptor.interceptRoute(page, route)
150150
})
151151
},
152152
})

0 commit comments

Comments
 (0)