Skip to content

Commit

Permalink
Merge branch 'main' into fix/http2_queue
Browse files Browse the repository at this point in the history
  • Loading branch information
metcoder95 authored Oct 31, 2024
2 parents 2efc336 + 2f03e57 commit 8d44855
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/fetch/long-lived-abort-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ const { test } = require('node:test')
const { closeServerAsPromise } = require('../utils/node-http')
const { strictEqual } = require('node:assert')

const isNode18 = process.version.startsWith('v18')
// const isNode18 = process.version.startsWith('v18')

test('long-lived-abort-controller', { skip: isNode18 }, async (t) => {
test('long-lived-abort-controller', { skip: true }, async (t) => {
const server = http.createServer((req, res) => {
res.writeHead(200, { 'Content-Type': 'text/plain' })
res.write('Hello World!')
Expand Down

0 comments on commit 8d44855

Please sign in to comment.