mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
8 lines
251 B
JavaScript
8 lines
251 B
JavaScript
import Session from "discourse/models/session";
|
|
|
|
module("Discourse.Session");
|
|
|
|
test('highestSeenByTopic', function() {
|
|
var session = Session.current();
|
|
deepEqual(session.get('highestSeenByTopic'), {}, "by default it returns an empty object");
|
|
});
|