From ff8073f601a19c491685e1cd6ed8d75d3c1471bd Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Thu, 29 Apr 2021 16:22:47 +0200 Subject: [PATCH] chore: coverage --- src/store.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/store.ts b/src/store.ts index 02584087..196f03c4 100644 --- a/src/store.ts +++ b/src/store.ts @@ -180,7 +180,10 @@ function initStore( $reset, } as StoreWithState - const injectionSymbol = __DEV__ ? Symbol(`PiniaStore(${$id})`) : Symbol() + const injectionSymbol = __DEV__ + ? Symbol(`PiniaStore(${$id})`) + : /* istanbul ignore next */ + Symbol() // avoid warnings with injections not found if (pinia._a) { -- 2.47.2