mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-22 09:13:18 +03:00
ea0059fa1b
<div class='graphite__hidden'> <div>🎥 Video uploaded on Graphite:</div> <a href="https://app.graphite.dev/media/video/T2klNLEk0wxLh4NRDzhk/7380c06e-880e-424a-9204-8cfb5e924978.mp4"> <img src="https://app.graphite.dev/api/v1/graphite/video/thumbnail/T2klNLEk0wxLh4NRDzhk/7380c06e-880e-424a-9204-8cfb5e924978.mp4"> </a> </div> <video src="https://graphite-user-uploaded-assets-prod.s3.amazonaws.com/T2klNLEk0wxLh4NRDzhk/7380c06e-880e-424a-9204-8cfb5e924978.mp4">Kapture 2024-05-30 at 19.42.46.mp4</video>
55 lines
1.4 KiB
TypeScript
55 lines
1.4 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-swc';
|
|
import * as fg from 'fast-glob';
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
const rootDir = fileURLToPath(new URL('.', import.meta.url));
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
react({
|
|
tsDecorators: true,
|
|
}),
|
|
vanillaExtractPlugin(),
|
|
],
|
|
assetsInclude: ['**/*.md', '**/*.zip'],
|
|
resolve: {
|
|
alias: {
|
|
// prevent tests using two different sources of yjs
|
|
yjs: resolve(rootDir, 'node_modules/yjs'),
|
|
'@affine/core': fileURLToPath(
|
|
new URL('./packages/frontend/core/src', import.meta.url)
|
|
),
|
|
},
|
|
},
|
|
test: {
|
|
setupFiles: [
|
|
resolve(rootDir, './scripts/setup/lit.ts'),
|
|
resolve(rootDir, './scripts/setup/vi-mock.ts'),
|
|
resolve(rootDir, './scripts/setup/global.ts'),
|
|
],
|
|
include: [
|
|
// rootDir cannot be used as a pattern on windows
|
|
fg.convertPathToPattern(rootDir) +
|
|
'packages/{common,frontend}/**/*.spec.{ts,tsx}',
|
|
],
|
|
exclude: [
|
|
'**/node_modules',
|
|
'**/dist',
|
|
'**/build',
|
|
'**/out,',
|
|
'**/packages/frontend/electron',
|
|
],
|
|
testTimeout: 5000,
|
|
coverage: {
|
|
all: false,
|
|
provider: 'istanbul', // or 'c8'
|
|
reporter: ['lcov'],
|
|
reportsDirectory: resolve(rootDir, '.coverage/store'),
|
|
},
|
|
},
|
|
});
|