summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-client-headers-host-array.js
blob: 53b259514133025db44b47f4c2d1d0183e5df91c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
'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');
}