From 132d2595eeee299ea8e998d336fcc6118e760e98 Mon Sep 17 00:00:00 2001 From: Ihor Kopach Date: Sun, 18 Oct 2020 18:31:37 +0200 Subject: [PATCH] =?UTF-8?q?fix(karma):=20=F0=9F=90=9B=20fix=20karma=20repo?= =?UTF-8?q?rter=20interface?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/model.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/model.ts b/src/model.ts index 94a921c1..7796cb15 100644 --- a/src/model.ts +++ b/src/model.ts @@ -23,7 +23,7 @@ export const isValidSabarivkaReporterConfig = ( export type KarmaReporter = ( karmaConfig: KarmaOptions ) => void & { - $inject: string[]; + $inject: { value: string[] }; }; export type CoverageData = InitialCoverage['coverageData'];