Skip to content

Instantly share code, notes, and snippets.

@Bajena
Created July 10, 2018 20:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Bajena/dd429d3c91d6396999fb95342e0e77b0 to your computer and use it in GitHub Desktop.
Save Bajena/dd429d3c91d6396999fb95342e0e77b0 to your computer and use it in GitHub Desktop.
Simple jest test
const DateUtils = require('../src/DateUtils.js');
test('getDatePart', () => {
const date = new Date('2018-07-09');
expect(DateUtils.getDatePart(date)).toBe('2018-07-09');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment