Adjust default config for slow-tests

This commit is contained in:
Lukas Wirth 2023-04-04 19:02:10 +02:00
parent af0d548b66
commit 1d085cf03b
2 changed files with 5 additions and 7 deletions

View file

@ -60,9 +60,6 @@ use std::collections::Spam;
)
.with_config(serde_json::json!({
"cargo": { "sysroot": "discover" },
"procMacro": {
"enable": false,
}
}))
.server()
.wait_until_workspace_is_loaded();
@ -616,9 +613,6 @@ fn main() {{}}
))
.with_config(serde_json::json!({
"cargo": { "sysroot": "discover" },
"procMacro": {
"enable": false,
}
}))
.server()
.wait_until_workspace_is_loaded();

View file

@ -37,8 +37,12 @@ impl<'a> Project<'a> {
"sysroot": null,
// Can't use test binary as rustc wrapper.
"buildScripts": {
"useRustcWrapper": false
"useRustcWrapper": false,
"enable": false,
},
},
"procMacro": {
"enable": false,
}
}),
}