Browse Source

test: fixtures in test-process-redirect-warnings

In test/parallel/test-process-redirect-warning.js replace usage of
common.fixture by common.fixturesDir

PR-URL: https://github.com/nodejs/node/pull/15917
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
v9.x-staging
Nicolas Chaulet 8 years ago
committed by James M Snell
parent
commit
8a8cd40b27
  1. 3
      test/parallel/test-process-redirect-warnings.js

3
test/parallel/test-process-redirect-warnings.js

@ -6,6 +6,7 @@
// opened and the contents are validated
const common = require('../common');
const fixtures = require('../common/fixtures');
const fs = require('fs');
const fork = require('child_process').fork;
const path = require('path');
@ -13,7 +14,7 @@ const assert = require('assert');
common.refreshTmpDir();
const warnmod = require.resolve(`${common.fixturesDir}/warnings.js`);
const warnmod = fixtures.path('warnings.js');
const warnpath = path.join(common.tmpDir, 'warnings.txt');
fork(warnmod, { execArgv: [`--redirect-warnings=${warnpath}`] })

Loading…
Cancel
Save