summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/module-code/top-level-await/await-awaits-thenables.js
blob: 8eb5689ff2efd3ac04dce193603020545dc14d04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// |reftest| module async
// Copyright 2019 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: prod-AwaitExpression
description: >
  Await can await any thenable.
flags: [module, async]
features: [top-level-await]
---*/

var thenable = {
  then: function (resolve, reject) {
    resolve(42);
  }
}

assert.sameValue(await thenable, 42);

$DONE();