Skip to content

Commit

Permalink
test: replace common.fixturesDir in test-exception
Browse files Browse the repository at this point in the history
Replace common.fixturesDir with usage of the common.fixtures module in
text-exception.js

PR-URL: nodejs/node#15964
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
  • Loading branch information
keywordnew authored and addaleax committed Oct 11, 2017
1 parent f22bcba commit 66e1b11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/inspector/test-exception.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
'use strict';
const common = require('../common');
const fixtures = require('../common/fixtures');

common.skipIfInspectorDisabled();

const assert = require('assert');
const { NodeInstance } = require('./inspector-helper.js');
const path = require('path');

const script = path.join(common.fixturesDir, 'throws_error.js');
const script = fixtures.path('throws_error.js');

async function testBreakpointOnStart(session) {
console.log('[test]',
Expand Down

0 comments on commit 66e1b11

Please sign in to comment.