diff --git a/src/vs/editor/contrib/indentation/test/browser/indentation.test.ts b/src/vs/editor/contrib/indentation/test/browser/indentation.test.ts index 64dd4bab45b..7b4f667fc0c 100644 --- a/src/vs/editor/contrib/indentation/test/browser/indentation.test.ts +++ b/src/vs/editor/contrib/indentation/test/browser/indentation.test.ts @@ -704,16 +704,6 @@ suite('`Full` Auto Indent On Type - TypeScript/JavaScript', () => { ' ', '}', ].join('\n')); - - viewModel.type("\n", 'keyboard'); - assert.strictEqual(model.getValue(), [ - 'function f() {', - ' if (condition)', - ' return;', - ' ', - ' ', - '}', - ].join('\n')); }); });