2017-12-22 13:08:12 +01:00
|
|
|
import { acceptance } from 'helpers/qunit-helpers';
|
2017-08-28 14:34:04 +02:00
|
|
|
|
2017-12-22 13:08:12 +01:00
|
|
|
acceptance('CategoryChooser', {
|
2017-08-28 14:34:04 +02:00
|
|
|
loggedIn: true,
|
|
|
|
settings: {
|
|
|
|
allow_uncategorized_topics: false
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-12-22 13:08:12 +01:00
|
|
|
QUnit.test('does not display uncategorized if not allowed', assert => {
|
|
|
|
const categoryChooser = selectKit('.category-chooser');
|
|
|
|
|
|
|
|
visit('/');
|
2017-08-28 14:34:04 +02:00
|
|
|
click('#create-topic');
|
|
|
|
|
2017-12-22 13:08:12 +01:00
|
|
|
categoryChooser.expand();
|
2017-10-19 12:51:08 -07:00
|
|
|
|
2017-08-28 14:34:04 +02:00
|
|
|
andThen(() => {
|
2017-12-22 13:08:12 +01:00
|
|
|
assert.ok(categoryChooser.rowByIndex(0).name() !== 'uncategorized');
|
2017-08-28 14:34:04 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-12-22 13:08:12 +01:00
|
|
|
QUnit.test('prefill category when category_id is set', assert => {
|
|
|
|
visit('/new-topic?category_id=1');
|
2017-08-28 14:34:04 +02:00
|
|
|
|
|
|
|
andThen(() => {
|
2017-12-22 13:08:12 +01:00
|
|
|
assert.equal(selectKit('.category-chooser').header().value(), 1);
|
2017-08-28 14:34:04 +02:00
|
|
|
});
|
|
|
|
});
|