diff options
Diffstat (limited to 'cli')
-rw-r--r-- | cli/diagnostics.rs | 1 | ||||
-rw-r--r-- | cli/tests/integration_tests.rs | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/cli/diagnostics.rs b/cli/diagnostics.rs index 083c11bf5..06fc585bb 100644 --- a/cli/diagnostics.rs +++ b/cli/diagnostics.rs @@ -77,6 +77,7 @@ const UNSTABLE_DENO_PROPS: &[&str] = &[ "startTls", "symlink", "symlinkSync", + "systemMemoryInfo", "transpileOnly", "umask", "utime", diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index ec13f7380..23c44ba89 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -444,7 +444,9 @@ fn upgrade_with_space_in_path() { } // Warning: this test requires internet access. +// TODO(#7412): reenable. test is flaky #[test] +#[ignore] fn upgrade_with_version_in_tmpdir() { let temp_dir = TempDir::new().unwrap(); let exe_path = temp_dir.path().join("deno"); |