From 1f115a10b4d76f1419da3b571e5a4944aa21fcaa Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Wed, 17 May 2023 10:59:21 +0200 Subject: [PATCH] chore: imports --- packages/pinia/__tests__/storeSetup.spec.ts | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/packages/pinia/__tests__/storeSetup.spec.ts b/packages/pinia/__tests__/storeSetup.spec.ts index 60385721..9e51a97a 100644 --- a/packages/pinia/__tests__/storeSetup.spec.ts +++ b/packages/pinia/__tests__/storeSetup.spec.ts @@ -1,15 +1,6 @@ import { beforeEach, describe, it, expect, vi } from 'vitest' import { createPinia, defineStore, setActivePinia } from '../src' -import { - App, - computed, - createApp, - inject, - nextTick, - provide, - ref, - watch, -} from 'vue' +import { computed, createApp, inject, nextTick, ref, watch } from 'vue' import { mount } from '@vue/test-utils' function expectType(_value: T): void {} -- 2.47.3