Skip to content
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.

Commit

Permalink
chore: Remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
ff6347 committed May 3, 2022
1 parent 29dcb93 commit da2c4f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/__tests__/date-utils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ each([
]).describe("date utils tests", (input, expected) => {
test(`returns ${expected}`, async () => {
const actual = isValidDate(new Date(input));
console.log(new Date(input), actual);
// console.log(new Date(input), actual);
expect(actual).toBe(expected);
});
});

0 comments on commit da2c4f8

Please sign in to comment.