Triggering Lifecycle events from FuseTools.

Is it possible to debug/trigger Lifecycle events from the FuseTools IDE?

Could you please explain exactly what you’re looking for by giving an example of what you want to do?

I would like to see if the logic placed inside the LifeCycle event is actually being run as intended without having to run the app on a mobile phone.

i.e.

Lifecycle.on("enteringInteractive", function() {
            console.log("Entering interactive mode");
            PushService.clearAllNotifications();
            Device.touchPushIdentifier();
            Device.doEnteringFunctionality();
});

The answer to that is “no”. Local preview runs on Desktop target and it does not emulate neither iOS nor Android. You need to test these on target devices (or emulators/simulators).