2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-08 12:06:51 +08:00
discourse/test/javascripts/models/session-test.js.es6
2014-12-17 09:31:42 -05:00

8 lines
251 B
JavaScript

import Session from "discourse/models/session";
module("Discourse.Session");
test('highestSeenByTopic', function() {
var session = Session.current();
deepEqual(session.get('highestSeenByTopic'), {}, "by default it returns an empty object");
});