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

9 lines
249 B
Plaintext
Raw Normal View History

import Session from "discourse/models/session";
2015-08-07 15:08:27 -04:00
module("model:session");
test('highestSeenByTopic', function() {
2015-08-07 15:08:27 -04:00
const session = Session.current();
deepEqual(session.get('highestSeenByTopic'), {}, "by default it returns an empty object");
2014-07-30 18:56:01 -04:00
});