summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Symbol/prototype/description/get.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Symbol/prototype/description/get.js')
-rw-r--r--js/src/tests/test262/built-ins/Symbol/prototype/description/get.js43
1 files changed, 43 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Symbol/prototype/description/get.js b/js/src/tests/test262/built-ins/Symbol/prototype/description/get.js
new file mode 100644
index 0000000000..91f007e2e2
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Symbol/prototype/description/get.js
@@ -0,0 +1,43 @@
+// Copyright 2018 Igalia, S.L. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-symbol.prototype.description
+description: >
+ Test the get accessor function of Symbol.prototype.description.
+info: |
+ 1. Let s be the this value.
+ 2. Let sym be ? thisSymbolValue(s).
+ 3. Return sym.[[Description]].
+features: [Symbol.prototype.description]
+---*/
+
+const symbol = Symbol('test');
+assert.sameValue(
+ symbol.description,
+ 'test',
+ 'The value of symbol.description is "test"'
+);
+
+const empty = Symbol();
+assert.sameValue(
+ empty.description,
+ undefined,
+ 'The value of empty.description is `undefined`'
+);
+
+const undef = Symbol(undefined);
+assert.sameValue(
+ undef.description,
+ undefined,
+ 'The value of undef.description is `undefined`'
+);
+
+const emptyStr = Symbol('');
+assert.sameValue(
+ emptyStr.description,
+ '',
+ 'The value of emptyStr.description is ""'
+);
+
+reportCompare(0, 0);