aboutsummaryrefslogtreecommitdiff
path: root/node_modules/ava/lib/globals.js
blob: 51176c11362abfa1247e6570ec4f73a0e53cdca4 (plain)
1
2
3
4
5
6
7
8
9
10
'use strict';

// Global objects / functions to be bound before requiring test file, so tests do not interfere

const x = module.exports;
x.now = Date.now;
x.setTimeout = setTimeout;
x.clearTimeout = clearTimeout;
x.setImmediate = setImmediate;
x.options = {};