diff options
Diffstat (limited to 'tests/integration')
-rw-r--r-- | tests/integration/run_tests.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/integration/run_tests.rs b/tests/integration/run_tests.rs index db9f79556..a07dd56c8 100644 --- a/tests/integration/run_tests.rs +++ b/tests/integration/run_tests.rs @@ -3605,7 +3605,8 @@ fn running_declaration_files() { temp_dir.write(file, ""); context .new_command() - .args_vec(["run", file]) + // todo(dsherret): investigate why --allow-read is required here + .args_vec(["run", "--allow-read", file]) .run() .skip_output_check() .assert_exit_code(0); |