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.
25 lines
675 B
25 lines
675 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const fs = require('fs');
|
|
const cbTypeError = common.expectsError({code: 'ERR_INVALID_CALLBACK'});
|
|
const callbackThrowValues = [null, true, false, 0, 1, 'foo', /foo/, [], {}];
|
|
|
|
const { sep } = require('path');
|
|
|
|
common.refreshTmpDir();
|
|
|
|
function testMakeCallback(cb) {
|
|
return function() {
|
|
// fs.mkdtemp() calls makeCallback() on its third argument
|
|
fs.mkdtemp(`${common.tmpDir}${sep}`, {}, cb);
|
|
};
|
|
}
|
|
|
|
function invalidCallbackThrowsTests() {
|
|
callbackThrowValues.forEach((value) => {
|
|
assert.throws(testMakeCallback(value), cbTypeError);
|
|
});
|
|
}
|
|
|
|
invalidCallbackThrowsTests();
|
|
|