summaryrefslogtreecommitdiff
path: root/test/parallel/test-whatwg-url-custom-searchparams-stringifier.js
blob: d2929ae557a0799e39168439cbdb350a2e953295 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
'use strict';

// Tests below are not from WPT.

const common = require('../common');
const URLSearchParams = require('url').URLSearchParams;

{
  const params = new URLSearchParams();
  common.expectsError(() => {
    params.toString.call(undefined);
  }, {
    code: 'ERR_INVALID_THIS',
    type: TypeError,
    message: 'Value of "this" must be of type URLSearchParams'
  });
}