File tree 4 files changed +7
-6
lines changed
4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 1
- import * as fs from 'fs/promises'
2
1
import { join , relative } from 'path'
2
+ import fs from 'fs/promises'
3
3
4
4
import type { getRequestHandlers } from 'next/dist/server/lib/start-server.js'
5
5
@@ -10,13 +10,14 @@ type FS = typeof import('fs')
10
10
11
11
export async function getMockedRequestHandlers ( ...args : Parameters < typeof getRequestHandlers > ) {
12
12
const { blobStore } = await import ( './cache.cjs' )
13
+ const ofs = { ...fs }
13
14
14
15
async function readFileFallbackBlobStore ( ...args : Parameters < FS [ 'promises' ] [ 'readFile' ] > ) {
15
16
const [ path , options ] = args
16
17
try {
17
18
// Attempt to read from the disk
18
19
// important to use the `import * as fs from 'fs'` here to not end up in a endless loop
19
- return await fs . readFile ( path , options )
20
+ return await ofs . readFile ( path , options )
20
21
} catch ( error ) {
21
22
// only try to get .html files from the blob store
22
23
if ( typeof path === 'string' && path . endsWith ( '.html' ) ) {
Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ export default async (request: Request) => {
14
14
nextConfig = await getRunConfig ( )
15
15
setRunConfig ( nextConfig )
16
16
17
- const { getRequestHandlers } = await import ( 'next/dist/server/lib/start-server.js ' )
17
+ const { getMockedRequestHandlers } = await import ( './next.cjs ' )
18
18
19
- ; [ nextHandler ] = await getRequestHandlers ( {
19
+ ; [ nextHandler ] = await getMockedRequestHandlers ( {
20
20
port : 3000 ,
21
21
hostname : 'localhost' ,
22
22
dir : RUN_DIR ,
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ interface NetlifyVaryValues {
7
7
}
8
8
9
9
const generateNetlifyVaryValues = ( { headers, languages, cookies } : NetlifyVaryValues ) : string => {
10
- const values = [ ]
10
+ const values : string [ ] = [ ]
11
11
if ( headers . length !== 0 ) {
12
12
values . push ( `header=${ headers . join ( `|` ) } ` )
13
13
}
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ beforeEach<FixtureTestContext>(async (ctx) => {
24
24
await startMockBlobStore ( ctx )
25
25
} )
26
26
27
- test . skip < FixtureTestContext > ( 'requesting a non existing page route that needs to be fetched from the CDN' , async ( ctx ) => {
27
+ test < FixtureTestContext > ( 'requesting a non existing page route that needs to be fetched from the CDN' , async ( ctx ) => {
28
28
await createFixture ( 'page-router' , ctx )
29
29
await runPlugin ( ctx )
30
30
You can’t perform that action at this time.
0 commit comments