mirror of
https://github.com/tc39/test262.git
synced 2025-07-12 16:44:49 +02:00
30 lines
700 B
JavaScript
30 lines
700 B
JavaScript
// 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 rejects test functions that do not return a thenable.
|
|
includes: [asyncHelpers.js, compareArray.js]
|
|
---*/
|
|
|
|
const doneValues = [];
|
|
function $DONE(error) {
|
|
doneValues.push(error instanceof TypeError);
|
|
}
|
|
asyncTest(function () {
|
|
return null;
|
|
});
|
|
asyncTest(function () {
|
|
return {};
|
|
});
|
|
asyncTest(function () {
|
|
return "string";
|
|
});
|
|
asyncTest(function () {
|
|
return 42;
|
|
});
|
|
asyncTest(function () {});
|
|
asyncTest(function () {
|
|
return function () {};
|
|
});
|
|
assert.compareArray(doneValues, [true, true, true, true, true, true]);
|