mirror of
https://github.com/oven-sh/bun
synced 2026-02-12 20:09:04 +00:00
Co-authored-by: Dylan Conway <35280289+dylan-conway@users.noreply.github.com> Co-authored-by: 190n <ben@bun.sh> Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
24 lines
361 B
JavaScript
24 lines
361 B
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
|
|
const assert = require('assert');
|
|
const http = require('http');
|
|
|
|
{
|
|
|
|
const options = {
|
|
port: '80',
|
|
path: '/',
|
|
headers: {
|
|
host: []
|
|
}
|
|
};
|
|
|
|
assert.throws(() => {
|
|
http.request(options);
|
|
}, {
|
|
code: /ERR_INVALID_ARG_TYPE/
|
|
}, 'http request should throw when passing array as header host');
|
|
}
|