summaryrefslogtreecommitdiffstats
path: root/devtools/client/framework/test/browser_ignore_toolbox_network_requests.js
blob: 65daa4d78db661fdaad7f4dcc0c2bfd5e8201229 (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
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Test that network requests originating from the toolbox don't get recorded in
// the network panel.

add_task(async function () {
  let tab = await addTab(URL_ROOT + "doc_viewsource.html");
  let toolbox = await gDevTools.showToolboxForTab(tab, {
    toolId: "styleeditor",
  });
  let panel = toolbox.getPanel("styleeditor");

  is(panel.UI.editors.length, 1, "correct number of editors opened");

  const monitor = await toolbox.selectTool("netmonitor");
  const { store } = monitor.panelWin;

  is(
    store.getState().requests.requests.length,
    0,
    "No network requests appear in the network panel"
  );

  await toolbox.destroy();
  tab = toolbox = panel = null;
  gBrowser.removeCurrentTab();
});