mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 17:46:05 -05:00
53 lines
1.5 KiB
JavaScript
53 lines
1.5 KiB
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("Queued Posts", { loggedIn: true });
|
|
|
|
test("approve a post", () => {
|
|
visit("/queued-posts");
|
|
|
|
click('.queued-post:eq(0) button.approve');
|
|
andThen(() => {
|
|
ok(!exists('.queued-post'), 'it removes the post');
|
|
});
|
|
});
|
|
|
|
test("reject a post", () => {
|
|
visit("/queued-posts");
|
|
|
|
click('.queued-post:eq(0) button.reject');
|
|
andThen(() => {
|
|
ok(!exists('.queued-post'), 'it removes the post');
|
|
});
|
|
});
|
|
|
|
test("edit a post - cancel", () => {
|
|
visit("/queued-posts");
|
|
|
|
click('.queued-post:eq(0) button.edit');
|
|
andThen(() => {
|
|
equal(find('.queued-post:eq(0) textarea').val(), 'queued post text', 'it shows an editor');
|
|
});
|
|
|
|
fillIn('.queued-post:eq(0) textarea', 'new post text');
|
|
click('.queued-post:eq(0) button.cancel');
|
|
andThen(() => {
|
|
ok(!exists('textarea'), 'it disables editing');
|
|
equal(find('.queued-post:eq(0) .body p').text(), 'queued post text', 'it reverts the new text');
|
|
});
|
|
});
|
|
|
|
test("edit a post - confirm", () => {
|
|
visit("/queued-posts");
|
|
|
|
click('.queued-post:eq(0) button.edit');
|
|
andThen(() => {
|
|
equal(find('.queued-post:eq(0) textarea').val(), 'queued post text', 'it shows an editor');
|
|
});
|
|
|
|
fillIn('.queued-post:eq(0) textarea', 'new post text');
|
|
click('.queued-post:eq(0) button.confirm');
|
|
andThen(() => {
|
|
ok(!exists('textarea'), 'it disables editing');
|
|
equal(find('.queued-post:eq(0) .body p').text(), 'new post text', 'it has the new text');
|
|
});
|
|
});
|