--- /dev/null
+######################################################################
+# Test Mode: Enable Action
+######################################################################
+
+- alias: "Modalità Test: Azione on"
+ initial_state: 'on'
+
+ trigger:
+ - platform: state
+ entity_id: input_boolean.test_mode
+ to: 'on'
+
+ action:\r
+
+ - service: automation.turn_off
+ entity_id: automation.startup_restart_on_error
+
+ - service: automation.turn_off
+ entity_id: automation.startup_google_sync
+
+######################################################################
+# Test Mode: Disable Action
+######################################################################
+
+- alias: "Modalità Test: Azione off"
+ initial_state: 'on'
+
+ trigger:
+ - platform: state
+ entity_id: input_boolean.test_mode
+ to: 'off'
+
+ action:
+ - service: automation.turn_on
+ entity_id: automation.startup_restart_on_error
+
+ - service: automation.turn_on
+ entity_id: automation.startup_google_sync