mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 01:54:12 +08:00
20 lines
545 B
Plaintext
20 lines
545 B
Plaintext
|
import { acceptance } from "helpers/qunit-helpers";
|
||
|
|
||
|
acceptance("Shared Drafts", { loggedIn: true });
|
||
|
|
||
|
QUnit.test('Viewing', assert => {
|
||
|
visit("/t/some-topic/9");
|
||
|
andThen(() => {
|
||
|
assert.ok(find('.shared-draft-controls').length === 1);
|
||
|
let categoryChooser = selectKit('.shared-draft-controls .category-chooser');
|
||
|
assert.equal(categoryChooser.header().value(), '3');
|
||
|
});
|
||
|
|
||
|
click('.publish-shared-draft');
|
||
|
click('.bootbox .btn-primary');
|
||
|
|
||
|
andThen(() => {
|
||
|
assert.ok(find('.shared-draft-controls').length === 0);
|
||
|
});
|
||
|
});
|