1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
This commit is contained in:
Kitson Kelly 2022-01-17 12:29:17 +11:00
parent bac55fa82f
commit d621068901
No known key found for this signature in database
GPG key ID: 2D87CFF11B51960A

View file

@ -1550,7 +1550,7 @@ fn lsp_format_exclude_default_config() {
serde_json::from_value(load_fixture("initialize_params.json")).unwrap();
let deno_jsonc =
serde_json::to_vec_pretty(&load_fixture("deno.fmt.exclude.jsonc")).unwrap();
fs::write(workspace_root.clone().join("deno.jsonc"), deno_jsonc).unwrap();
fs::write(workspace_root.join("deno.jsonc"), deno_jsonc).unwrap();
params.root_uri = Some(Url::from_file_path(workspace_root.clone()).unwrap());