summaryrefslogtreecommitdiffstats
path: root/devtools/client/netmonitor/test/browser_net_reload-markers.js
blob: 93b8353ed467884288af44386d4abe4b72e421ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

/**
 * Tests if the empty-requests reload button works.
 */

add_task(async function () {
  const { monitor } = await initNetMonitor(SIMPLE_URL, { requestCount: 1 });
  info("Starting test... ");

  const { document } = monitor.panelWin;

  const markersDone = waitForTimelineMarkers(monitor);

  const button = document.querySelector(".requests-list-reload-notice-button");
  button.click();

  await waitForNetworkEvents(monitor, 1);
  const markers = await markersDone;

  ok(true, "Reloading finished");

  is(
    markers[0].name,
    "dom-interactive",
    "The first received marker is correct."
  );
  is(markers[1].name, "dom-complete", "The second received marker is correct.");

  return teardown(monitor);
});