Dactyloidae/netwerk/test/httpserver/test/test_load_module.js

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);
}