Lines Matching +full:post +full:- +full:require +full:- +full:hook
1 // Flags: --expose-internals
3 const common = require('../common');
7 const assert = require('assert');
8 const { internalBinding } = require('internal/test/binding');
11 const inspector = require('inspector');
26 verifyAsyncHookDisabled('inspector async hook should be disabled at startup');
34 session.post('Debugger.enable', () => {
37 session.post(setDepth, { invalid: 'message' }, () => {
40 session.post(setDepth, { maxDepth: 'five' }, () => {
44 session.post(setDepth, { maxDepth: NaN }, () => {
48 session.post(setDepth, { maxDepth: 10 }, () => {
51 session.post(setDepth, { maxDepth: 0 }, () => {
64 session.post(setDepth, { maxDepth: 32 }, () => {
67 session.post('Debugger.disable', () => {
70 session.post('Debugger.enable', () => {
73 session.post(setDepth, { maxDepth: 64 }, () => {