Skip to content

Instantly share code, notes, and snippets.

@classiemilio
Last active October 9, 2017 18:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save classiemilio/35a33b87b8e5b185ff816aaeae4b7295 to your computer and use it in GitHub Desktop.
Save classiemilio/35a33b87b8e5b185ff816aaeae4b7295 to your computer and use it in GitHub Desktop.
const D3TestUtils = {
clockTick(milliseconds) {
const currentNow = Date.now();
Date.now = function() {
return currentNow + milliseconds;
}
d3.timer.flush();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment