Browse Source

test: replace common.fixturesDir in test-exception

Replace common.fixturesDir with usage of the common.fixtures module in
text-exception.js

PR-URL: https://github.com/nodejs/node/pull/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>
v9.x-staging
Chowdhurian 7 years ago
committed by Gibson Fahnestock
parent
commit
e14fd570fd
No known key found for this signature in database GPG Key ID: B01FBB92821C587A
  1. 4
      test/inspector/test-exception.js

4
test/inspector/test-exception.js

@ -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]',

Loading…
Cancel
Save