| Index: test/inspector/debugger/destory-in-break-program.js
|
| diff --git a/test/inspector/debugger/destory-in-break-program.js b/test/inspector/debugger/destory-in-break-program.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6366b36250dbdbf3e8f305874a6cfe7fd8c7263a
|
| --- /dev/null
|
| +++ b/test/inspector/debugger/destory-in-break-program.js
|
| @@ -0,0 +1,13 @@
|
| +// 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.
|
| +
|
| +InspectorTest.log('Check destroying agent inside of breakProgram');
|
| +
|
| +(async function test(){
|
| + await Protocol.Debugger.enable();
|
| + Protocol.Runtime.evaluate({expression: 'inspector.breakProgram(\'\', \'{}\')'});
|
| + await Protocol.Debugger.oncePaused();
|
| + utils.disconnect();
|
| + utils.quit();
|
| +})();
|
|
|