diff options
Diffstat (limited to 'js/src/tests/test262/built-ins/Promise/constructor.js')
-rw-r--r-- | js/src/tests/test262/built-ins/Promise/constructor.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Promise/constructor.js b/js/src/tests/test262/built-ins/Promise/constructor.js new file mode 100644 index 0000000000..79e15dab44 --- /dev/null +++ b/js/src/tests/test262/built-ins/Promise/constructor.js @@ -0,0 +1,11 @@ +// Copyright (C) 2019 Aleksey Shvayka. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +esid: sec-promise-executor +description: > + The Promise constructor is a built-in function +---*/ + +assert.sameValue(typeof Promise, 'function'); + +reportCompare(0, 0); |