We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7893665 commit d79870dCopy full SHA for d79870d
1 file changed
test/fetch/encoding.js
@@ -8,7 +8,9 @@ const { fetch } = require('../..')
8
const zlib = require('node:zlib')
9
const { closeServerAsPromise } = require('../utils/node-http')
10
11
-test('content-encoding header is case-iNsENsITIve', async (t) => {
+const skip = process.versions.node.split('.').map(Number)[0] === 20 && process.platform === 'darwin'
12
+
13
+test('content-encoding header is case-iNsENsITIve', { skip }, async (t) => {
14
const contentCodings = 'GZiP, bR'
15
const text = 'Hello, World!'
16
const gzipBrotliText = Buffer.from('CxCAH4sIAAAAAAAAA/NIzcnJ11EIzy/KSVEEANDDSuwNAAAAAw==', 'base64')
0 commit comments