
* add more tests * add tests to raise coverage * more tests, bump coverage to 73 * fix up icon_button test * fix darglint for app.py * fix utcnow usage warning * set threshold to 72 * fix timestamp * fix unit tests for linux-redis * removed commented code and put a TODO
7 lines
179 B
Python
7 lines
179 B
Python
from reflex.components.radix.themes.layout.base import LayoutComponent
|
|
|
|
|
|
def test_layout_component():
|
|
lc = LayoutComponent.create()
|
|
assert isinstance(lc, LayoutComponent)
|