aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-http-request-invalid-method-error.js
blob: 59706e90c7ca125a0f0bf18b66ba72f8856f156a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict';
const common = require('../common');
const assert = require('assert');
const http = require('http');

assert.throws(
  () => http.request({ method: '\0' }),
  common.expectsError({
    code: 'ERR_INVALID_HTTP_TOKEN',
    type: TypeError,
    message: 'Method must be a valid HTTP token ["\u0000"]'
  })
);