2
2
mirror of https://github.com/Llewellynvdm/nativefier.git synced 2024-06-05 22:10:48 +00:00

Fix lint error

This commit is contained in:
Goh Jia Hao 2018-06-10 11:07:06 -07:00
parent 147a02743a
commit 0b47999c3e

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);
});