• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1'use strict';
2require('../common');
3const assert = require('assert');
4const http = require('http');
5
6assert.throws(() => {
7  http.request({
8    path: '/thisisinvalid\uffe2'
9  }).end();
10}, {
11  code: 'ERR_UNESCAPED_CHARACTERS',
12  name: 'TypeError'
13});
14