fix tests
This commit is contained in:
parent
ef0bbfb2d9
commit
6d4b4bc17c
@ -526,7 +526,7 @@ def remove_tailwind_from_postcss() -> tuple[str, str]:
|
||||
code = [
|
||||
line
|
||||
for line in Path(output_path).read_text().splitlines(keepends=True)
|
||||
if "tailwindcss: " not in line
|
||||
if "@tailwindcss" not in line
|
||||
]
|
||||
|
||||
# Compile the config.
|
||||
|
@ -10,7 +10,7 @@ from reflex.testing import AppHarness
|
||||
|
||||
PARAGRAPH_TEXT = "Tailwind Is Cool"
|
||||
PARAGRAPH_CLASS_NAME = "text-red-500"
|
||||
TEXT_RED_500_COLOR = ["rgba(239, 68, 68, 1)", "rgb(239, 68, 68)"]
|
||||
TEXT_RED_500_COLOR = ["oklch(0.637 0.237 25.331)"]
|
||||
|
||||
|
||||
def TailwindApp(
|
||||
|
Loading…
Reference in New Issue
Block a user