mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-25 00:29:30 -05:00
17 lines
399 B
JavaScript
17 lines
399 B
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("Category Edit", { loggedIn: true });
|
|
|
|
test("Can edit a category", (assert) => {
|
|
visit("/c/bug");
|
|
|
|
click('.edit-category');
|
|
andThen(() => {
|
|
assert.ok(visible('#discourse-modal'), 'it pops up a modal');
|
|
});
|
|
|
|
click('a.close');
|
|
andThen(() => {
|
|
assert.ok(!visible('#discourse-modal'), 'it closes the modal');
|
|
});
|
|
});
|