mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:34:28 +08:00
9 lines
249 B
JavaScript
9 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");
|
|
});
|