discourse/test/javascripts/models/user-action-test.js.es6

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
753 B
Plaintext
Raw Normal View History

import UserAction from "discourse/models/user-action";
QUnit.module("model: user-action");
2017-06-14 13:57:58 -04:00
QUnit.test("collapsing likes", assert => {
var actions = UserAction.collapseStream([
UserAction.create({
action_type: UserAction.TYPES.likes_given,
topic_id: 1,
user_id: 1,
post_number: 1
}),
UserAction.create({
action_type: UserAction.TYPES.edits,
topic_id: 2,
user_id: 1,
post_number: 1
}),
UserAction.create({
action_type: UserAction.TYPES.likes_given,
topic_id: 1,
user_id: 2,
post_number: 1
})
]);
2017-06-14 13:57:58 -04:00
assert.equal(actions.length, 2);
assert.equal(actions[0].get("children.length"), 1);
assert.equal(actions[0].get("children")[0].items.length, 2);
});