We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17ad390 commit 29c2d43Copy full SHA for 29c2d43
spec/unit/wrap/wrap_spec.rb
@@ -211,22 +211,22 @@
211
expect(val).to eq("\e[32mone\e[0m\n\e[33mtwo\e[0m")
212
end
213
214
- xit "splits ANSI codes matching wrap width" do
+ it "splits ANSI codes matching wrap width" do
215
str = "\e[32mone\e[0m\e[33mtwo\e[0m"
216
217
val = Strings::Wrap.wrap(str, 3)
218
219
220
221
222
- xit "wraps deeply nested ANSI codes correctly" do
+ it "wraps deeply nested ANSI codes correctly" do
223
str = "\e[32mone\e[33mtwo\e[0m\e[0m"
224
225
226
227
expect(val).to eq([
228
"\e[32mone\e[0m",
229
- "\e[33mtwo\e[0m",
+ "\e[32m\e[33mtwo\e[0m\e[0m",
230
].join("\n"))
231
232
0 commit comments