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