(props=dict(), data_fn=generate_mock_data)
| 10 | |
| 11 | |
| 12 | def get_app(props=dict(), data_fn=generate_mock_data): |
| 13 | app = dash.Dash(__name__) |
| 14 | |
| 15 | baseProps = get_props(data_fn=data_fn) |
| 16 | |
| 17 | baseProps.update(props) |
| 18 | |
| 19 | app.layout = DataTable(**baseProps) |
| 20 | |
| 21 | return app |
| 22 | |
| 23 | |
| 24 | @pytest.mark.parametrize("props", basic_modes) |
no test coverage detected
searching dependent graphs…