re-frame 2026-06-05

Is there a preferred way to hide the re-frame-10x panel programmatically during browser tests? Seems like executing _frame_10x.show_panel_BANG_(false) in the browser (js) works?

Why do you need to do that programmatically ? I just hide it by default with :closure-defines (and I don't even load 10x in ci)

your method works and is documented so it's definitely valid

Ok thanks! This is for developing the browser tests locally. In CI we run them with production build settings, without 10x. Basically I want to develop the tests while having any changes to application code hot-reloaded into the test browser instance, in the spirit of repl-driven development