9 lines
329 B
TypeScript
9 lines
329 B
TypeScript
import { describe, expect, test } from "bun:test"
|
|
import { footerWidthPolicy } from "../../src/mini/footer.width"
|
|
|
|
describe("run footer width", () => {
|
|
test("preserves the dialog breakpoint", () => {
|
|
expect(footerWidthPolicy(79).dialog.narrow).toBe(true)
|
|
expect(footerWidthPolicy(80).dialog.narrow).toBe(false)
|
|
})
|
|
})
|