You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/run/headers.test.ts
+4-4
Original file line number
Diff line number
Diff line change
@@ -321,7 +321,7 @@ describe('headers', () => {
321
321
})
322
322
})
323
323
324
-
test('should not set any headers if "cache-control" is not set and "requestContext.usedFsRead" is not truthy',()=>{
324
+
test('should not set any headers if "cache-control" is not set and "requestContext.usedFsReadForNonFallback" is not truthy',()=>{
325
325
constheaders=newHeaders()
326
326
constrequest=newRequest(defaultUrl)
327
327
vi.spyOn(headers,'set')
@@ -331,15 +331,15 @@ describe('headers', () => {
331
331
expect(headers.set).toHaveBeenCalledTimes(0)
332
332
})
333
333
334
-
test('should set permanent, durable "netlify-cdn-cache-control" if "cache-control" is not set and "requestContext.usedFsRead" is truthy',()=>{
334
+
test('should set permanent, durable "netlify-cdn-cache-control" if "cache-control" is not set and "requestContext.usedFsReadForNonFallback" is truthy',()=>{
0 commit comments