dayjs.spec.ts 374 B

123456789101112
  1. import { faker } from "@faker-js/faker";
  2. import dayjs from "@/dayjs";
  3. describe("dayjs formatDuration plugin", () => {
  4. test("value < 1 hour displays minutes and seconds", () => {
  5. dayjs.duration(faker.number.int({ max: 359 }), "s");
  6. });
  7. test("value >= 1 hour displays hours, minutes and seconds", () => {
  8. dayjs.duration(faker.number.int({ min: 360 }), "s");
  9. });
  10. });