2020-07-04 10:09:48 -07:00
|
|
|
describe("correct behavior", () => {
|
2020-07-06 07:37:45 -07:00
|
|
|
test("lengths", () => {
|
|
|
|
|
expect(Object.values).toHaveLength(1);
|
|
|
|
|
expect(Object.values(true)).toHaveLength(0);
|
|
|
|
|
expect(Object.values(45)).toHaveLength(0);
|
|
|
|
|
expect(Object.values(-998)).toHaveLength(0);
|
|
|
|
|
expect(Object.values("abcd")).toHaveLength(4);
|
|
|
|
|
expect(Object.values([1, 2, 3])).toHaveLength(3);
|
|
|
|
|
expect(Object.values({ a: 1, b: 2, c: 3 })).toHaveLength(3);
|
|
|
|
|
});
|
2020-04-29 18:59:23 -07:00
|
|
|
|
2020-07-06 07:37:45 -07:00
|
|
|
test("object argument", () => {
|
|
|
|
|
let values = Object.values({ foo: 1, bar: 2, baz: 3 });
|
|
|
|
|
expect(values).toEqual([1, 2, 3]);
|
|
|
|
|
});
|
2020-04-29 18:59:23 -07:00
|
|
|
|
2020-07-07 21:39:36 -07:00
|
|
|
test("object argument with symbol keys", () => {
|
|
|
|
|
let values = Object.values({ foo: 1, [Symbol("bar")]: 2, baz: 3 });
|
|
|
|
|
expect(values).toEqual([1, 3]);
|
|
|
|
|
});
|
|
|
|
|
|
2020-07-06 07:37:45 -07:00
|
|
|
test("array argument", () => {
|
|
|
|
|
let values = Object.values(["a", "b", "c"]);
|
|
|
|
|
expect(values).toEqual(["a", "b", "c"]);
|
|
|
|
|
});
|
2020-04-29 18:59:23 -07:00
|
|
|
|
2020-07-06 07:37:45 -07:00
|
|
|
test("ignores non-enumerable properties", () => {
|
|
|
|
|
let obj = { foo: 1 };
|
|
|
|
|
Object.defineProperty(obj, "getFoo", {
|
|
|
|
|
value: function () {
|
|
|
|
|
return this.foo;
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
let values = Object.values(obj);
|
|
|
|
|
expect(values).toEqual([1]);
|
2020-07-04 10:09:48 -07:00
|
|
|
});
|
|
|
|
|
});
|
2020-04-29 18:59:23 -07:00
|
|
|
|
2020-07-04 10:09:48 -07:00
|
|
|
describe("errors", () => {
|
2020-07-06 07:37:45 -07:00
|
|
|
test("null argument", () => {
|
|
|
|
|
expect(() => {
|
|
|
|
|
Object.values(null);
|
|
|
|
|
}).toThrowWithMessage(TypeError, "ToObject on null or undefined");
|
|
|
|
|
});
|
2020-04-29 18:59:23 -07:00
|
|
|
|
2020-07-06 07:37:45 -07:00
|
|
|
test("undefined argument", () => {
|
|
|
|
|
expect(() => {
|
|
|
|
|
Object.values(undefined);
|
|
|
|
|
}).toThrowWithMessage(TypeError, "ToObject on null or undefined");
|
|
|
|
|
});
|
2020-07-04 10:09:48 -07:00
|
|
|
});
|