Philipp Horstenkamp 96d216fb74
Added a web-frontend to add companies to the search queue. (#375)
This webfrontent adds a company to the search que or resets the search
que entry to be searched again.
This will allow for directed growth or an initiallisation.

---------

Co-authored-by: Tristan Nolde <tristan.nolde@yahoo.de>
2023-11-16 17:24:43 +01:00

14 lines
332 B
Python

"""Tests if the about page can be created."""
from dash import html
from aki_prj23_transparenzregister.ui import app
from aki_prj23_transparenzregister.ui.pages import about
_ = app
def test_layout() -> None:
"""Checks if the about page can be created."""
result = about.layout()
assert isinstance(result, html.Div)