split long lines

This commit is contained in:
Matthew Hodgson
2015-11-07 20:26:16 +00:00
parent 21273582a4
commit b9ace61ccb
+4 -2
View File
@@ -814,14 +814,16 @@ describe("Room", function() {
describe("addTag", function() {
it("should set tags on rooms from event stream so they can be obtained by the tags property",
it("should set tags on rooms from event stream so " +
"they can be obtained by the tags property",
function() {
var tags = { "m.foo": { "order": 0.5 } };
room.addTags(mkTags(roomId, tags));
expect(room.tags).toEqual(tags);
});
it("should emit Room.tags event when new tags are received on the event stream",
it("should emit Room.tags event when new tags are " +
"received on the event stream",
function() {
var listener = jasmine.createSpy('spy');
room.on("Room.tags", listener);