summaryrefslogtreecommitdiffstats
path: root/testing/mochitest/tests/browser/browser_setup_runs_for_only_tests.js
blob: d1b811b2d185d18cd904d9f5ce695ca0b756cdbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

let someVar = 1;

add_setup(() => {
  someVar = 2;
});

/* eslint-disable mozilla/reject-addtask-only */
add_task(() => {
  is(someVar, 2, "Setup should have run, even though this is the only test.");
}).only();