mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 19:34:09 +08:00
31 lines
679 B
JavaScript
31 lines
679 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", async assert => {
|
|
const categoryChooser = selectKit(".category-chooser");
|
|
|
|
await visit("/");
|
|
await click("#create-topic");
|
|
|
|
categoryChooser.expandAwait();
|
|
|
|
assert.ok(categoryChooser.rowByIndex(0).name() !== "uncategorized");
|
|
});
|
|
|
|
QUnit.test("prefill category when category_id is set", async assert => {
|
|
await visit("/new-topic?category_id=1");
|
|
|
|
assert.equal(
|
|
selectKit(".category-chooser")
|
|
.header()
|
|
.value(),
|
|
1
|
|
);
|
|
});
|