amis/__tests__/helper.tsx

23 lines
699 B
TypeScript
Raw Normal View History

2019-04-30 11:11:25 +08:00
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>):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
}
}