tenfourfox/netwerk/test/unit_ipc/test_predictor_wrap.js

13 lines
425 B
JavaScript
Raw Normal View History

2017-04-19 07:56:45 +00:00
function run_test() {
var test_path = do_get_file("../unit/test_predictor.js").path.replace(/\\/g, "/");
load(test_path);
do_load_child_test_harness();
do_test_pending();
sendCommand("load(\"" + test_path + "\");", function () {
sendCommand("predictor = Cc[\"@mozilla.org/network/predictor;1\"].getService(Ci.nsINetworkPredictor);", function() {
run_test_real();
do_test_finished();
});
});
}