Skip to content

Commit 1de343b

Browse files
author
Shivani P. Kasturi
committed
Fix lint error
1 parent 5f84947 commit 1de343b

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

lib/gather/gather-telemetry.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
const puppeteer = require('puppeteer');
22
const { setTelemetry } = require('../utils/telemetry');
33

4-
const DEFAULT_PUPPETEER_ARGS = { ignoreHTTPSErrors: true, args: ['--no-sandbox', '--disable-setuid-sandbox'] };
4+
const DEFAULT_PUPPETEER_ARGS = {
5+
ignoreHTTPSErrors: true,
6+
args: ['--no-sandbox', '--disable-setuid-sandbox'],
7+
};
58

69
module.exports = async function gatherTelemetry(url, gatherFn, ...args) {
710
let puppeteerArgs = [...args].pop();

0 commit comments

Comments
 (0)