Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
test: enhance test-common.js
* refactor test-common.js so that global leak detection does not need to
  be disabled
* add test for common.fail()
  • Loading branch information
Trott committed Feb 16, 2017
commit a045e743a0ac2fe8b8da18af482d3152ea0468ce
13 changes: 12 additions & 1 deletion test/parallel/test-common.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,25 @@
const common = require('../common');
const assert = require('assert');

common.globalCheck = false;

// 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$/
);