diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-05-02 17:08:02 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-02 17:08:02 -0400 |
commit | e4354ce73984668d7a057e1b6f591dd566209369 (patch) | |
tree | 9abb1dd7d5d223c2eda6ea5ce89499536961b37a /tools/unit_tests.py | |
parent | 48bcfce09e11901244447617be2eb7789427eab0 (diff) |
Re-enable networking unit tests (#2268)
The following tests were commented out in order to get this to go green :
- bodyMultipartFormData
- bodyURLEncodedFormData
- fetchRequestInitStringBody
- netConcurrentAccept
- netListenAsyncIterator
Diffstat (limited to 'tools/unit_tests.py')
-rwxr-xr-x | tools/unit_tests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/unit_tests.py b/tools/unit_tests.py index 9b0ad98ce..abc9baf06 100755 --- a/tools/unit_tests.py +++ b/tools/unit_tests.py @@ -48,6 +48,7 @@ def unit_tests(deno_exe): run_unit_test(deno_exe, "permR0W0N0E0U0H0", ["--reload"]) run_unit_test(deno_exe, "permR1W0N0E0U0H0", ["--allow-read"]) run_unit_test(deno_exe, "permR0W1N0E0U0H0", ["--allow-write"]) + run_unit_test(deno_exe, "permR0W0N1E0U0H0", ["--allow-net"]) run_unit_test(deno_exe, "permR1W1N0E0U0H0", ["--allow-read", "--allow-write"]) run_unit_test(deno_exe, "permR0W0N0E1U0H0", ["--allow-env"]) |