summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/values/primitive-strings.js
blob: c7beaf6ef6ad082440cd8a0cfe9fc3e0ec9bc7c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (C) 2015 Jordan Harband. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-object.values
description: Object.values accepts string primitives.
author: Jordan Harband
---*/

var result = Object.values('abc');

assert.sameValue(Array.isArray(result), true, 'result is an array');
assert.sameValue(result.length, 3, 'result has 3 items');

assert.sameValue(result[0], 'a', 'first value is "a"');
assert.sameValue(result[1], 'b', 'second value is "b"');
assert.sameValue(result[2], 'c', 'third value is "c"');

reportCompare(0, 0);