Skip to content

Commit

Permalink
fix prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
youngbryanyu committed Jan 16, 2024
1 parent 9774cd2 commit c04c8cc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/utils/typeConverter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@ describe('Type Converter Util Tests', () => {
expect(result instanceof Date).toBeTruthy();
expect(result.getUTCFullYear()).toBe(1969);
expect(result.getUTCMonth()).toBe(11); // Note: Months are 0-indexed in JavaScript Dates
expect(result.getUTCDate()).toBe(31)});
expect(result.getUTCDate()).toBe(31);
});

/* Test when converting to a Date is not possible */
it('Should throw an error if the input cannot be converted to a Date.', () => {
Expand Down

0 comments on commit c04c8cc

Please sign in to comment.