2017-08-28 20:34:04 +08:00
|
|
|
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
|
2017-10-20 03:51:08 +08:00
|
|
|
acceptance("CategoryChooser", {
|
2017-08-28 20:34:04 +08:00
|
|
|
loggedIn: true,
|
|
|
|
settings: {
|
|
|
|
allow_uncategorized_topics: false
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
QUnit.test("does not display uncategorized if not allowed", assert => {
|
|
|
|
visit("/");
|
|
|
|
click('#create-topic');
|
|
|
|
|
2017-11-21 18:53:09 +08:00
|
|
|
expandSelectKit('.category-chooser');
|
2017-10-20 03:51:08 +08:00
|
|
|
|
2017-08-28 20:34:04 +08:00
|
|
|
andThen(() => {
|
2017-11-21 18:53:09 +08:00
|
|
|
assert.ok(selectKit('.category-chooser').rowByIndex(0).name() !== 'uncategorized');
|
2017-08-28 20:34:04 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
QUnit.test("prefill category when category_id is set", assert => {
|
|
|
|
visit("/new-topic?category_id=1");
|
|
|
|
|
|
|
|
andThen(() => {
|
2017-11-21 18:53:09 +08:00
|
|
|
assert.equal(selectKit('.category-chooser').header.name(), 'bug');
|
2017-08-28 20:34:04 +08:00
|
|
|
});
|
|
|
|
});
|