2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-07 12:02:53 +08:00
discourse/test/javascripts/models/session-test.js.es6

7 lines
212 B
Text
Raw Normal View History

module("Discourse.Session");
test('highestSeenByTopic', function() {
var session = Discourse.Session.current();
deepEqual(session.get('highestSeenByTopic'), {}, "by default it returns an empty object");
2014-07-30 18:56:01 -04:00
});