From 6b3b5f55171dd43ed612eeca37982e701bfb8dc6 Mon Sep 17 00:00:00 2001 From: Filipe Pomar Date: Sat, 25 Nov 2023 19:54:07 +0100 Subject: [PATCH] fix: corrected task typescript return type --- task.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/task.d.ts b/task.d.ts index 8ff8ef8f..67efdfb2 100644 --- a/task.d.ts +++ b/task.d.ts @@ -3,4 +3,4 @@ export default function registerCodeCoverageTasks( on: Cypress.PluginEvents, config: Cypress.PluginConfigOptions, -): void; +): Cypress.PluginConfigOptions;