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 c2c8fd5 commit 87ce4afCopy full SHA for 87ce4af
test/client.js
@@ -18,6 +18,8 @@ const hasIPv6 = (() => {
18
)
19
})()
20
21
+const isNode20OrHigher = Number(process.versions.node.split('.')[0]) >= 20
22
+
23
test('basic get', (t) => {
24
t.plan(24)
25
@@ -1896,7 +1898,7 @@ test('async iterator early return closes early', (t) => {
1896
1898
})
1897
1899
1900
-test('async iterator yield unsupported TypedArray', (t) => {
1901
+test('async iterator yield unsupported TypedArray', { skip: isNode20OrHigher }, (t) => {
1902
t.plan(3)
1903
const server = createServer((req, res) => {
1904
req.on('end', () => {
0 commit comments