From 2f45685a0613eda369645e1938385f85a75bcb80 Mon Sep 17 00:00:00 2001 From: karlin Date: Fri, 6 Jun 2014 08:40:15 -0400 Subject: [PATCH] remove focused describes --- spec/editor-spec.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/editor-spec.coffee b/spec/editor-spec.coffee index 16a231d9a..33f98fb05 100644 --- a/spec/editor-spec.coffee +++ b/spec/editor-spec.coffee @@ -863,7 +863,7 @@ describe "Editor", -> expect(selection1.getScreenRange()).toEqual [[3, 0], [4, 5]] expect(selection2.getScreenRange()).toEqual [[5, 6], [6, 2]] - fdescribe ".selectToBeginningOfNextParagraph()", -> + describe ".selectToBeginningOfNextParagraph()", -> it "selects from the cursor to first line of the next paragraph", -> editor.setSelectedBufferRange([[3, 0], [4, 5]]) editor.addCursorAtScreenPosition([5, 6]) @@ -875,7 +875,7 @@ describe "Editor", -> expect(selections.length).toBe 1 expect(selections[0].getScreenRange()).toEqual [[3, 0], [10, 0]] - fdescribe ".selectToBeginningOfPreviousParagraph()", -> + describe ".selectToBeginningOfPreviousParagraph()", -> it "selects from the cursor to the first line of the pevious paragraph", -> editor.setSelectedBufferRange([[3, 0], [4, 5]]) editor.addCursorAtScreenPosition([5, 6])