adding one more test

This commit is contained in:
Aiday Marlen Kyzy 2024-03-20 17:57:12 +01:00
parent 5cc65d29ab
commit 997fa7f0d3
No known key found for this signature in database
GPG key ID: 24A8B53DBD26FF4E

View file

@ -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