mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 04:18:54 +00:00
7 lines
145 B
TypeScript
7 lines
145 B
TypeScript
import { beforeAll } from 'vitest';
|
|
|
|
beforeAll(async () => {
|
|
console.log('Build plugins');
|
|
await import('../esbuild/build-plugins.mjs');
|
|
});
|