We used many global functions to handle tests when they should be imported like other libraries in our application. This also gets us closer to the way Ember CLI prefers our tests to be laid out.
32 lines
785 B
JavaScript
32 lines
785 B
JavaScript
import { test, module } from "qunit";
|
|
import UserAction from "discourse/models/user-action";
|
|
|
|
module("model: user-action");
|
|
|
|
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,
|
|
}),
|
|
]);
|
|
|
|
assert.equal(actions.length, 2);
|
|
assert.equal(actions[0].get("children.length"), 1);
|
|
assert.equal(actions[0].get("children")[0].items.length, 2);
|
|
});
|