2
2
mirror of https://github.com/Llewellynvdm/nativefier.git synced 2025-01-25 16:18:27 +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', () => { describe('Infer User Agent', () => {
test('Can infer userAgent for all platforms', async () => { test('Can infer userAgent for all platforms', async () => {
const testPromises = _ const testPromises = _.keys(TEST_RESULT).map((platform) =>
.keys(TEST_RESULT) testPlatform(platform),
.map((platform) => testPlatform(platform)); );
await Promise.all(testPromises); await Promise.all(testPromises);
}); });