mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
35 lines
911 B
JavaScript
35 lines
911 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
/**
|
|
* Tests if the empty-requests reload button works.
|
|
*/
|
|
|
|
function test() {
|
|
let monitor, reqMenu;
|
|
initNetMonitor(SINGLE_GET_URL).then(([aTab, aDebuggee, aMonitor]) => {
|
|
info("Starting test... ");
|
|
|
|
monitor = aMonitor;
|
|
let { document, NetMonitorView } = aMonitor.panelWin;
|
|
let { RequestsMenu } = NetMonitorView;
|
|
reqMenu = RequestsMenu;
|
|
|
|
is(reqMenu.itemCount, 0,
|
|
"The request menu should empty before reloading");
|
|
|
|
let button = document.querySelector("#requests-menu-reload-notice-button");
|
|
button.click();
|
|
})
|
|
.then(() => {
|
|
return waitForNetworkEvents(monitor, 2);
|
|
})
|
|
.then(() => {
|
|
is(reqMenu.itemCount, 2,
|
|
"The request menu should have two items after reloading");
|
|
})
|
|
.then(() => {
|
|
return teardown(monitor).then(finish);
|
|
});
|
|
}
|