mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-10 16:46:01 +03:00
53 lines
1.7 KiB
TypeScript
53 lines
1.7 KiB
TypeScript
import { resolve } from 'node:path';
|
|
import { fileURLToPath } from 'node:url';
|
|
|
|
import { vanillaExtractPlugin } from '@vanilla-extract/vite-plugin';
|
|
import react from '@vitejs/plugin-react';
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
const rootDir = fileURLToPath(new URL('.', import.meta.url));
|
|
const pluginOutputDir = resolve(rootDir, './apps/electron/dist/plugins');
|
|
|
|
export default defineConfig({
|
|
plugins: [react(), vanillaExtractPlugin()],
|
|
assetsInclude: ['**/*.md'],
|
|
resolve: {
|
|
alias: {
|
|
'next/router': 'next-router-mock',
|
|
'next/config': resolve(rootDir, './scripts/vitest/next-config-mock.ts'),
|
|
},
|
|
},
|
|
define: {
|
|
'process.env.PLUGIN_DIR': JSON.stringify(pluginOutputDir),
|
|
},
|
|
test: {
|
|
setupFiles: [
|
|
resolve(rootDir, './scripts/setup/build-plugins.ts'),
|
|
resolve(rootDir, './scripts/setup/lit.ts'),
|
|
resolve(rootDir, './scripts/setup/i18n.ts'),
|
|
resolve(rootDir, './scripts/setup/search.ts'),
|
|
resolve(rootDir, './scripts/setup/lottie-web.ts'),
|
|
],
|
|
// split tests that include native addons or not
|
|
include: process.env.NATIVE_TEST
|
|
? ['apps/electron/layers/**/*.spec.ts']
|
|
: [
|
|
'packages/**/*.spec.ts',
|
|
'packages/**/*.spec.tsx',
|
|
'apps/web/**/*.spec.ts',
|
|
'apps/web/**/*.spec.tsx',
|
|
'tests/unit/**/*.spec.ts',
|
|
'tests/unit/**/*.spec.tsx',
|
|
],
|
|
exclude: ['**/node_modules', '**/dist', '**/build', '**/out'],
|
|
testTimeout: 5000,
|
|
singleThread: Boolean(process.env.NATIVE_TEST),
|
|
threads: !process.env.NATIVE_TEST,
|
|
coverage: {
|
|
provider: 'istanbul', // or 'c8'
|
|
reporter: ['lcov'],
|
|
reportsDirectory: '.coverage/store',
|
|
},
|
|
},
|
|
});
|