reflex/tests/benchmarks/test_evaluate.py
Thomas Brandého d0199a326f
move benchmarks and add some more (#4758)
* move benchmarks and add some more

* change key and paths

* parametrize tests

* more specific ignore

* rename fixture

* remove previous file

* add tests for _compile_stateful_components
2025-02-05 13:19:45 -08:00

10 lines
203 B
Python

import pytest
from .fixtures import _complicated_page, _simple_page
@pytest.mark.benchmark
@pytest.mark.parametrize("page", [_simple_page, _complicated_page])
def test_evaluate_page(page):
page()