refactor: quality workflow, docs, tests

This commit is contained in:
Esdras Renan 2025-10-16 19:14:46 -03:00
parent a9caf36b01
commit 68ace0a858
27 changed files with 758 additions and 330 deletions

View file

@ -1,5 +1,5 @@
import { describe, expect, it } from "vitest"
import { dateKeyTZ, getTZParts, isAtHourTZ } from "@/lib/time"
import { dateKeyTZ, isAtHourTZ } from "@/lib/time"
describe("time tz helpers", () => {
it("computes date key in timezone", () => {
@ -14,4 +14,3 @@ describe("time tz helpers", () => {
expect(isAtHourTZ(d, "America/Sao_Paulo", 8)).toBe(true)
})
})