mirror of
https://github.com/discourse/discourse.git
synced 2025-05-29 01:31:35 +08:00
Move TopicTrackingState
to injected object
This commit is contained in:
@ -1,21 +1,19 @@
|
||||
module("Discourse.TopicTrackingState");
|
||||
import TopicTrackingState from 'discourse/models/topic-tracking-state';
|
||||
|
||||
test("sync", function () {
|
||||
module("model:topic-tracking-state");
|
||||
|
||||
var state = Discourse.TopicTrackingState.create();
|
||||
// fake track it
|
||||
test("sync", function (assert) {
|
||||
const state = TopicTrackingState.create();
|
||||
state.states["t111"] = {last_read_post_number: null};
|
||||
|
||||
state.updateSeen(111, 7);
|
||||
var list = {topics: [{
|
||||
const list = {topics: [{
|
||||
highest_post_number: null,
|
||||
id: 111,
|
||||
unread: 10,
|
||||
new_posts: 10
|
||||
}]};
|
||||
}]};
|
||||
|
||||
state.sync(list, "new");
|
||||
|
||||
equal(list.topics.length, 0, "expect new topic to be removed as it was seen");
|
||||
|
||||
assert.equal(list.topics.length, 0, "expect new topic to be removed as it was seen");
|
||||
});
|
||||
|
Reference in New Issue
Block a user