tenfourfox/toolkit/mozapps/extensions/test/browser/browser_task_next_test.js
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

18 lines
429 B
JavaScript

/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
// Test that we throw if a test created with add_task()
// calls run_next_test
add_task(function* run_next_throws() {
let err = null;
try {
run_next_test();
} catch (e) {
err = e;
info("run_next_test threw " + err);
}
ok(err, "run_next_test() should throw an error inside an add_task test");
});