(dash_duo)
| 144 | |
| 145 | |
| 146 | def test_rdps002_session_reload(dash_duo): |
| 147 | app = reloadable_app(persistence_type="session") |
| 148 | dash_duo.start_server(app) |
| 149 | check_table_names(dash_duo, ["a", "b"]) |
| 150 | rename_and_hide(dash_duo) |
| 151 | check_table_names(dash_duo, [NEW_NAME]) |
| 152 | |
| 153 | dash_duo.wait_for_page() |
| 154 | # callback gets persisted values, not the values provided with the layout |
| 155 | dash_duo.wait_for_text_to_equal( |
| 156 | "#out", "names: [{}, b]; hidden: [c1]".format(NEW_NAME) |
| 157 | ) |
| 158 | check_table_names(dash_duo, [NEW_NAME]) |
| 159 | |
| 160 | |
| 161 | def test_rdps003_memory_reload(dash_duo): |
nothing calls this directly
no test coverage detected
searching dependent graphs…