Files
nativewind/__tests__/tailwindcss/background-repeat.ts
2022-05-03 18:40:33 +10:00

14 lines
255 B
TypeScript

import { expectError, tailwindRunner } from "./runner";
tailwindRunner(
"Backgrounds - Background Repeat",
expectError([
"bg-repeat",
"bg-no-repeat",
"bg-repeat-x",
"bg-repeat-y",
"bg-repeat-round",
"bg-repeat-space",
])
);