mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 12:28:42 +00:00
8 lines
192 B
TypeScript
8 lines
192 B
TypeScript
import { beforeAll } from 'vitest';
|
|
|
|
beforeAll(async () => {
|
|
console.log('Build plugins');
|
|
// @ts-expect-error
|
|
await import('../../apps/electron/scripts/plugins/build-plugins.mjs');
|
|
});
|