1
0
Fork 0
firefox/testing/xpcshell/test/unit/test_tasks_skip.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

21 lines
448 B
JavaScript

"use strict";
add_task(async function skipMeNot1() {
Assert.ok(true, "Well well well.");
});
add_task(async function skipMe1() {
Assert.ok(false, "Not skipped after all.");
}).skip();
add_task(async function skipMeNot2() {
Assert.ok(true, "Well well well.");
});
add_task(async function skipMeNot3() {
Assert.ok(true, "Well well well.");
});
add_task(async function skipMe2() {
Assert.ok(false, "Not skipped after all.");
}).skip();