Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
test: replaces path.join with fixtures.path
  • Loading branch information
Alireza Alidousti committed Oct 7, 2017
commit 9902626b941f6c2ce9ff1485f984a7b96c28b901
3 changes: 1 addition & 2 deletions test/parallel/test-inspector-invalid-args.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@ common.skipIfInspectorDisabled();

const assert = require('assert');
const execFile = require('child_process').execFile;
const path = require('path');

const mainScript = path.join(fixtures.fixturesDir, 'loop.js');
const mainScript = fixtures.path('loop.js');
const expected =
'`node --debug` and `node --debug-brk` are invalid. ' +
'Please use `node --inspect` or `node --inspect-brk` instead.';
Expand Down