Sto usando moment.js per fare la maggior parte della mia logica di data in un file di supporto per i miei componenti React ma non sono stato in grado di capire come deridere un appuntamento in Jest a la sinon.useFakeTimers()
.
I documenti di Jest parlano solo di funzioni timer come setTimeout
, setInterval
ecc. , Ma non aiutano a impostare una data e quindi a controllare che le mie funzioni di data facciano quello che dovrebbero fare.
Ecco alcuni dei miei file JS:
var moment = require('moment');
var DateHelper = {
DATE_FORMAT: 'MMMM D',
API_DATE_FORMAT: 'YYYY-MM-DD',
formatDate: function(date) {
return date.format(this.DATE_FORMAT);
},
isDateToday: function(date) {
return this.formatDate(date) === this.formatDate(moment());
}
};
module.exports = DateHelper;
ed ecco cosa ho impostato usando Jest:
jest.dontMock('../../../dashboard/calendar/date-helper')
.dontMock('moment');
describe('DateHelper', function() {
var DateHelper = require('../../../dashboard/calendar/date-helper'),
moment = require('moment'),
DATE_FORMAT = 'MMMM D';
describe('formatDate', function() {
it('should return the date formatted as DATE_FORMAT', function() {
var unformattedDate = moment('2014-05-12T00:00:00.000Z'),
formattedDate = DateHelper.formatDate(unformattedDate);
expect(formattedDate).toEqual('May 12');
});
});
describe('isDateToday', function() {
it('should return true if the passed in date is today', function() {
var today = moment();
expect(DateHelper.isDateToday(today)).toEqual(true);
});
});
});
Ora questi test passano perché sto usando moment e le mie funzioni usano moment ma sembra un po 'instabile e vorrei impostare la data su un tempo fisso per i test.
Qualche idea su come ciò potrebbe essere realizzato?
Date
similivalueOf()
.