mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 01:37:20 +00:00
adding one more test
This commit is contained in:
parent
5cc65d29ab
commit
997fa7f0d3
1 changed files with 25 additions and 0 deletions
|
@ -565,6 +565,31 @@ suite('`Full` Auto Indent On Type - TypeScript/JavaScript', () => {
|
|||
});
|
||||
});
|
||||
|
||||
test.skip('issue #208215: outdented after semicolon detected after arrow function', () => {
|
||||
|
||||
// Notes: we want to outdent after having detected a semi-colon which marks the end of the line, but only when we have detected an arrow function
|
||||
// We want to have one outdent pattern corresponding to an indent pattern, and not a generic outdent and indent pattern
|
||||
|
||||
const model = createTextModel([
|
||||
'const add1 = (n) =>',
|
||||
' console.log("hi");',
|
||||
].join('\n'), languageId, {});
|
||||
disposables.add(model);
|
||||
|
||||
withTestCodeEditor(model, { autoIndent: "full" }, (editor, viewModel, instantiationService) => {
|
||||
|
||||
registerLanguage(instantiationService, languageId, Language.TypeScript, disposables);
|
||||
|
||||
editor.setSelection(new Selection(2, 24, 2, 24));
|
||||
viewModel.type("\n", 'keyboard');
|
||||
assert.strictEqual(model.getValue(), [
|
||||
'const add1 = (n) =>',
|
||||
' console.log("hi");',
|
||||
'',
|
||||
].join('\n'));
|
||||
});
|
||||
});
|
||||
|
||||
test.skip('issue #116843: indent after arrow function', () => {
|
||||
|
||||
// https://github.com/microsoft/vscode/issues/116843
|
||||
|
|
Loading…
Reference in a new issue