mirror of https://gitee.com/openkylin/nodejs.git
19 lines
383 B
JavaScript
19 lines
383 B
JavaScript
'use strict';
|
|
|
|
// Tests below are not from WPT.
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const { URLSearchParams } = require('url');
|
|
|
|
{
|
|
const params = new URLSearchParams();
|
|
assert.throws(() => {
|
|
params.forEach.call(undefined);
|
|
}, {
|
|
code: 'ERR_INVALID_THIS',
|
|
name: 'TypeError',
|
|
message: 'Value of "this" must be of type URLSearchParams'
|
|
});
|
|
}
|