2026-06-07 21:26:14 +00:00
|
|
|
import { describe, expect, test } from "bun:test"
|
2026-07-19 12:12:22 +00:00
|
|
|
import { footerWidthPolicy } from "../../src/mini/footer.width"
|
2026-06-07 21:26:14 +00:00
|
|
|
|
|
|
|
|
describe("run footer width", () => {
|
2026-07-24 08:54:30 +00:00
|
|
|
test("preserves the dialog breakpoint", () => {
|
|
|
|
|
expect(footerWidthPolicy(79).dialog.narrow).toBe(true)
|
|
|
|
|
expect(footerWidthPolicy(80).dialog.narrow).toBe(false)
|
2026-06-07 21:26:14 +00:00
|
|
|
})
|
|
|
|
|
})
|