mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 21:23:57 +08:00
13 lines
285 B
JavaScript
13 lines
285 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"
|
|
);
|
|
});
|