- import { beforeAll } from 'vitest'
- import { exec } from 'node:child_process'
- import { promisify } from 'node:util'
- beforeAll(async function () {
- await promisify(exec)(
- `cd ../../tools/migrations && npm run migrations -- migrate -t server-ce`
- )
- }, 60_000)
|