summaryrefslogtreecommitdiff
path: root/apps/installer
diff options
context:
space:
mode:
Diffstat (limited to 'apps/installer')
-rw-r--r--apps/installer/main.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/installer/main.sh b/apps/installer/main.sh
index b0772f76cf..fea9dc3acf 100644
--- a/apps/installer/main.sh
+++ b/apps/installer/main.sh
@@ -41,6 +41,7 @@ menu_items=(
"client-data|gd|download client data from github repository (beta)"
"run-worldserver|rw|execute a simple restarter for worldserver"
"run-authserver|ra|execute a simple restarter for authserver"
+ "test|t|Run test framework"
"docker|dr|Run docker tools"
"version|v|Show AzerothCore version"
"service-manager|sm|Run service manager to run authserver and worldserver in background"
@@ -84,6 +85,9 @@ function handle_menu_command() {
"run-authserver")
inst_simple_restarter authserver
;;
+ "test")
+ bash "$AC_PATH_APPS/test-framework/test-main.sh" "$@"
+ ;;
"docker")
DOCKER=1 bash "$AC_PATH_ROOT/apps/docker/docker-cmd.sh" "$@"
exit