diff --git a/test/service/handler.py b/test/service/handler.py index d3a451c..3482e37 100644 --- a/test/service/handler.py +++ b/test/service/handler.py @@ -3,7 +3,7 @@ import sys import subprocess import traceback -TARGET_LANGUAGE = set(["python", "cpp", "go", "node", "rust"]) +TARGET_LANGUAGE = set(["python", "cpp", "go", "rust"]) PROJECT_PATH = "/home/rocker/project" def go_handler(): @@ -69,6 +69,8 @@ def main(): elif language == "rust": err, main_path = rust_handler() cmd.extend([main_path]) + elif language == "javascript": + node_handler() else: ...