summaryrefslogtreecommitdiff
path: root/test/built-ins/AsyncGeneratorPrototype/next/prop-desc.js
diff options
context:
space:
mode:
authorValerie <spectranaut@gmail.com>2018-03-02 09:44:23 -0500
committerLeo Balter <leonardo.balter@gmail.com>2018-03-02 09:44:23 -0500
commite14a9ad9fefaf94454695e74db9873282ea22880 (patch)
treee8794a10e3a3f3049c2b1bb1da7ab4afab333efa /test/built-ins/AsyncGeneratorPrototype/next/prop-desc.js
parent4a3e19b3e4f04be2d747ca5d7529115f5cf85169 (diff)
downloadqtdeclarative-testsuites-e14a9ad9fefaf94454695e74db9873282ea22880.tar.gz
async-iteration: AsyncGeneratorPrototype tests (#1451)
Diffstat (limited to 'test/built-ins/AsyncGeneratorPrototype/next/prop-desc.js')
-rw-r--r--test/built-ins/AsyncGeneratorPrototype/next/prop-desc.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/built-ins/AsyncGeneratorPrototype/next/prop-desc.js b/test/built-ins/AsyncGeneratorPrototype/next/prop-desc.js
new file mode 100644
index 000000000..b064e4f78
--- /dev/null
+++ b/test/built-ins/AsyncGeneratorPrototype/next/prop-desc.js
@@ -0,0 +1,21 @@
+// Copyright (C) 2018 Valerie Young. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-asyncgenerator-prototype-next
+description: GeneratorPrototype.next property description
+info: |
+ This property has the attributes { [[Writable]]: false, [[Enumerable]]:
+ false, [[Configurable]]: false }.
+includes: [propertyHelper.js]
+features: [async-iteration]
+---*/
+
+async function* g() {}
+var AsyncGeneratorPrototype = Object.getPrototypeOf(g).prototype;
+
+verifyProperty(AsyncGeneratorPrototype, "next", {
+ enumerable: false,
+ writable: true,
+ configurable: true,
+});