mirror of
https://github.com/denoland/deno.git
synced 2024-11-24 15:19:26 -05:00
test: fix flaky resolve_import_map_flags_take_precedence test (#18182)
Trying to fix https://github.com/denoland/deno/issues/18180
This commit is contained in:
parent
c47075ba4d
commit
6f308b3af0
1 changed files with 1 additions and 1 deletions
|
@ -1247,7 +1247,7 @@ mod test {
|
|||
let config_text = r#"{
|
||||
"importMap": "import_map.json"
|
||||
}"#;
|
||||
let cwd = &PathBuf::from("/");
|
||||
let cwd = &std::env::current_dir().unwrap();
|
||||
let config_specifier =
|
||||
ModuleSpecifier::parse("file:///deno/deno.jsonc").unwrap();
|
||||
let config_file = ConfigFile::new(config_text, &config_specifier).unwrap();
|
||||
|
|
Loading…
Reference in a new issue