node/test/parallel/test-async-wrap-throw-no-init.js
yorkie 861e584d46 async_wrap: add a missing case to test-async-wrap-throw-no-init
PR-URL: https://github.com/nodejs/node/pull/8198
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-10-26 14:09:05 -04:00

25 lines
617 B
JavaScript

'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.setupHooks({});
}, /init callback must be a function/);
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/);