This commit is contained in:
Andrew Naylor 2015-03-09 09:41:08 +00:00
Родитель 286f1e14d6
Коммит 5e354c7c79
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -154,6 +154,12 @@ describe("Notification", function() {
note.trim(25);
expect(note.alert).to.equal("test");
});
it("leaves an even number of escape characters", function() {
note.alert = "test\\\\\n";
note.trim(29);
expect(note.alert).to.equal("test\\\\");
});
});
it("returns the number of bytes removed from the alert text", function() {