Test cleanup and fixes [g-h]
This commit is contained in:
@ -1,11 +1,9 @@
|
||||
const expect = require('expect');
|
||||
const getDaysDiffBetweenDates = require('./getDaysDiffBetweenDates.js');
|
||||
|
||||
|
||||
test('getDaysDiffBetweenDates is a Function', () => {
|
||||
test('getDaysDiffBetweenDates is a Function', () => {
|
||||
expect(getDaysDiffBetweenDates).toBeInstanceOf(Function);
|
||||
});
|
||||
test('Returns the difference in days between two dates', () => {
|
||||
expect(getDaysDiffBetweenDates(new Date('2017-12-13'), new Date('2017-12-22'))).toBe(9)
|
||||
test('Returns the difference in days between two dates', () => {
|
||||
expect(getDaysDiffBetweenDates(new Date('2017-12-13'), new Date('2017-12-22'))).toBe(9);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user