This commit is contained in:
Andrew Naylor 2015-03-10 18:35:54 +00:00
Родитель 1855de44b0
Коммит 0884da553a
1 изменённых файлов: 13 добавлений и 0 удалений

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

@ -258,4 +258,17 @@ describe("Notification", function() {
});
});
});
describe("toJSON", function() {
it("returns an Object", function() {
expect(note.toJSON()).to.be.an('object');
});
describe("aps payload", function() {
it("includes alert text", function() {
note.alert = "Test Message";
expect(note.toJSON().aps.alert).to.equal("Test Message");
});
});
});
});