summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/async.js
blob: 73d1675b862be5577cddbce3dc36a4fd843b5926 (plain)
1
2
3
4
5
6
7
8
9
10
async function thing(inc) {
  return new Promise(resolve => {
    setTimeout(resolve, 10);
  });
}

async function main() {
  await thing(1);
  await thing(2);
}