UNPKG

@exodus/networking-spec

Version:

Platform-agnostic test suites for networking related features

15 lines (14 loc) 344 B
const timers = typeof jest === 'undefined' ? { useFakeTimers: () => { jasmine.clock().install(); }, useRealTimers: () => { jasmine.clock().uninstall(); }, advanceTimersByTime: (ms) => { jasmine.clock().tick(ms); }, } : jest; export default timers;