Files
30-seconds-of-code/test6/tomorrow/tomorrow.test.js
Angelos Chalaris 5afe81452a Migrated tests to jest
Used jest-codemods to migrate, will have to pass everything by hand before we can merge.
2018-06-18 14:18:25 +03:00

14 lines
554 B
JavaScript

const expect = require('expect');
const tomorrow = require('./tomorrow.js');
test('Testing tomorrow', () => {
//For more information on all the methods supported by tape
//Please go to https://github.com/substack/tape
expect(typeof tomorrow === 'function').toBeTruthy();
const t1 = new Date(new Date().getFullYear(), new Date().getMonth(), new Date().getDate() + 1);
const t2 = new Date(tomorrow());
expect(t1.getFullYear()).toBe(t2.getFullYear());
expect(t1.getMonth()).toBe(t2.getMonth());
expect(t1.getDate()).toBe(t2.getDate());
});