Skip to content

Commit

Permalink
added test for data page
Browse files Browse the repository at this point in the history
  • Loading branch information
ullmannJan committed Aug 12, 2024
1 parent 8604f37 commit afcbeaa
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tests/test_measury.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,13 @@ def test_settings_page():
app.main_window.open_settings_page()
app.vispy_app.process_events()
app.close()

def test_data_page():

app = App(file_path=Path(__file__).parent/"test_data"/test_files[-1])
app.run(run_vispy=False)
app.vispy_app.process_events()
app.main_window.open_data_page()
app.vispy_app.process_events()
app.close()

0 comments on commit afcbeaa

Please sign in to comment.