summaryrefslogtreecommitdiff
path: root/test/sequential
diff options
context:
space:
mode:
Diffstat (limited to 'test/sequential')
-rw-r--r--test/sequential/test-inspector-module.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/sequential/test-inspector-module.js b/test/sequential/test-inspector-module.js
index eaecd49c98..26bb7fe926 100644
--- a/test/sequential/test-inspector-module.js
+++ b/test/sequential/test-inspector-module.js
@@ -46,6 +46,17 @@ session.post('Runtime.evaluate', { expression: '2 + 2' });
);
});
+[1, 'a', {}, [], true, Infinity].forEach((i) => {
+ common.expectsError(
+ () => session.post('test', {}, i),
+ {
+ code: 'ERR_INVALID_CALLBACK',
+ type: TypeError,
+ message: 'Callback must be a function'
+ }
+ );
+});
+
common.expectsError(
() => session.connect(),
{