Unfocus spec

This commit is contained in:
Kevin Sawicki 2014-09-18 14:50:36 -07:00
parent a88299284e
commit 7f3279e789

View File

@ -71,7 +71,7 @@ describe "LanguageMode", ->
expect(languageMode.rowRangeForCodeFoldAtBufferRow(4)).toEqual [4, 7]
describe ".rowRangeForCommentAtBufferRow(bufferRow)", ->
fit "returns the start/end rows of the foldable comment starting at the given row", ->
it "returns the start/end rows of the foldable comment starting at the given row", ->
buffer.setText("//this is a multi line comment\n//another line")
expect(languageMode.rowRangeForCommentAtBufferRow(0)).toEqual [0, 1]
expect(languageMode.rowRangeForCommentAtBufferRow(1)).toEqual [0, 1]