First pass at HTTP imports

Implement --reload

Integrate hyper errors into DenoError

In collaboration with Tommy Savaria <tommy.savaria@protonmail.ch>
This commit is contained in:
Ryan Dahl 2018-08-14 16:50:53 -04:00
parent 242e68e50c
commit e2f9b0e6fd
8 changed files with 198 additions and 52 deletions

View file

@ -26,7 +26,7 @@ def check_output_test(deno_exe_filename):
out_abs = os.path.join(tests_path, out_filename)
with open(out_abs, 'r') as f:
expected_out = f.read()
cmd = [deno_exe_filename, script_abs]
cmd = [deno_exe_filename, script_abs, "--reload"]
expected_code = parse_exit_code(script)
print " ".join(cmd)
actual_code = 0