Test for an Dash application

Hello, I have created an application that serves as the frontend only, it has callback that has route methods calling API application.

I want to write tests for my UI application and I am thinking what would be the best approach here? I would love to bounce ideas on how would you write test cases for an application like that? Its folder structure is as follows;

ui/

├── app/

│   ├── components/

│   ├── callbacks/

│   ├── pages/

├── tests/

Hello @hqur,

You can write dash duo tests and point it to a url instead of a local running app.

1 Like

More about dash testing here:

To see some example use cases, take a look at dash-ag-grid and dash-mantine-components GitHub

1 Like