Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* Any copyright is dedicated to the Public Domain.
/**
* Ensure httpd.js can be imported as a module and that a server starts.
*/
function run_test() {
const { HttpServer } = ChromeUtils.importESModule(
);
let server = new HttpServer();
server.start(-1);
do_test_pending();
server.stop(do_test_finished);
}