From 72b3321f60ec818f3fbd710bdccd65ca5151baa7 Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Mon, 28 Feb 2022 17:50:41 +0100 Subject: [PATCH] style: format --- packages/testing/src/testing.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/testing/src/testing.ts b/packages/testing/src/testing.ts index 99407358..3cf136b1 100644 --- a/packages/testing/src/testing.ts +++ b/packages/testing/src/testing.ts @@ -89,7 +89,10 @@ export function createTestingPinia({ plugins.forEach((plugin) => pinia.use(plugin)) - const createSpy = _createSpy || (typeof jest !== 'undefined' && jest.fn) || (typeof vitest !== 'undefined' && vitest.fn) + const createSpy = + _createSpy || + (typeof jest !== 'undefined' && jest.fn) || + (typeof vitest !== 'undefined' && vitest.fn) /* istanbul ignore if */ if (!createSpy) { throw new Error('You must configure the `createSpy` option.') -- 2.47.3