summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Debugger-onPromiseSettled-01.js
blob: 7277ed8ae3fbb03939d8b4b229deb47c75ff368d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Test that the onPromiseSettled hook gets called when a promise settles.
if (!('Promise' in this))
    quit(0);

var g = newGlobal();
var dbg = new Debugger();
var gw = dbg.addDebuggee(g);

let log = "";
let pw;
dbg.onPromiseSettled = pw_ => {
  pw = pw_;
  log += "s";
};

let p = new g.Promise(function (){});
g.settlePromiseNow(p);

assertEq(log, "s");
assertEq(pw, gw.makeDebuggeeValue(p));

log = "";
dbg.enabled = false;
p = new g.Promise(function (){});
g.settlePromiseNow(p);

assertEq(log, "");