mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-02 10:10:42 +08:00
9402c80133
Co-authored-by: LongYinan <lynweklm@gmail.com>
(cherry picked from commit c5a295a87b)
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');
|
|
});
|