diff --git a/console/tests b/console/tests index 0a0ccc750..10dc42fee 100755 --- a/console/tests +++ b/console/tests @@ -3,9 +3,9 @@ ( export DRASH_PROCESS="test" export DRASH_ROOT_DIR=$PWD - deno --allow-net --allow-read --allow-write --allow-env tests/test.ts - cd example_app - deno --allow-net --allow-read --allow-write --allow-env app_test.ts - deno --allow-net --allow-read --allow-write --allow-env app_two_test.ts - cd - + deno --allow-net --allow-read --allow-write --allow-env tests/test.ts \ + && cd example_app \ + && deno --allow-net --allow-read --allow-write --allow-env app_test.ts \ + && deno --allow-net --allow-read --allow-write --allow-env app_two_test.ts \ + && cd - )