/ vitest.config.ts
vitest.config.ts
1 import { defineConfig } from 'vitest/config'; 2 import { WxtVitest } from 'wxt/testing'; 3 4 export default defineConfig({ 5 test: { 6 mockReset: true, 7 restoreMocks: true, 8 includeSource: ['src/storage/*/helpers/*.ts'], 9 }, 10 plugins: [WxtVitest()], 11 });