mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
521 B
22 lines
521 B
'use strict';
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const async_wrap = process.binding('async_wrap');
|
|
|
|
|
|
assert.throws(function() {
|
|
async_wrap.setupHooks(null);
|
|
}, /first argument must be an object/);
|
|
|
|
assert.throws(function() {
|
|
async_wrap.enable();
|
|
}, /init callback is not assigned to a function/);
|
|
|
|
// Should not throw
|
|
async_wrap.setupHooks({ init: () => {} });
|
|
async_wrap.enable();
|
|
|
|
assert.throws(function() {
|
|
async_wrap.setupHooks(() => {});
|
|
}, /hooks should not be set while also enabled/);
|
|
|