mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-03-29 00:38:26 +08:00
<img width="740" alt="Screen Shot 2020-05-20 at 16 31 30" src="https://user-images.githubusercontent.com/1174278/82458770-673d8880-9ab7-11ea-81d3-8ac0c1e52705.png">
17 lines
296 B
TypeScript
17 lines
296 B
TypeScript
import { setup } from 'jest-dev-server';
|
|
|
|
export default async function () {
|
|
await setup([
|
|
{
|
|
command: 'yarn serve -l 3579 web-build',
|
|
launchTimeout: 50000,
|
|
port: 3579,
|
|
},
|
|
{
|
|
command: 'yarn server',
|
|
launchTimeout: 50000,
|
|
port: 3275,
|
|
},
|
|
]);
|
|
}
|