mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
28 lines
624 B
JavaScript
28 lines
624 B
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("CategoryChooser", {
|
|
loggedIn: true,
|
|
settings: {
|
|
allow_uncategorized_topics: false
|
|
}
|
|
});
|
|
|
|
QUnit.test("does not display uncategorized if not allowed", assert => {
|
|
visit("/");
|
|
click('#create-topic');
|
|
|
|
('.category-chooser');
|
|
|
|
andThen(() => {
|
|
assert.ok(selectBox('.category-chooser').rowByIndex(0).name() !== 'uncategorized');
|
|
});
|
|
});
|
|
|
|
QUnit.test("prefill category when category_id is set", assert => {
|
|
visit("/new-topic?category_id=1");
|
|
|
|
andThen(() => {
|
|
assert.equal(selectBox('.category-chooser').header.name(), 'bug');
|
|
});
|
|
});
|