Bug 1842773 - Part 5: Add ArrayBuffer.prototype.{maxByteLength,resizable} getters...
[gecko.git] / testing / mochitest / tests / browser / browser_tasks_skip.js
blob99f3e8d2c2d94278a9d04706758fdc0c44d65b7f
1 "use strict";
3 add_task(async function skipMeNot1() {
4   Assert.ok(true, "Well well well.");
5 });
7 add_task(async function skipMe1() {
8   Assert.ok(false, "Not skipped after all.");
9 }).skip();
11 add_task(async function skipMeNot2() {
12   Assert.ok(true, "Well well well.");
13 });
15 add_task(async function skipMeNot3() {
16   Assert.ok(true, "Well well well.");
17 });
19 add_task(async function skipMe2() {
20   Assert.ok(false, "Not skipped after all.");
21 }).skip();