We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b45b0a9 commit df215bfCopy full SHA for df215bf
src/test/java/com/flowingcode/vaadin/addons/xterm/integration/ConsoleFeatureIT.java
@@ -64,11 +64,14 @@ public void testFeature() throws InterruptedException {
64
assertThat(cursorPosition(term), is(at(0, y)));
65
66
input.sendKeys("A");
67
- assertThat(currentLine(term), is("ALL"));
+ assertThat(currentLine(term), is("AELL"));
68
69
input.sendKeys(Keys.INSERT, "B");
70
assertThat(currentLine(term), is("ABLL"));
71
72
+ input.sendKeys(Keys.INSERT, "C");
73
+ assertThat(currentLine(term), is("ABCLL"));
74
+
75
// long line
76
77
int cols = getColumnWidth(term);
0 commit comments