Fix `prettier` lint error (#625)

This commit is contained in:
David Kramer 2018-05-27 14:18:33 -07:00 committed by Ronan Jouchet
parent bde4ea68fd
commit fe6fd9d2a1
1 changed files with 3 additions and 3 deletions

View File

@ -20,9 +20,9 @@ function testPlatform(platform) {
describe('Infer User Agent', () => {
test('Can infer userAgent for all platforms', async () => {
const testPromises = _.keys(TEST_RESULT).map((platform) =>
testPlatform(platform),
);
const testPromises = _
.keys(TEST_RESULT)
.map((platform) => testPlatform(platform));
await Promise.all(testPromises);
});