helix: Uncomment one test (#36328)
There are two tests commented out in the helix file, but one of them works again. I don't know if this is too little a change to be merged, but I wanted to suggest it. The other test might be more complicated though, so I didn't touch it. Release Notes: - N/A
This commit is contained in:
parent
e092aed253
commit
1af47a563f
1 changed files with 18 additions and 18 deletions
|
@ -547,27 +547,27 @@ mod test {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// #[gpui::test]
|
#[gpui::test]
|
||||||
// async fn test_delete_character_end_of_line(cx: &mut gpui::TestAppContext) {
|
async fn test_delete_character_end_of_line(cx: &mut gpui::TestAppContext) {
|
||||||
// let mut cx = VimTestContext::new(cx, true).await;
|
let mut cx = VimTestContext::new(cx, true).await;
|
||||||
|
|
||||||
// cx.set_state(
|
cx.set_state(
|
||||||
// indoc! {"
|
indoc! {"
|
||||||
// The quick brownˇ
|
The quick brownˇ
|
||||||
// fox jumps over
|
fox jumps over
|
||||||
// the lazy dog."},
|
the lazy dog."},
|
||||||
// Mode::HelixNormal,
|
Mode::HelixNormal,
|
||||||
// );
|
);
|
||||||
|
|
||||||
// cx.simulate_keystrokes("d");
|
cx.simulate_keystrokes("d");
|
||||||
|
|
||||||
// cx.assert_state(
|
cx.assert_state(
|
||||||
// indoc! {"
|
indoc! {"
|
||||||
// The quick brownˇfox jumps over
|
The quick brownˇfox jumps over
|
||||||
// the lazy dog."},
|
the lazy dog."},
|
||||||
// Mode::HelixNormal,
|
Mode::HelixNormal,
|
||||||
// );
|
);
|
||||||
// }
|
}
|
||||||
|
|
||||||
// #[gpui::test]
|
// #[gpui::test]
|
||||||
// async fn test_delete_character_end_of_buffer(cx: &mut gpui::TestAppContext) {
|
// async fn test_delete_character_end_of_buffer(cx: &mut gpui::TestAppContext) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue