Prettier React Native Libraries

Reviewed By: sahrens

Differential Revision: D7961488

fbshipit-source-id: 05f9b8b0b91ae77f9040a5321ccc18f7c3c1ce9a
This commit is contained in:
Eli White
2018-05-10 19:06:46 -07:00
committed by Facebook Github Bot
parent 1e2de71290
commit d01ab66b47
301 changed files with 6259 additions and 3781 deletions

View File

@@ -4,6 +4,7 @@
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
* @emails oncall+jsinfra
*/
@@ -23,12 +24,12 @@ describe('Object (ES7)', () => {
});
it('should check for type', () => {
expect(Object.entries.bind(null, null)).toThrow(TypeError(
'Object.entries called on non-object'
));
expect(Object.entries.bind(null, undefined)).toThrow(TypeError(
'Object.entries called on non-object'
));
expect(Object.entries.bind(null, null)).toThrow(
TypeError('Object.entries called on non-object'),
);
expect(Object.entries.bind(null, undefined)).toThrow(
TypeError('Object.entries called on non-object'),
);
expect(Object.entries.bind(null, [])).not.toThrow();
expect(Object.entries.bind(null, () => {})).not.toThrow();
expect(Object.entries.bind(null, {})).not.toThrow();
@@ -36,10 +37,13 @@ describe('Object (ES7)', () => {
});
it('should return enumerable entries', () => {
const foo = Object.defineProperties({}, {
x: {value: 10, enumerable: true},
y: {value: 20},
});
const foo = Object.defineProperties(
{},
{
x: {value: 10, enumerable: true},
y: {value: 20},
},
);
expect(Object.entries(foo)).toEqual([['x', 10]]);
@@ -57,10 +61,13 @@ describe('Object (ES7)', () => {
});
it('should return only own entries', () => {
const foo = Object.create({z: 30}, {
x: {value: 10, enumerable: true},
y: {value: 20},
});
const foo = Object.create(
{z: 30},
{
x: {value: 10, enumerable: true},
y: {value: 20},
},
);
expect(Object.entries(foo)).toEqual([['x', 10]]);
});
@@ -76,19 +83,22 @@ describe('Object (ES7)', () => {
});
it('should check for type', () => {
expect(Object.values.bind(null, null)).toThrow(TypeError(
'Object.values called on non-object'
));
expect(Object.values.bind(null, null)).toThrow(
TypeError('Object.values called on non-object'),
);
expect(Object.values.bind(null, [])).not.toThrow();
expect(Object.values.bind(null, () => {})).not.toThrow();
expect(Object.values.bind(null, {})).not.toThrow();
});
it('should return enumerable values', () => {
const foo = Object.defineProperties({}, {
x: {value: 10, enumerable: true},
y: {value: 20},
});
const foo = Object.defineProperties(
{},
{
x: {value: 10, enumerable: true},
y: {value: 20},
},
);
expect(Object.values(foo)).toEqual([10]);
@@ -106,10 +116,13 @@ describe('Object (ES7)', () => {
});
it('should return only own values', () => {
const foo = Object.create({z: 30}, {
x: {value: 10, enumerable: true},
y: {value: 20},
});
const foo = Object.create(
{z: 30},
{
x: {value: 10, enumerable: true},
y: {value: 20},
},
);
expect(Object.values(foo)).toEqual([10]);
});