discourse/test/javascripts/models/session-test.js.es6

9 lines
251 B
Plaintext
Raw Normal View History

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");
2014-07-30 18:56:01 -04:00
});