Build distribution to include MockDate

- Forgot to do this when merging the pull request
- Also fix quotes for string to match jshint rules
This commit is contained in:
slackersoft
2014-03-01 13:18:15 -08:00
parent 9d1e92f5e2
commit d7053612f5
2 changed files with 81 additions and 3 deletions

View File

@@ -51,7 +51,7 @@ getJasmineRequireObj().MockDate = function() {
if (GlobalDate.now) {
return currentTime;
} else {
throw new Error("Browser does not support Date.now()");
throw new Error('Browser does not support Date.now()');
}
};