Jasmine & moment test sample

A simple example of Jasmine tests that compares moment js dates.

HTML

<script src="http://searls.github.io/jasmine-all/jasmine-all-min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.6/moment.min.js"></script>

JavaScript

describe("Testing dates,", function () {
    var today = moment().toDate();
    var todayJasmine = jasmine.clock();
    
    console.log(today === todayJasmine);
    
});