diff --git a/backend/test-runner.js b/backend/test-runner.js index 01962c7..25f6dc5 100644 --- a/backend/test-runner.js +++ b/backend/test-runner.js @@ -135,9 +135,9 @@ class Test { case "repl": await this.testRepl(); break; - case "runrepl": - await this.testRunRepl(); - break; + // case "runrepl": + // await this.testRunRepl(); + // break; case "scope": await this.testScope(); break; diff --git a/langs/elixir.yaml b/langs/elixir.yaml index c268610..75e36f8 100644 --- a/langs/elixir.yaml +++ b/langs/elixir.yaml @@ -17,6 +17,12 @@ install: unzip -d "${pkg}/opt/elixir-ls" elixir-ls.zip ln -s /opt/elixir-ls/language_server.sh "${pkg}/usr/local/bin/elixir-ls" +repl: | + iex +input: | + DELAY: 1 + 123 * 234 + main: "main.exs" template: | IO.puts("Hello, world!")