summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/browser_dbg-tabs-keyboard.js
blob: 96db07e2b55f4b3d207bb8d730a470a4b78de8ad (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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */

// Tests removing tabs with keyboard shortcuts

"use strict";

add_task(async function () {
  const dbg = await initDebugger(
    "doc-scripts.html",
    "simple1.js",
    "simple2.js"
  );

  await selectSource(dbg, "simple1.js");
  await selectSource(dbg, "simple2.js");
  is(countTabs(dbg), 2, "Two tabs are open");

  pressKey(dbg, "close");
  waitForDispatch(dbg.store, "CLOSE_TABS");
  is(countTabs(dbg), 1, "One tab is open");

  await waitForSelectedSource(dbg, "simple1.js");

  pressKey(dbg, "close");
  waitForDispatch(dbg.store, "CLOSE_TABS");
  is(countTabs(dbg), 0, "No tabs open");
});