fix tests

This commit is contained in:
Khaleel Al-Adhami 2025-02-06 13:36:53 -08:00
parent ef0bbfb2d9
commit 6d4b4bc17c
2 changed files with 2 additions and 2 deletions

View File

@ -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.

View File

@ -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(