summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/tabcrashed/browser_aboutRestartRequired_basic.js
blob: d62372cbba71273ac06b55340c5746d931f45d77 (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
"use strict";

// On debug builds, crashing tabs results in much thinking, which
// slows down the test and results in intermittent test timeouts,
// so we'll pump up the expected timeout for this test.
requestLongerTimeout(5);

SimpleTest.expectChildProcessCrash();

add_task(async function test_browser_crashed_basic_event() {
  info("Waiting for oop-browser-crashed event.");

  Services.telemetry.clearScalars();
  is(
    getFalsePositiveTelemetry(),
    undefined,
    "Build ID mismatch false positive count should be undefined"
  );

  await forceCleanProcesses();
  let eventPromise = getEventPromise("oop-browser-crashed", "basic");
  let tab = await openNewTab(true);
  await eventPromise;

  is(
    getFalsePositiveTelemetry(),
    undefined,
    "Build ID mismatch false positive count should be undefined"
  );
  await closeTab(tab);
});