mirror of
https://github.com/zhigang1992/wallet.git
synced 2026-01-12 09:34:37 +08:00
11 lines
227 B
TypeScript
11 lines
227 B
TypeScript
import { setup } from 'jest-dev-server';
|
|
|
|
// ts-unused-exports:disable-next-line
|
|
export default async function globalSetup() {
|
|
await setup({
|
|
command: 'yarn dev:test-app',
|
|
launchTimeout: 15000,
|
|
port: 3000,
|
|
});
|
|
}
|