std/testing/_time.ts
Kyle June 403f226a20
feat(testing): add utility for faking time (#2069)
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
2022-04-14 15:29:17 +09:00

11 lines
253 B
TypeScript

// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
/** Used internally for testing that fake time uses real time correctly. */
export const _internals = {
Date,
setTimeout,
clearTimeout,
setInterval,
clearInterval,
};