Skip to content

Commit

Permalink
Fix incorrectly written test
Browse files Browse the repository at this point in the history
  • Loading branch information
felixhabib committed Mar 6, 2024
1 parent 54100c1 commit 3343d81
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cypress/e2e/keymaps.cy.js
Expand Up @@ -417,8 +417,8 @@ describe('Keymaps', () => {
typeCode('c');

assertCodePaneContains(dedent`
c<span>First line</span>
<span>Second line</span>
<span>First line</span>
<span>Second line</spanc>
<span>Third line</span>
`);
});
Expand Down Expand Up @@ -457,7 +457,7 @@ describe('Keymaps', () => {
`);
});

it.only('should jump to line number correctly', () => {
it('should jump to line number correctly', () => {
const line = 6;
jumpToLine(line);

Expand Down

0 comments on commit 3343d81

Please sign in to comment.