mirror of
https://github.com/discourse/discourse.git
synced 2025-05-28 23:49:34 +08:00
DEV: introduces prettier for es6 files
This commit is contained in:
@ -1,26 +1,29 @@
|
||||
QUnit.module("model:topic-details");
|
||||
|
||||
import Topic from 'discourse/models/topic';
|
||||
import Topic from "discourse/models/topic";
|
||||
|
||||
var buildDetails = function(id) {
|
||||
var topic = Topic.create({id: id});
|
||||
return topic.get('details');
|
||||
var topic = Topic.create({ id: id });
|
||||
return topic.get("details");
|
||||
};
|
||||
|
||||
QUnit.test('defaults', assert => {
|
||||
QUnit.test("defaults", assert => {
|
||||
var details = buildDetails(1234);
|
||||
assert.present(details, "the details are present by default");
|
||||
assert.ok(!details.get('loaded'), "details are not loaded by default");
|
||||
assert.ok(!details.get("loaded"), "details are not loaded by default");
|
||||
});
|
||||
|
||||
QUnit.test('updateFromJson', assert => {
|
||||
QUnit.test("updateFromJson", assert => {
|
||||
var details = buildDetails(1234);
|
||||
|
||||
details.updateFromJson({
|
||||
allowed_users: [{username: 'eviltrout'}]
|
||||
allowed_users: [{ username: "eviltrout" }]
|
||||
});
|
||||
|
||||
assert.equal(details.get('allowed_users.length'), 1, 'it loaded the allowed users');
|
||||
assert.containsInstance(details.get('allowed_users'), Discourse.User);
|
||||
|
||||
assert.equal(
|
||||
details.get("allowed_users.length"),
|
||||
1,
|
||||
"it loaded the allowed users"
|
||||
);
|
||||
assert.containsInstance(details.get("allowed_users"), Discourse.User);
|
||||
});
|
||||
|
Reference in New Issue
Block a user