You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

59 lines
1.1 KiB

'use strict';
var sinon = require('sinon');
var main = require('../package.json').main;
var schedule = require('../' + main);
var clock;
module.exports = {
setUp: function(cb) {
clock = sinon.useFakeTimers();
cb();
},
"Date string": {
"Should accept a valid date string": function(test) {
test.expect(1);
schedule.scheduleJob(new Date(Date.now() + 1000).toString(), function() {
test.ok(true);
});
setTimeout(function() {
test.done();
}, 1250);
clock.tick(1250);
},
"Should not accept invalid string as valid date": function(test) {
test.expect(1);
var job = schedule.scheduleJob("hello!!", function() {
});
test.equal(job, null);
test.done();
}
},
"UTC": {
"Should accept a valid UTC date in milliseconds": function(test) {
test.expect(1);
schedule.scheduleJob(new Date(Date.now() + 1000).getTime(), function() {
test.ok(true);
});
setTimeout(function() {
test.done();
}, 1250);
clock.tick(1250);
}
},
tearDown: function(cb) {
clock.restore();
cb();
}
};