mirror of
https://github.com/microsoft/vscode.git
synced 2026-08-19 22:42:35 +01:00
adding one more test
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user