gecko-dev/testing/mochitest/chrome/test_tasks_skip.xul
Kris Maglione 219ed0cc06 Bug 1454813: Part 2b - Rename SpawnTask.js to AddTask.js. r=florian
The old name no longer makes sense, since it no longer exports an spawn_task
symbol, and add_task is what we really care about.

MozReview-Commit-ID: IE7B8Czv8DH

--HG--
rename : testing/mochitest/tests/SimpleTest/SpawnTask.js => testing/mochitest/tests/SimpleTest/AddTask.js
extra : rebase_source : 03bca5aa69a7625a49b4455a6c96ce4c59de3a5a
2018-04-18 11:43:45 -07:00

44 lines
1.2 KiB
XML

<?xml version="1.0"?>
<?xml-stylesheet href="chrome://mochikit/content/tests/SimpleTest/test.css"
type="text/css"?>
<window title="Test add_task.skip() function"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script type="application/javascript"
src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/>
<script type="application/javascript"
src="chrome://mochikit/content/tests/SimpleTest/AddTask.js"/>
<script type="application/javascript">
<![CDATA[
// Check that we can skip arbitrary tasks by calling `skip()`.
add_task(async function skipMeNot1() {
ok(true, "Well well well.");
});
add_task(async function skipMe1() {
ok(false, "Not skipped after all.");
}).skip();
add_task(async function skipMeNot2() {
ok(true, "Well well well.");
});
add_task(async function skipMeNot3() {
ok(true, "Well well well.");
});
add_task(async function skipMe2() {
ok(false, "Not skipped after all.");
}).skip();
]]>
</script>
<body xmlns="http://www.w3.org/1999/xhtml" >
</body>
</window>