mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-31 20:08:38 +09:00
16 lines
389 B
JavaScript
16 lines
389 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
/**
|
|
* Ensure httpd.js can be imported as a module and that a server starts.
|
|
*/
|
|
function run_test() {
|
|
Components.utils.import("resource://testing-common/httpd.js");
|
|
|
|
let server = new HttpServer();
|
|
server.start(-1);
|
|
|
|
do_test_pending();
|
|
|
|
server.stop(do_test_finished);
|
|
}
|