Pass a reference to TestAppContext
in tests
This allows us to drop the context *after* we ran all futures to completion and that's crucial otherwise we'll never drop entities and/or flush effects.
This commit is contained in:
parent
8390f04e7d
commit
466db69780
20 changed files with 748 additions and 819 deletions
|
@ -725,7 +725,7 @@ mod tests {
|
|||
use workspace::WorkspaceParams;
|
||||
|
||||
#[gpui::test]
|
||||
async fn test_diagnostics(mut cx: TestAppContext) {
|
||||
async fn test_diagnostics(cx: &mut TestAppContext) {
|
||||
let params = cx.update(WorkspaceParams::test);
|
||||
let project = params.project.clone();
|
||||
let workspace = cx.add_view(0, |cx| Workspace::new(¶ms, cx));
|
||||
|
@ -760,14 +760,14 @@ mod tests {
|
|||
.await;
|
||||
|
||||
project
|
||||
.update(&mut cx, |project, cx| {
|
||||
.update(cx, |project, cx| {
|
||||
project.find_or_create_local_worktree("/test", false, cx)
|
||||
})
|
||||
.await
|
||||
.unwrap();
|
||||
|
||||
// Create some diagnostics
|
||||
project.update(&mut cx, |project, cx| {
|
||||
project.update(cx, |project, cx| {
|
||||
project
|
||||
.update_diagnostic_entries(
|
||||
PathBuf::from("/test/main.rs"),
|
||||
|
@ -856,7 +856,7 @@ mod tests {
|
|||
});
|
||||
|
||||
view.next_notification(&cx).await;
|
||||
view.update(&mut cx, |view, cx| {
|
||||
view.update(cx, |view, cx| {
|
||||
let editor = view.editor.update(cx, |editor, cx| editor.snapshot(cx));
|
||||
|
||||
assert_eq!(
|
||||
|
@ -920,7 +920,7 @@ mod tests {
|
|||
});
|
||||
|
||||
// Diagnostics are added for another earlier path.
|
||||
project.update(&mut cx, |project, cx| {
|
||||
project.update(cx, |project, cx| {
|
||||
project.disk_based_diagnostics_started(cx);
|
||||
project
|
||||
.update_diagnostic_entries(
|
||||
|
@ -944,7 +944,7 @@ mod tests {
|
|||
});
|
||||
|
||||
view.next_notification(&cx).await;
|
||||
view.update(&mut cx, |view, cx| {
|
||||
view.update(cx, |view, cx| {
|
||||
let editor = view.editor.update(cx, |editor, cx| editor.snapshot(cx));
|
||||
|
||||
assert_eq!(
|
||||
|
@ -1021,7 +1021,7 @@ mod tests {
|
|||
});
|
||||
|
||||
// Diagnostics are added to the first path
|
||||
project.update(&mut cx, |project, cx| {
|
||||
project.update(cx, |project, cx| {
|
||||
project.disk_based_diagnostics_started(cx);
|
||||
project
|
||||
.update_diagnostic_entries(
|
||||
|
@ -1059,7 +1059,7 @@ mod tests {
|
|||
});
|
||||
|
||||
view.next_notification(&cx).await;
|
||||
view.update(&mut cx, |view, cx| {
|
||||
view.update(cx, |view, cx| {
|
||||
let editor = view.editor.update(cx, |editor, cx| editor.snapshot(cx));
|
||||
|
||||
assert_eq!(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue