Last active
August 30, 2016 13:32
-
-
Save thabotitus/706dea22dc4811a57289b5493e0b1965 to your computer and use it in GitHub Desktop.
JS Test Example 1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
it('returns true when a new date is the future', function() { | |
var tomorrow = new Date(); tomorrow.setDate(tomorrow.getDate() + 1); | |
expect(self.disbursement_dates_valid(tomorrow)).toBe(true); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment