diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-04-14 17:56:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-14 21:56:14 +0000 |
commit | f6a28e3e629b5e98905c876f38999107b9ec6ea9 (patch) | |
tree | bc31cadaebad05c10f0a0fa8c2b202d0dae096ae | |
parent | f086ec57b453fc0af763564eb80fea4b5b7f7296 (diff) |
chore: remove node_modules folder being created in testdata directory (#18708)
-rw-r--r-- | cli/tests/integration/npm_tests.rs | 1 | ||||
-rw-r--r-- | cli/tests/testdata/.gitignore | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/integration/npm_tests.rs b/cli/tests/integration/npm_tests.rs index 4c6c217e6..fad79e371 100644 --- a/cli/tests/integration/npm_tests.rs +++ b/cli/tests/integration/npm_tests.rs @@ -665,6 +665,7 @@ itest!(deno_run_cowsay { itest!(deno_run_cowsay_with_node_modules_dir { args: "run -A --quiet --node-modules-dir npm:cowsay@1.5.0 Hello", + temp_cwd: true, output: "npm/deno_run_cowsay.out", envs: env_vars_for_npm_tests_no_sync_download(), http_server: true, diff --git a/cli/tests/testdata/.gitignore b/cli/tests/testdata/.gitignore deleted file mode 100644 index 3c3629e64..000000000 --- a/cli/tests/testdata/.gitignore +++ /dev/null @@ -1 +0,0 @@ -node_modules |