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.
34 lines
846 B
34 lines
846 B
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const async_hooks = require('async_hooks');
|
|
const { AsyncResource } = async_hooks;
|
|
const { spawn } = require('child_process');
|
|
|
|
const initHooks = require('./init-hooks');
|
|
|
|
if (process.argv[2] === 'child') {
|
|
initHooks().enable();
|
|
|
|
class Foo extends AsyncResource {
|
|
constructor(type) {
|
|
super(type, async_hooks.executionAsyncId());
|
|
}
|
|
}
|
|
|
|
[null, undefined, 1, Date, {}, []].forEach((i) => {
|
|
common.expectsError(() => new Foo(i), {
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
type: TypeError
|
|
});
|
|
});
|
|
|
|
} else {
|
|
const args = process.argv.slice(1).concat('child');
|
|
spawn(process.execPath, args)
|
|
.on('close', common.mustCall((code) => {
|
|
// No error because the type was defaulted
|
|
assert.strictEqual(code, 0);
|
|
}));
|
|
}
|
|
|