Skip to content

Commit

Permalink
fixing lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
shadowfax92 authored and WuTheFWasThat committed Nov 18, 2018
1 parent b3a9726 commit 48eff37
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/tests/basics.ts
Expand Up @@ -126,18 +126,18 @@ describe('random set of basic tests', function() {
await t.done();
});

it("tests the cursor can move to start and end of line", async function() {
it('tests the cursor can move to start and end of line', async function() {
let t = new TestCase(['012345']);
t.expectCursor(1, 0);
t.sendKeys('$')
t.sendKeys('$');
t.expectCursor(1, 5);
t.sendKeys('^')
t.sendKeys('^');
t.expectCursor(1, 0);
t.sendKeys('end')
t.sendKeys('end');
t.expectCursor(0, 5);
t.sendKeys('home')
t.sendKeys('home');
t.expectCursor(1, 0);
})
});

it("tests the cursor doesn't go before line", async function() {
let t = new TestCase(['blahblah']);
Expand Down

0 comments on commit 48eff37

Please sign in to comment.