diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-02-21 10:35:41 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-21 10:35:41 -0500 |
commit | d9efb8c02a0036d755c35e8e9c88d58bd45a9e2b (patch) | |
tree | 2ebce022c1c8b286cfb31845f145d8249f7b395e /cli/js/unit_tests.ts | |
parent | 6dd964384509e71598d08ae09c59f5f2c035a135 (diff) |
fix: add io ops to worker to fix fetch (#4054)
Diffstat (limited to 'cli/js/unit_tests.ts')
-rw-r--r-- | cli/js/unit_tests.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cli/js/unit_tests.ts b/cli/js/unit_tests.ts index c43abaa5c..0bdd17964 100644 --- a/cli/js/unit_tests.ts +++ b/cli/js/unit_tests.ts @@ -57,10 +57,14 @@ import "./url_search_params_test.ts"; import "./utime_test.ts"; import "./write_file_test.ts"; import "./performance_test.ts"; -import "./permissions_test.ts"; import "./version_test.ts"; import "./workers_test.ts"; +// FIXME(bartlomieju): +// This test file revokes permissions, it must be run last, +// otherwise it might revoke permission for tests that need them. +import "./permissions_test.ts"; + if (import.meta.main) { await Deno.runTests(); } |