mirror of
https://github.com/denoland/deno.git
synced 2024-12-01 16:51:13 -05:00
chore: add systemMemoryInfo unstable diagnostic (#7435)
This commit is contained in:
parent
95db324748
commit
d048f58f05
2 changed files with 3 additions and 0 deletions
|
@ -77,6 +77,7 @@ const UNSTABLE_DENO_PROPS: &[&str] = &[
|
||||||
"startTls",
|
"startTls",
|
||||||
"symlink",
|
"symlink",
|
||||||
"symlinkSync",
|
"symlinkSync",
|
||||||
|
"systemMemoryInfo",
|
||||||
"transpileOnly",
|
"transpileOnly",
|
||||||
"umask",
|
"umask",
|
||||||
"utime",
|
"utime",
|
||||||
|
|
|
@ -444,7 +444,9 @@ fn upgrade_with_space_in_path() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Warning: this test requires internet access.
|
// Warning: this test requires internet access.
|
||||||
|
// TODO(#7412): reenable. test is flaky
|
||||||
#[test]
|
#[test]
|
||||||
|
#[ignore]
|
||||||
fn upgrade_with_version_in_tmpdir() {
|
fn upgrade_with_version_in_tmpdir() {
|
||||||
let temp_dir = TempDir::new().unwrap();
|
let temp_dir = TempDir::new().unwrap();
|
||||||
let exe_path = temp_dir.path().join("deno");
|
let exe_path = temp_dir.path().join("deno");
|
||||||
|
|
Loading…
Reference in a new issue