Bug 1090929 - Enable the watch-expressions tests;r=mratcliffe

This commit is contained in:
Eddy Bruël 2014-11-13 19:32:29 +01:00
parent 8935e0b46d
commit 6c9f2fbf65
3 changed files with 7 additions and 9 deletions

View File

@ -546,6 +546,6 @@ skip-if = e10s && debug
[browser_dbg_variables-view-webidl.js]
skip-if = e10s && debug
[browser_dbg_watch-expressions-01.js]
skip-if = e10s
skip-if = e10s && debug
[browser_dbg_watch-expressions-02.js]
skip-if = e10s
skip-if = e10s && debug

View File

@ -11,12 +11,11 @@ function test() {
// Debug test slaves are a bit slow at this test.
requestLongerTimeout(2);
let gTab, gDebuggee, gPanel, gDebugger;
let gTab, gPanel, gDebugger;
let gEditor, gWatch, gVariables;
initDebugger(TAB_URL).then(([aTab, aDebuggee, aPanel]) => {
initDebugger(TAB_URL).then(([aTab,, aPanel]) => {
gTab = aTab;
gDebuggee = aDebuggee;
gPanel = aPanel;
gDebugger = gPanel.panelWin;
gEditor = gDebugger.DebuggerView.editor;

View File

@ -11,12 +11,11 @@ function test() {
// Debug test slaves are a bit slow at this test.
requestLongerTimeout(2);
let gTab, gDebuggee, gPanel, gDebugger;
let gTab, gPanel, gDebugger;
let gWatch, gVariables;
initDebugger(TAB_URL).then(([aTab, aDebuggee, aPanel]) => {
initDebugger(TAB_URL).then(([aTab,, aPanel]) => {
gTab = aTab;
gDebuggee = aDebuggee;
gPanel = aPanel;
gDebugger = gPanel.panelWin;
gWatch = gDebugger.DebuggerView.WatchExpressions;
@ -113,7 +112,7 @@ function test() {
aCallback();
});
gDebuggee.test();
callInTab(gTab, "test");
}
function test2(aCallback) {