forked from AndrejsAbrickis/lighthouse-azure-devops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.ts
42 lines (33 loc) · 1.22 KB
/
main.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import * as fs from 'fs';
import * as chromeLauncher from 'chrome-launcher';
import lighthouse from 'lighthouse/lighthouse-core';
import ReportGenerator from 'lighthouse/lighthouse-core/report/report-generator';
const run = async (url: string, options: chromeLauncher.Options) => {
const chrome: chromeLauncher.LaunchedChrome = await chromeLauncher.launch({ chromeFlags: options.chromeFlags });
options.port = chrome.port;
try {
const results = await lighthouse(url, options);
const jsonReport = ReportGenerator.generateReport(results.lhr, 'json');
fs.writeFile('results.json', jsonReport, (err) => {
if (err) {
console.log(err);
return;
};
console.log('Successfully Written to File: results.json');
});
const htmlReport = ReportGenerator.generateReport(results.lhr, 'html');
fs.writeFile('results.html', htmlReport, (err) => {
if (err) {
console.log(err);
return;
};
console.log('Successfully Written to File: results.html');
});
} catch (error) {
throw new Error(error);
} finally {
await chrome.kill();
}
}
const urlToTest = 'https://dev.v3.weplan.dk/test';
run(urlToTest, { chromeFlags: ['--headless'] });