1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00
therubyracer/contrib/v8/jasmine/window.js

11 lines
No EOL
214 B
JavaScript

//needed to get around
(function(noop){
window = {
setInterval: noop,
clearInterval: noop,
setTimeout: function(callback, delay) {
callback()
},
clearTimeout: noop
}
})(function() {})