Skip to content

Commit

Permalink
chore: apply ESLint & Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
ninoseki committed Jan 14, 2024
1 parent 9193263 commit a82cb5c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions frontend/tests/utils.spec.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { describe, expect, it } from 'vitest'
import { describe, expect, it } from "vitest"

import { getHumanizedRelativeTime } from '@/utils'
import { getHumanizedRelativeTime } from "@/utils"

describe('getHumanizedRelativeTime', () => {
it('returns a relative time in humanized format', () => {
expect(getHumanizedRelativeTime('1970-01-01 00:00:00')).toContain('years')
describe("getHumanizedRelativeTime", () => {
it("returns a relative time in humanized format", () => {
expect(getHumanizedRelativeTime("1970-01-01 00:00:00")).toContain("years")
})
})

0 comments on commit a82cb5c

Please sign in to comment.