Skip to content

Commit

Permalink
fix(1673): re-enable some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jpoon committed Nov 15, 2017
1 parent 17f51a3 commit 6609c28
Showing 1 changed file with 9 additions and 15 deletions.
24 changes: 9 additions & 15 deletions test/mode/modeNormal.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1780,21 +1780,15 @@ suite('Mode Normal', () => {
end: ['test aaa test aaa test aaa test| '],
});

/*
Disabling test until upstream VSCode issue is resolved: https://github.com/Microsoft/vscode/issues/26274
newTest({
title: "Can 'D'elete the characters under multiple cursors until the end of the line",
start: [
'test aaa test aaa test aaa test |aaa test',
'test aaa test aaa test aaa test aaa test'
],
keysPressed: '<C-alt+down>D<Esc>',
end: [
'test aaa test aaa test aaa tes|t ',
'test aaa test aaa test aaa test '
]
});
*/
newTest({
title: "Can 'D'elete the characters under multiple cursors until the end of the line",
start: [
'test aaa test aaa test aaa test |aaa test',
'test aaa test aaa test aaa test aaa test',
],
keysPressed: '<C-alt+down>D<Esc>',
end: ['test aaa test aaa test aaa tes|t ', 'test aaa test aaa test aaa test '],
});

newTest({
title: 'cc on whitespace-only line clears line',
Expand Down

0 comments on commit 6609c28

Please sign in to comment.