summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/harness/asyncHelpers-asyncTest-returns-undefined.js
blob: 18d78f092a8c6392dd76e9cbecabc0e2223d9844 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
// |reftest| async
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: |
    The 'asyncTest' helper when called with async flag always returns undefined.
flags: [async]
includes: [asyncHelpers.js]
---*/
var realDone = $DONE;
var doneCalls = 0;
globalThis.$DONE = function () {
  doneCalls++;
};

(async function () {
  assert.sameValue(undefined, asyncTest({}));
  assert.sameValue(
    undefined,
    asyncTest(function () {
      return "non-thenable";
    })
  );
  assert.sameValue(
    undefined,
    asyncTest(function () {
      return Promise.resolve(true);
    })
  );
  assert.sameValue(
    undefined,
    asyncTest(function () {
      return Promise.reject(new Test262Error("oh no"));
    })
  );
})()
  .then(() => {
    assert.sameValue(doneCalls, 4, "asyncTest must call $DONE");
  })
  .then(realDone, realDone);