tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

browser_tasks_skip.js (448B)


      1 "use strict";
      2 
      3 add_task(async function skipMeNot1() {
      4  Assert.ok(true, "Well well well.");
      5 });
      6 
      7 add_task(async function skipMe1() {
      8  Assert.ok(false, "Not skipped after all.");
      9 }).skip();
     10 
     11 add_task(async function skipMeNot2() {
     12  Assert.ok(true, "Well well well.");
     13 });
     14 
     15 add_task(async function skipMeNot3() {
     16  Assert.ok(true, "Well well well.");
     17 });
     18 
     19 add_task(async function skipMe2() {
     20  Assert.ok(false, "Not skipped after all.");
     21 }).skip();