mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-07 11:11:30 +00:00
Uncomment hover popover tests
This commit is contained in:
parent
1e6214440d
commit
8c53f1b9c2
1 changed files with 100 additions and 100 deletions
|
@ -868,8 +868,9 @@ mod tests {
|
||||||
fn test_render_blocks(cx: &mut gpui::TestAppContext) {
|
fn test_render_blocks(cx: &mut gpui::TestAppContext) {
|
||||||
init_test(cx, |_| {});
|
init_test(cx, |_| {});
|
||||||
|
|
||||||
cx.add_window(|cx| {
|
let editor = cx.add_window(|cx| Editor::single_line(cx));
|
||||||
let editor = Editor::single_line(cx);
|
editor
|
||||||
|
.update(cx, |editor, cx| {
|
||||||
let style = editor.style.clone().unwrap();
|
let style = editor.style.clone().unwrap();
|
||||||
|
|
||||||
struct Row {
|
struct Row {
|
||||||
|
@ -1005,9 +1006,8 @@ mod tests {
|
||||||
"wrong highlights for input {blocks:?}"
|
"wrong highlights for input {blocks:?}"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
})
|
||||||
editor
|
.unwrap();
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[gpui::test]
|
#[gpui::test]
|
||||||
|
|
Loading…
Reference in a new issue