mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 19:01:52 +08:00
8 lines
266 B
JavaScript
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");
|
|
}); |