diff options
Diffstat (limited to 'cli/tools')
-rw-r--r-- | cli/tools/coverage.rs | 1 | ||||
-rw-r--r-- | cli/tools/doc.rs | 1 | ||||
-rw-r--r-- | cli/tools/test_runner.rs | 2 |
3 files changed, 4 insertions, 0 deletions
diff --git a/cli/tools/coverage.rs b/cli/tools/coverage.rs index 9a197eabd..23b4a4fb6 100644 --- a/cli/tools/coverage.rs +++ b/cli/tools/coverage.rs @@ -635,6 +635,7 @@ pub async fn cover_files( module_specifier.clone(), TypeLib::UnstableDenoWindow, Permissions::allow_all(), + Permissions::allow_all(), false, program_state.maybe_import_map.clone(), ) diff --git a/cli/tools/doc.rs b/cli/tools/doc.rs index 938944f2a..5794b494f 100644 --- a/cli/tools/doc.rs +++ b/cli/tools/doc.rs @@ -117,6 +117,7 @@ pub async fn print_docs( let handler = Arc::new(Mutex::new(FetchHandler::new( &program_state, Permissions::allow_all(), + Permissions::allow_all(), )?)); let mut builder = module_graph::GraphBuilder::new( handler, diff --git a/cli/tools/test_runner.rs b/cli/tools/test_runner.rs index fdb4be664..6b2eab36b 100644 --- a/cli/tools/test_runner.rs +++ b/cli/tools/test_runner.rs @@ -403,6 +403,7 @@ pub async fn run_tests( .prepare_module_graph( test_programs.clone(), lib.clone(), + Permissions::allow_all(), permissions.clone(), program_state.maybe_import_map.clone(), ) @@ -413,6 +414,7 @@ pub async fn run_tests( .prepare_module_graph( test_modules.clone(), lib.clone(), + Permissions::allow_all(), permissions.clone(), program_state.maybe_import_map.clone(), ) |