Skip to content
Closed
Changes from all commits
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
test: use expectsError in test-debug-agent.js
Use common.expectsError() in place of inline validation function in
test-debug-agent.js.
  • Loading branch information
notarseniy committed Feb 16, 2017
commit 708460e647a5b049fc09b28b9087cfe11c68c494
11 changes: 6 additions & 5 deletions test/parallel/test-debug-agent.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
'use strict';
require('../common');
const common = require('../common');
const assert = require('assert');
const debug = require('_debug_agent');

assert.throws(
() => { debug.start(); },
function(err) {
return (err instanceof assert.AssertionError &&
err.message === 'Debugger agent running without bindings!');
}
common.expectsError(
undefined,
assert.AssertionError,
'Debugger agent running without bindings!'
)
);