(value)
| 17 | |
| 18 | @app.callback(Output("output", "children"), [Input("input", "value")]) |
| 19 | def update_output(value): |
| 20 | callback_context.response.set_cookie("dash_cookie", value + " - cookie") |
| 21 | return value + " - output" |
| 22 | |
| 23 | dash_duo.start_server(app) |
| 24 | dash_duo.wait_for_text_to_equal("#output", "ab - output") |
nothing calls this directly
no test coverage detected
searching dependent graphs…