Hi all!
I'm curious what other front-end developers use to test page performance.
Do you just use Chrome Developer Tools or do you have a more complicated system integrated into CI/CD processes?
Also curious about testing... I usually just write unit tests, but not end-to-end testing of the UI. Do you have any quality assurance or testing tools you use for testing UI? (puppeteer?)
Top comments (3)
there is an npm library called testcafe-lighthouse which helps to audit web pages using TestCafe. It also has the capability to produce an HTML detailed report.
Install the plugin by:
I hope it will help your automation journey.
For end to end testing you could look into Cypress it looks pretty good. So far I have only had a quick test with a demo app but it looks promising.
TestCafe for e2e testing, and lightouseci. On lighthouse ci i wrote article on dev.to if you are interested.