Skip to content

Commit 72b3321

Browse files
committed
style: format
1 parent 4858495 commit 72b3321

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/testing/src/testing.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,10 @@ export function createTestingPinia({
8989

9090
plugins.forEach((plugin) => pinia.use(plugin))
9191

92-
const createSpy = _createSpy || (typeof jest !== 'undefined' && jest.fn) || (typeof vitest !== 'undefined' && vitest.fn)
92+
const createSpy =
93+
_createSpy ||
94+
(typeof jest !== 'undefined' && jest.fn) ||
95+
(typeof vitest !== 'undefined' && vitest.fn)
9396
/* istanbul ignore if */
9497
if (!createSpy) {
9598
throw new Error('You must configure the `createSpy` option.')

0 commit comments

Comments
 (0)