Skip to content

Instantly share code, notes, and snippets.

@ClayShentrup
Created August 2, 2016 04:23
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 ClayShentrup/48102fb34dfefc7f316e5285ba04b85e to your computer and use it in GitHub Desktop.
Save ClayShentrup/48102fb34dfefc7f316e5285ba04b85e to your computer and use it in GitHub Desktop.
Stubbing Jasmine time
'use strict';
beforeEach(function () {
jasmine.clock().install();
jasmine.clock().mockDate(
new Date(2015, 4, 20)
);
});
afterEach(function () {
jasmine.clock().uninstall();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment