mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-09-26 13:17:15 -05:00
13 lines
396 B
TypeScript
13 lines
396 B
TypeScript
import { describe, test } from "vitest";
|
|
import { assertRoundTrips } from "~/modules/search-params/search-params-test-utils";
|
|
import { scheduleWeekSearchParams } from "./availability-search-params";
|
|
|
|
describe("scheduleWeekSearchParams", () => {
|
|
test("round-trips", () => {
|
|
assertRoundTrips(scheduleWeekSearchParams, {
|
|
week: ["current", "next"],
|
|
view: ["heatmap", "grid"],
|
|
});
|
|
});
|
|
});
|