Skip to content

Commit

Permalink
test: replace common.fixturesDir in test-exception.js
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
  • Loading branch information
keywordnew committed Oct 6, 2017
1 parent 4f339b5 commit f4949fd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/inspector/test-exception.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
'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 f4949fd

Please sign in to comment.