diff --git a/plugins/chat/test/javascripts/acceptance/user-status-on-mentions-test.js b/plugins/chat/test/javascripts/acceptance/user-status-on-mentions-test.js index 619267e59e9..f17d6abf658 100644 --- a/plugins/chat/test/javascripts/acceptance/user-status-on-mentions-test.js +++ b/plugins/chat/test/javascripts/acceptance/user-status-on-mentions-test.js @@ -5,7 +5,7 @@ import { publishToMessageBus, query, } from "discourse/tests/helpers/qunit-helpers"; -import { test } from "qunit"; +import { skip, test } from "qunit"; import { click, triggerEvent, @@ -100,7 +100,7 @@ acceptance("Chat | User status on mentions", function (needs) { 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 typeWithAutocompleteAndSend(`mentioning @${mentionedUser2.username}`); assertStatusIsRendered( @@ -110,7 +110,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 typeWithAutocompleteAndSend(`mentioning @${mentionedUser2.username}`); @@ -123,7 +123,7 @@ acceptance("Chat | User status on mentions", function (needs) { 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 typeWithAutocompleteAndSend(`mentioning @${mentionedUser2.username}`); @@ -137,7 +137,7 @@ acceptance("Chat | User status on mentions", function (needs) { 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 editMessage( @@ -152,7 +152,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 editMessage( ".chat-message-content", @@ -168,7 +168,7 @@ acceptance("Chat | User status on mentions", function (needs) { 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 editMessage(