mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 06:08:24 +02:00
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
17 lines
511 B
JavaScript
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");
|
|
});
|