Skip to content

Commit

Permalink
test: tweaks date test
Browse files Browse the repository at this point in the history
  • Loading branch information
justin-schroeder committed Mar 18, 2024
1 parent 5c76a0c commit 211024a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/__tests__/date.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ describe("date", () => {
expect(date("2022-01-22T00:00-0300").toISOString()).toBe(
"2022-01-22T03:00:00.000Z"
)
expect(date("2022-01-22T00:00-03:00").toISOString()).toBe(
"2022-01-22T03:00:00.000Z"
expect(date("2022-01-22T00:00-03:24").toISOString()).toBe(
"2022-01-22T03:24:00.000Z"
)
})
})

0 comments on commit 211024a

Please sign in to comment.