mirror of
https://github.com/discourse/discourse.git
synced 2025-04-03 05:39:41 +08:00
parent
39efa4c32a
commit
51672562ec
@ -5,7 +5,7 @@ import {
|
|||||||
publishToMessageBus,
|
publishToMessageBus,
|
||||||
query,
|
query,
|
||||||
} from "discourse/tests/helpers/qunit-helpers";
|
} from "discourse/tests/helpers/qunit-helpers";
|
||||||
import { test } from "qunit";
|
import { skip, test } from "qunit";
|
||||||
import { click, triggerEvent, visit, waitFor } from "@ember/test-helpers";
|
import { click, triggerEvent, visit, waitFor } from "@ember/test-helpers";
|
||||||
import pretender, { OK } from "discourse/tests/helpers/create-pretender";
|
import pretender, { OK } from "discourse/tests/helpers/create-pretender";
|
||||||
|
|
||||||
@ -94,7 +94,7 @@ acceptance("Chat | User status on mentions", function (needs) {
|
|||||||
setupAutocompleteResponses([mentionedUser2, mentionedUser3]);
|
setupAutocompleteResponses([mentionedUser2, mentionedUser3]);
|
||||||
});
|
});
|
||||||
|
|
||||||
test("just posted messages | it shows status on mentions ", async function (assert) {
|
skip("just posted messages | it shows status on mentions ", async function (assert) {
|
||||||
await visit(`/chat/c/-/${channelId}`);
|
await visit(`/chat/c/-/${channelId}`);
|
||||||
await typeWithAutocompleteAndSend(`mentioning @${mentionedUser2.username}`);
|
await typeWithAutocompleteAndSend(`mentioning @${mentionedUser2.username}`);
|
||||||
assertStatusIsRendered(
|
assertStatusIsRendered(
|
||||||
@ -104,7 +104,7 @@ acceptance("Chat | User status on mentions", function (needs) {
|
|||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
test("just posted messages | it updates status on mentions", async function (assert) {
|
skip("just posted messages | it updates status on mentions", async function (assert) {
|
||||||
await visit(`/chat/c/-/${channelId}`);
|
await visit(`/chat/c/-/${channelId}`);
|
||||||
await typeWithAutocompleteAndSend(`mentioning @${mentionedUser2.username}`);
|
await typeWithAutocompleteAndSend(`mentioning @${mentionedUser2.username}`);
|
||||||
|
|
||||||
@ -117,7 +117,7 @@ acceptance("Chat | User status on mentions", function (needs) {
|
|||||||
assertStatusIsRendered(assert, selector, newStatus);
|
assertStatusIsRendered(assert, selector, newStatus);
|
||||||
});
|
});
|
||||||
|
|
||||||
test("just posted messages | it deletes status on mentions", async function (assert) {
|
skip("just posted messages | it deletes status on mentions", async function (assert) {
|
||||||
await visit(`/chat/c/-/${channelId}`);
|
await visit(`/chat/c/-/${channelId}`);
|
||||||
|
|
||||||
await typeWithAutocompleteAndSend(`mentioning @${mentionedUser2.username}`);
|
await typeWithAutocompleteAndSend(`mentioning @${mentionedUser2.username}`);
|
||||||
@ -131,7 +131,7 @@ acceptance("Chat | User status on mentions", function (needs) {
|
|||||||
assert.dom(selector).doesNotExist("status is deleted");
|
assert.dom(selector).doesNotExist("status is deleted");
|
||||||
});
|
});
|
||||||
|
|
||||||
test("edited messages | it shows status on mentions", async function (assert) {
|
skip("edited messages | it shows status on mentions", async function (assert) {
|
||||||
await visit(`/chat/c/-/${channelId}`);
|
await visit(`/chat/c/-/${channelId}`);
|
||||||
|
|
||||||
await editMessage(
|
await editMessage(
|
||||||
@ -146,7 +146,7 @@ acceptance("Chat | User status on mentions", function (needs) {
|
|||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
test("edited messages | it updates status on mentions", async function (assert) {
|
skip("edited messages | it updates status on mentions", async function (assert) {
|
||||||
await visit(`/chat/c/-/${channelId}`);
|
await visit(`/chat/c/-/${channelId}`);
|
||||||
await editMessage(
|
await editMessage(
|
||||||
".chat-message-content",
|
".chat-message-content",
|
||||||
@ -162,7 +162,7 @@ acceptance("Chat | User status on mentions", function (needs) {
|
|||||||
assertStatusIsRendered(assert, selector, newStatus);
|
assertStatusIsRendered(assert, selector, newStatus);
|
||||||
});
|
});
|
||||||
|
|
||||||
test("edited messages | it deletes status on mentions", async function (assert) {
|
skip("edited messages | it deletes status on mentions", async function (assert) {
|
||||||
await visit(`/chat/c/-/${channelId}`);
|
await visit(`/chat/c/-/${channelId}`);
|
||||||
|
|
||||||
await editMessage(
|
await editMessage(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user