From 355837ffd0d9236c27043717e866f4d8d7388adc Mon Sep 17 00:00:00 2001 From: Aarish <118203269+ImprobableGenius@users.noreply.github.com> Date: Fri, 23 May 2025 00:48:47 -0500 Subject: [PATCH] Better comments --- services/PlaywrightService.js | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/services/PlaywrightService.js b/services/PlaywrightService.js index 2ff900e..b86ffd1 100644 --- a/services/PlaywrightService.js +++ b/services/PlaywrightService.js @@ -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; \ No newline at end of file