
* 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
16 lines
248 B
Python
16 lines
248 B
Python
from reflex.compiler.utils import get_asset_path
|
|
|
|
|
|
def TestState(State):
|
|
pass
|
|
|
|
|
|
def test_compile_state():
|
|
# TODO: Implement test for compile_state function.
|
|
pass
|
|
|
|
|
|
def test_get_assets_path():
|
|
path = get_asset_path()
|
|
assert path
|