()
| 407 | |
| 408 | |
| 409 | def test_title(): |
| 410 | app = Dash() |
| 411 | assert "<title>Dash</title>" in app.index() |
| 412 | app = Dash() |
| 413 | app.title = "Hello World" |
| 414 | assert "<title>Hello World</title>" in app.index() |
| 415 | app = Dash(title="Custom Title") |
| 416 | assert "<title>Custom Title</title>" in app.index() |
| 417 | |
| 418 | |
| 419 | def test_app_delayed_config(): |