DEV Community

Cover image for Automate lighthouse audits for your Progressive Web Application
Rishi Kumar Chawda
Rishi Kumar Chawda

Posted on • Updated on • Originally published at rishikc.com

Automate lighthouse audits for your Progressive Web Application

We all know how important and helpful the insights are from lighthouse audits when we're developing our web applications. But the way most of us check is manually through Chrome devtools or the lighthouse extension, which in my opinion, is not very productive.

For those of us who don't know, there are mainly four ways of auditing our web application with lighthouse :

  • Chrome devtools

  • Command line

  • NPM module ( which we are going to use in a while )

  • PageSpeed Insights

For the purpose of programmatically performing lighthouse audits, we will use the lighthouse npm package, mocha and chai for writing our tests and chrome-launcher for running our lighthouse tests.

First, let's install the above packages as dev dependencies in our project :

npm install lighthouse chrome-launcher chai mocha --save-dev
Enter fullscreen mode Exit fullscreen mode

Now, let's create a file named lighthouse.tests.js in our tests directory. We'll run our lighthouse audits through this file.
Here, we'll import the lighthouse module and chrome launcher - which will enable us to open our webpage from local development server and run the audits to test against a minimum threshold that we want our lighthouse scores to be.

While this might sound a lot to do, it isn't much. Here's what it looks like on actual code :

const lighthouse = require("lighthouse");
const chromeLauncher = require("chrome-launcher");

function launchChromeAndRunLighthouse(url, opts, conf = null) {
  return chromeLauncher
    .launch({ chromeFlags: opts.chromeFlags })
    .then(chrome => {
      opts.port = chrome.port;
      return lighthouse(url, opts, conf).then(res =>
        chrome.kill().then(() => res.lhr)
      );
    });
}
Enter fullscreen mode Exit fullscreen mode

And it is as simple as that. We launch the chrome browser instance with chromeLauncher.launch method and then run lighthouse tests with the site url and configuration for our audits. After that is done, we close / kill the chrome instance and return the results. This is how it looks like when in use :

launchChromeAndRunLighthouse(testUrl, opts, config).then(res => {
  // Results are available in `res`
});
Enter fullscreen mode Exit fullscreen mode

So now, we can put this call inside our before hook for the tests and then have tests for each metric, something like this :

describe("Lighthouse Audits", function() {
  // Timeout doesn't need to be same. It can be more or less depending on your project.
  this.timeout(50000);
  let results;
  before("run test", done => {
    launchChromeAndRunLighthouse(testUrl, opts, config).then(res => {
      // Extract the results you need for your assertions.
      done();
    });
  });
  it("performance test", done => {
    // test your performance score against the threshold
    done();
  });
  // Some more tests..
});
Enter fullscreen mode Exit fullscreen mode

Still looks weird? Don't worry! Checkout this repository for example setup of lighthouse tests with mocha and try that out with your web application!

(You can find a list of related projects through this link, including an example with jest)

This method can be applied to automate the tests in continuous integration / deployment environments so that you don't have to worry about manually auditing your web application and checking wether it meets the minimum satisfactory levels.

So there you go. That's all we need to do for automating lighthouse audits for our progressive web applications to make sure they are always worthy for the internet and user's data packets!

worthy

Thank you for reading! 😄

You can also connect with me via Twitter.

Happy hacking! Cheers! 🎉

Top comments (1)

Collapse
 
quinncuatro profile image
Henry Quinn

This is cool! Worth pointing out that this doesn't have to just for PWA's. Lighthouse is a good tool for all kinds of performance testing before you even get into PWA territory.