diff --git a/lib/tags.test.ts b/lib/tags.test.ts index fd4b6c9..62261fa 100644 --- a/lib/tags.test.ts +++ b/lib/tags.test.ts @@ -18,3 +18,10 @@ import { tags } from "./tags" ariaBusy satisfies never } } + +// StrictARIA should be correctly defined +{ + tags.div().ariaBusy("true") + /// @ts-expect-error Unknown value + tags.div().ariaBusy("abc") +}