Remove focus from specs

This commit is contained in:
Neil Lalonde 2019-10-16 11:59:42 -04:00
parent a37dafdd4d
commit 61f6a6e836
2 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ describe DiscourseDiff do
expect(DiscourseDiff.new(before, after).side_by_side_html).to eq("<div class=\"revision-content\"><p>this is a paragraph</p></div><div class=\"revision-content\"><p>this is a <ins>great </ins>paragraph</p></div>")
end
it "adds <ins> and <del> tags on consecutive paragraphs", :focus do
it "adds <ins> and <del> tags on consecutive paragraphs" do
before = "<p>this is one paragraph</p><p>here is yet another</p>"
after = "<p>this is one great paragraph</p><p>here is another</p>"
got = DiscourseDiff.new(before, after).side_by_side_html

View File

@ -49,7 +49,7 @@ describe ONPDiff do
expect(ONPDiff.new("abc", "acd").paragraph_diff).to eq([["a", :common], ["b", :delete], ["c", :common], ["d", :add]])
end
it "pairs as many elements as possible", :focus do
it "pairs as many elements as possible" do
expect(ONPDiff.new("abcd", "abef").paragraph_diff).to eq([
["a", :common], ["b", :common],
["e", :add], ["c", :delete],