when interactor disabled, the render fails too

renderer.addActor(cubeAxes);
const interactor = renderWindow.getInteractor();
interactor.disable();
// start rendering 
render_reset_clipping();
renderWindow.render();

The expected behavior is no response from mouse click or move, but the image should still be rendered. The actual behavior is nothing is rendered on the screen. If I comment out disable() call it renders.

You can instead do renderer.setInteractive(false).