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
554 B
25 lines
554 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const fs = require('fs');
|
|
|
|
const expectedError = /^TypeError: filename prefix is required$/;
|
|
const prefixValues = [undefined, null, 0, true, false, 1, ''];
|
|
|
|
function fail(value) {
|
|
assert.throws(
|
|
() => fs.mkdtempSync(value, {}),
|
|
expectedError
|
|
);
|
|
}
|
|
|
|
function failAsync(value) {
|
|
assert.throws(
|
|
() => fs.mkdtemp(value, common.mustNotCall()), expectedError
|
|
);
|
|
}
|
|
|
|
prefixValues.forEach((prefixValue) => {
|
|
fail(prefixValue);
|
|
failAsync(prefixValue);
|
|
});
|
|
|