Better comments

This commit is contained in:
Aarish
2025-05-23 00:48:47 -05:00
parent 7773e85811
commit 355837ffd0

View File

@@ -59,9 +59,10 @@ class PlaywrightService {
}
/**
* Loops through the list of urls and runs the
* accessibility test on each url
*
* @param {*} url
* @returns
* @returns {Array} - The list of results from the accessibility test
*/
async getAccessibilityResults() {
const urls = await this.getUrlList();
@@ -103,10 +104,6 @@ class PlaywrightService {
return results?.violations || 'No violations found';
}
/**
*
*/
}
module.exports = PlaywrightService;