mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 22:43:33 +08:00
DEV: introduces prettier for es6 files
This commit is contained in:
@ -2,7 +2,11 @@ import Session from "discourse/models/session";
|
||||
|
||||
QUnit.module("model:session");
|
||||
|
||||
QUnit.test('highestSeenByTopic', assert => {
|
||||
QUnit.test("highestSeenByTopic", assert => {
|
||||
const session = Session.current();
|
||||
assert.deepEqual(session.get('highestSeenByTopic'), {}, "by default it returns an empty object");
|
||||
});
|
||||
assert.deepEqual(
|
||||
session.get("highestSeenByTopic"),
|
||||
{},
|
||||
"by default it returns an empty object"
|
||||
);
|
||||
});
|
||||
|
Reference in New Issue
Block a user