gecko-dev/browser/components/uitour/test/browser_UITour_showNewTab.js
Gijs Kruitbosch e022c25cf8 Bug 1322726 - add UITour API to support opening about:newtab in the current tab, r=MattN
When running the tests by dir, I noticed the tracking protection test requires extra
files to work, but don't list those, so I fixed that.

MozReview-Commit-ID: FUi8XQImvbI

--HG--
extra : rebase_source : 22cda58541764b624b9d75fbe0fd76275203aa18
2016-12-15 14:30:36 +00:00

17 lines
511 B
JavaScript

"use strict";
var gTestTab;
var gContentAPI;
var gContentWindow;
add_task(setup_UITourTest);
// Test that we can switch to about:newtab
add_UITour_task(function* test_aboutNewTab() {
let newTabLoaded = BrowserTestUtils.browserLoaded(gBrowser.selectedBrowser, false, "about:newtab");
info("Showing about:newtab");
yield gContentAPI.showNewTab();
info("Waiting for about:newtab to load");
yield newTabLoaded;
is(gBrowser.selectedBrowser.currentURI.spec, "about:newtab", "Loaded about:newtab");
});