summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Symbol/prototype/description/wrapper.js
blob: 5c7f06d8640aed94e60629cb6798faad80723cbf (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
41
42
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 Symbol.prototype.description called on wrapper objects.
info: |
    1. Let s be the this value.
    2. Let sym be ? thisSymbolValue(s).
    3. Return sym.[[Description]].
features: [Symbol.prototype.description]
---*/

const symbol = Object(Symbol('test'));
assert.sameValue(
  symbol.description,
  'test',
  'The value of symbol.description is "test"'
);

const empty = Object(Symbol());
assert.sameValue(
  empty.description,
  undefined,
  'The value of empty.description is `undefined`'
);

const undef = Object(Symbol(undefined));
assert.sameValue(
  undef.description,
  undefined,
  'The value of undef.description is `undefined`'
);

const emptyStr = Object(Symbol(''));
assert.sameValue(
  emptyStr.description,
  '',
  'The value of emptyStr.description is ""'
);

reportCompare(0, 0);