Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove call to deprecated os.tmpDir (#2802) #2818

Merged
merged 1 commit into from
May 23, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/acceptance/file-utils.spec.js
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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