discourse/test/javascripts/acceptance/category-chooser-test.js.es6

33 lines
841 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");
await categoryChooser.expand();
assert.ok(categoryChooser.rowByIndex(0).name() !== "uncategorized");
});
// TODO: fix the test to work with new code to land on category page
// (https://github.com/discourse/discourse/commit/7d9c97d66141d35d00258fe544211d9fd7f79a76)
QUnit.skip("prefill category when category_id is set", async assert => {
await visit("/new-topic?category_id=1");
assert.equal(
selectKit(".category-chooser")
.header()
.value(),
1
);
});