Skip to content

Commit

Permalink
Merge pull request #2152 from VSCodeVim/test
Browse files Browse the repository at this point in the history
fix(1673): re-enable some tests
  • Loading branch information
jpoon committed Nov 15, 2017
2 parents 17f51a3 + 6609c28 commit 9534e5c
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 9534e5c

Please sign in to comment.