Skip to content

Commit

Permalink
Merge pull request #2818 from makepanic/issue/2802
Browse files Browse the repository at this point in the history
Remove call to deprecated os.tmpDir (#2802)
  • Loading branch information
ScottFreeCode committed May 23, 2017
2 parents e249434 + 3e7152f commit fc35691
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/acceptance/file-utils.spec.js
Expand Up @@ -8,7 +8,7 @@ var mkdirp = require('mkdirp');
var rimraf = require('rimraf');

describe('file utils', function () {
var tmpDir = path.join(os.tmpDir(), 'mocha-file-lookup');
var tmpDir = path.join(os.tmpdir(), 'mocha-file-lookup');
var existsSync = fs.existsSync;
var tmpFile = path.join.bind(path, tmpDir);
var symlinkSupported = false;
Expand Down
2 changes: 1 addition & 1 deletion test/integration/reporters.spec.js
Expand Up @@ -36,7 +36,7 @@ describe('reporters', function () {
describe('xunit', function () {
it('prints test cases with --reporter-options output (issue: 1864)', function (done) {
var randomStr = crypto.randomBytes(8).toString('hex');
var tmpDir = os.tmpDir().replace(new RegExp(path.sep + '$'), '');
var tmpDir = os.tmpdir().replace(new RegExp(path.sep + '$'), '');
var tmpFile = tmpDir + path.sep + 'test-issue-1864-' + randomStr + '.xml';

var args = ['--reporter=xunit', '--reporter-options', 'output=' + tmpFile];
Expand Down

0 comments on commit fc35691

Please sign in to comment.