/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/v8/test/inspector/debugger/max-async-call-stack-depth-changed.js
16 строк
664 B
Ali Ijaz Sheikh
deps: V8: backport b1cd96e from upstream
29 окт 2017, 19:38
29 окт 2017, 19:38
c087502
Код
Авторство
О чём код?
// Copyright 2017 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. let {session, contextGroup, Protocol} = InspectorTest.start('Tests for max async call stack depth changed.'); (async function test(){ utils.setLogMaxAsyncCallStackDepthChanged(true); await Protocol.Debugger.enable(); await Protocol.Debugger.setAsyncCallStackDepth({maxDepth: 8}); await Protocol.Debugger.setAsyncCallStackDepth({maxDepth: 0}); await Protocol.Debugger.setAsyncCallStackDepth({maxDepth: 8}); await Protocol.Debugger.disable(); InspectorTest.completeTest(); })();