Skip to content

Commit 29607db

Browse files
committed
chore: remove dead code
1 parent 8913569 commit 29607db

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

tests/utils/helpers.ts

-15
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import getPort from 'get-port'
33
import { getDeployStore } from '@netlify/blobs'
44
import { BlobsServer } from '@netlify/blobs/server'
55
import type { NetlifyPluginUtils } from '@netlify/build'
6-
import IncrementalCache from 'next/dist/server/lib/incremental-cache/index.js'
76
import { Buffer } from 'node:buffer'
87
import { mkdtemp } from 'node:fs/promises'
98
import { tmpdir } from 'node:os'
@@ -12,20 +11,6 @@ import { assert, vi } from 'vitest'
1211
import { BLOB_TOKEN } from './constants'
1312
import { type FixtureTestContext } from './contexts'
1413

15-
/**
16-
* Uses next.js incremental cache to compute the same cache key for a URL that is automatically generated
17-
* This is needed for mocking out fetch calls to test them
18-
*/
19-
export const getFetchCacheKey = async (url: string) => {
20-
const incCache = new IncrementalCache.IncrementalCache({
21-
requestHeaders: {},
22-
getPrerenderManifest: () => ({}),
23-
} as any)
24-
25-
const key = await incCache.fetchCacheKey(url)
26-
return key
27-
}
28-
2914
/**
3015
* Generates a 24char deploy ID (this is validated in the blob storage so we cant use a uuidv4)
3116
* @returns

0 commit comments

Comments
 (0)