fune/toolkit/components/aboutprocesses/tests/browser/browser_aboutprocesses_show_threads.js
David Teller d18de3d376 Bug 1635494 - Kill processes from about:processes;r=florian,flod
This adds a new button to kill processes.

Also, splitting about:processes tests across several files, to avoid timeouts, and improving tests startup speed.

Depends on D82553

Differential Revision: https://phabricator.services.mozilla.com/D82555
2020-10-14 15:44:42 +00:00

7 lines
213 B
JavaScript

// Test about:processes with showThreads: true, showAllFrames: false.
add_task(async function testShowThreads() {
return testAboutProcessesWithConfig({
showAllFrames: false,
showThreads: true,
});
});