From 3d9a6ab068de2d94c7e35e5c107dce231d3cba89 Mon Sep 17 00:00:00 2001 From: kingwl Date: Thu, 24 May 2018 22:28:30 +0800 Subject: [PATCH] remove failed test --- .../refactorAddOrRemoveBracesToArrowFunction21.ts | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 tests/cases/fourslash/refactorAddOrRemoveBracesToArrowFunction21.ts diff --git a/tests/cases/fourslash/refactorAddOrRemoveBracesToArrowFunction21.ts b/tests/cases/fourslash/refactorAddOrRemoveBracesToArrowFunction21.ts deleted file mode 100644 index 4ba578ded89..00000000000 --- a/tests/cases/fourslash/refactorAddOrRemoveBracesToArrowFunction21.ts +++ /dev/null @@ -1,14 +0,0 @@ -/// - -//// const foo = /*a*/a/*b*/ => /* expression comment */ a + 1 - -goTo.select("a", "b"); -edit.applyRefactor({ - refactorName: "Add or remove braces in an arrow function", - actionName: "Add braces to arrow function", - actionDescription: "Add braces to arrow function", - newContent: `const foo = a => { - /* expression comment */ - return a + 1; -}`, -});