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

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