blob: 6b9ce145dab6e5fa6d003c65023a7ac009991ebe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
let someVar = 1;
add_task(() => {
is(someVar, 2, "Should get updated by setup which runs first.");
});
add_setup(() => {
someVar = 2;
});
|