mirror of
https://github.com/zhigang1992/nativewind.git
synced 2026-06-13 01:18:18 +08:00
14 lines
255 B
TypeScript
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",
|
|
])
|
|
);
|