fix: adding break when the action is test

This commit is contained in:
Eury Sosa Garcia 2026-01-29 09:26:31 -04:00 committed by GitHub
parent 11bd084933
commit c33ec690eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -116,6 +116,7 @@ switch(action) {
break; break;
case "test": case "test":
script = "test" script = "test"
break;
default: default:
script = null script = null
} }