Skip to content

Instantly share code, notes, and snippets.

@ricca509
Created February 20, 2017 22:54
Show Gist options
  • Save ricca509/15c35d079acfbd86e92a4d87bcb32cde to your computer and use it in GitHub Desktop.
Save ricca509/15c35d079acfbd86e92a4d87bcb32cde to your computer and use it in GitHub Desktop.
snapshot-function-test
import { parseDate } from '..';
describe('parseDate', () => {
it('parses a Date object', () => {
const expectedResult = {
day: 13,
month: 2,
year: 2017
};
const result = parseDate(2017, 1, 13);
expect(result).toEqual(expectedResult);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment