Skip to content
This repository was archived by the owner on Oct 8, 2021. It is now read-only.

Commit a4ee2d5

Browse files
committed
moved local failing firefox test to pageSequence helper
1 parent e1ac8ee commit a4ee2d5

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

tests/unit/navigation/navigation_core.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -315,8 +315,11 @@
315315
});
316316

317317
asyncTest( "Page title updates properly from heading text in header when loading an external page", function(){
318-
$.testHelper.openPage("#ajax-title-page");
319-
$.testHelper.sequence([
318+
$.testHelper.pageSequence([
319+
function(){
320+
$.testHelper.openPage("#ajax-title-page");
321+
},
322+
320323
function(){
321324
$("#titletest3").click();
322325
},
@@ -325,7 +328,7 @@
325328
same(document.title, "Title Heading");
326329
start();
327330
}
328-
], 500);
331+
]);
329332
});
330333

331334
asyncTest( "Page links to the current active page result in the same active page", function(){

0 commit comments

Comments
 (0)