We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b64e5a commit 76eaabfCopy full SHA for 76eaabf
src/tdamapper/_run_app.py
@@ -1,4 +1,4 @@
1
-from tdamapper._app import main
+from tdamapper.app import main
2
3
4
def run():
src/tdamapper/_app.py renamed to src/tdamapper/app.py
tests/test_unit_app.py
@@ -1,15 +1,12 @@
-import sys
-
import pytest
-from nicegui import ui
5
from nicegui.testing import User
6
7
-from tdamapper import _app
+from tdamapper import app
8
9
pytest_plugins = ["nicegui.testing.user_plugin"]
10
11
12
-@pytest.mark.module_under_test(_app)
+@pytest.mark.module_under_test(app)
13
async def test_run_mapper(user: User) -> None:
14
await user.open("/")
15
await user.should_see("Load Data")
0 commit comments