Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion tests.html
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,16 @@
return test("The exam is @ 2pm and goes until 4pm", "The exam", start, end, false);
})(),

(function() {
var start = getNow();

if (start.getHours() >= 19)
start.setDate(start.getDate() + 1);
start.setHours(19, 15, 0, 0);

return test("Let's do the consult at 7:15pm this evening then.", "let's do the consult this evening then.", start, null, false);
})(),

(function() {
var start = getNow(),
diff = 0 + 7 - start.getDay();
Expand Down Expand Up @@ -2147,4 +2157,4 @@ <h2><a href="https://github.com/neilgupta/Sherlock/">View documentation and sour
<p id='footer'>Made by <a href='https://neil.gg'>Neil Gupta</a> &#128040;</p>
</div>
</body>
</html>
</html>