mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
node: stop skipping test-http-full-response.js on linux (#21154) [publish images]
This commit is contained in:
@@ -986,6 +986,7 @@ install_build_essentials() {
|
||||
xz-utils \
|
||||
pkg-config \
|
||||
golang
|
||||
install_packages apache2-utils
|
||||
;;
|
||||
dnf | yum)
|
||||
install_packages \
|
||||
@@ -1013,6 +1014,7 @@ install_build_essentials() {
|
||||
ninja \
|
||||
go \
|
||||
xz
|
||||
install_packages apache2-utils
|
||||
;;
|
||||
esac
|
||||
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
|
||||
'use strict';
|
||||
const common = require('../common');
|
||||
if (common.isWindows) return; // TODO: BUN no 'ab' installed
|
||||
const assert = require('assert');
|
||||
// This test requires the program 'ab'
|
||||
const http = require('http');
|
||||
@@ -30,10 +31,6 @@ const bodyLength = 12345;
|
||||
|
||||
const body = 'c'.repeat(bodyLength);
|
||||
|
||||
if (typeof Bun !== "undefined" && !Bun.which("ab")) {
|
||||
common.skip("ab not found");
|
||||
}
|
||||
|
||||
const server = http.createServer(function(req, res) {
|
||||
res.writeHead(200, {
|
||||
'Content-Length': bodyLength,
|
||||
|
||||
Reference in New Issue
Block a user