re-frame

olli 2026-06-05T13:51:45.205829Z

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?

rolt 2026-06-05T14:29:42.566179Z

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)

rolt 2026-06-05T14:30:24.159199Z

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

olli 2026-06-05T15:22:02.251579Z

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