Skip to content

Commit

Permalink
simplified failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
jedi4ever committed May 17, 2013
1 parent e0e71ad commit 0948bc8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/term_writer.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ describe('TermWriter', function() {
/* Disable non working test
it("should keep attributes on pageup and newline", function() {
var t = newTermWriter(80,24);
t.write("\x1b[0;1;7mBold+Inverse\x1b[0m\nline2\x1b[A\n");
expect(t.buffer.getLine().attr['0'].bold).to.be(true);
expect(t.buffer.getLine().attr['0'].inverse).to.be(true);
t.write("\x1b[0;1mBold\x1b[0m\n\x1b[A\n");
expect(t.toString()).to.be("Bold\n");
expect(t.buffer.getLine(0).attr['0'].bold).to.be(true);
});
*/
it("should reverse the terminal correctly", function() {
Expand Down

0 comments on commit 0948bc8

Please sign in to comment.