1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-09-10 17:31:53 +03:00

split long lines

This commit is contained in:
Matthew Hodgson
2015-11-07 20:26:16 +00:00
parent 21273582a4
commit b9ace61ccb

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);