diff --git a/tooling/lsp/src/requests/references.rs b/tooling/lsp/src/requests/references.rs index 375e0b69aed..6326d2d7254 100644 --- a/tooling/lsp/src/requests/references.rs +++ b/tooling/lsp/src/requests/references.rs @@ -94,6 +94,9 @@ mod references_tests { check_references_succeeds("rename_function", "another_function", 0, false).await; } + // Ignored because making this works slows down everything, so for now things will not work + // as ideally, but they'll be fast. + #[ignore] #[test] async fn test_on_references_request_works_accross_workspace_packages() { let (mut state, noir_text_document) = test_utils::init_lsp_server("workspace").await;