mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
643 B
26 lines
643 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
|
|
// test for leaked global detection
|
|
global.gc = 42; // Not a valid global unless --expose_gc is set.
|
|
assert.deepStrictEqual(common.leakedGlobals(), ['gc']);
|
|
delete global.gc;
|
|
|
|
|
|
// common.mustCall() tests
|
|
assert.throws(function() {
|
|
common.mustCall(function() {}, 'foo');
|
|
}, /^TypeError: Invalid expected value: foo$/);
|
|
|
|
assert.throws(function() {
|
|
common.mustCall(function() {}, /foo/);
|
|
}, /^TypeError: Invalid expected value: \/foo\/$/);
|
|
|
|
|
|
// common.fail() tests
|
|
assert.throws(
|
|
() => { common.fail('fhqwhgads'); },
|
|
/^AssertionError: fhqwhgads$/
|
|
);
|
|
|