import {RenderOptions} from '../src/factory'; // jest.useFakeTimers 会修改 global 的 setTimeout 所以需要把原始的记录下来。 const timerFn = setTimeout; export function wait(duration: number, fn?: Function) { return new Promise(resolve => { timerFn(() => { fn && fn(); resolve(); }, duration); }); } export function makeEnv(env?: Partial): RenderOptions { return { session: 'test-case', isCancel: () => false, notify: (msg: string) => null, jumpTo: (to: string) => console.info('Now should jump to ' + to), alert: msg => console.info(`Alert: ${msg}`), ...env }; }