From 51672562ece1694e711df342a52effd99f1dac91 Mon Sep 17 00:00:00 2001 From: Andrei Prigorshnev Date: Fri, 9 Jun 2023 00:01:41 +0400 Subject: [PATCH] DEV: disable flaky specs (#22013) These specs are flaky in CI. --- .../acceptance/user-status-on-mentions-test.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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 cb70982b09d..b21fedb268e 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, visit, waitFor } from "@ember/test-helpers"; import pretender, { OK } from "discourse/tests/helpers/create-pretender"; @@ -94,7 +94,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( @@ -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 typeWithAutocompleteAndSend(`mentioning @${mentionedUser2.username}`); @@ -117,7 +117,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}`); @@ -131,7 +131,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( @@ -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 editMessage( ".chat-message-content", @@ -162,7 +162,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(