File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -58,3 +58,4 @@ script:
5858 browser_webconsole_eval_in_debugger_stackframe2.js
5959 browser_webconsole_location_debugger_link.js
6060 browser_webconsole_stacktrace_location_debugger_link.js
61+ browser_browser_toolbox_debugger.js
Original file line number Diff line number Diff line change @@ -188,6 +188,7 @@ skip-if = os == "win" # Bug 1434792
188188[browser_dbg-sources.js]
189189[browser_dbg-sources-named-eval.js]
190190[browser_dbg-stepping.js]
191+ skip-if = debug
191192[browser_dbg-tabs.js]
192193[browser_dbg-tabs-pretty-print.js]
193194[browser_dbg-toggling-tools.js]
Original file line number Diff line number Diff line change 66/**
77 * Tests that a chrome debugger can be created in a new process.
88 */
9+
10+ // There are shutdown issues for which multiple rejections are left uncaught.
11+ // See bug 1018184 for resolving these issues.
12+ const { PromiseTestUtils } = scopedCuImport ( "resource://testing-common/PromiseTestUtils.jsm" ) ;
13+ PromiseTestUtils . whitelistRejectionsGlobally ( / F i l e c l o s e d / ) ;
14+ PromiseTestUtils . whitelistRejectionsGlobally ( / N S _ E R R O R _ F A I L U R E / ) ;
15+
916requestLongerTimeout ( 5 ) ;
1017
1118const { BrowserToolboxProcess } = ChromeUtils . import (
Original file line number Diff line number Diff line change @@ -39,6 +39,8 @@ Services.scriptloader.loadSubScript(
3939) ;
4040
4141var { Toolbox } = require ( "devtools/client/framework/toolbox" ) ;
42+ var { Task } = require ( "devtools/shared/task" ) ;
43+
4244const sourceUtils = {
4345 isLoaded : source => source . get ( "loadedState" ) === "loaded"
4446} ;
You can’t perform that action at this time.
0 commit comments