mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-23 09:22:38 +03:00
20 lines
385 B
TypeScript
20 lines
385 B
TypeScript
|
import { fileURLToPath } from 'node:url';
|
||
|
|
||
|
import { runCli } from '@magic-works/i18n-codegen';
|
||
|
import { beforeAll } from 'vitest';
|
||
|
|
||
|
beforeAll(async () => {
|
||
|
await runCli(
|
||
|
{
|
||
|
watch: false,
|
||
|
cwd: fileURLToPath(
|
||
|
new URL('../../../.i18n-codegen.json', import.meta.url)
|
||
|
),
|
||
|
},
|
||
|
error => {
|
||
|
console.error(error);
|
||
|
process.exit(1);
|
||
|
}
|
||
|
);
|
||
|
});
|