1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-08 12:35:04 +00:00
2017-06-15 10:12:07 -04:00

8 lines
266 B
JavaScript

import Session from "discourse/models/session";
QUnit.module("model:session");
QUnit.test('highestSeenByTopic', assert => {
const session = Session.current();
assert.deepEqual(session.get('highestSeenByTopic'), {}, "by default it returns an empty object");
});