DEV: Skip flaky post-inline-mention test (#22399)

This commit is contained in:
Isaac Janzen 2023-07-03 17:09:30 -05:00 committed by GitHub
parent 2910b76138
commit de192b1fbd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,7 @@ import {
query, query,
} from "discourse/tests/helpers/qunit-helpers"; } from "discourse/tests/helpers/qunit-helpers";
import { triggerEvent, visit } from "@ember/test-helpers"; import { triggerEvent, visit } from "@ember/test-helpers";
import { test } from "qunit"; import { skip, test } from "qunit";
import { cloneJSON } from "discourse-common/lib/object"; import { cloneJSON } from "discourse-common/lib/object";
import topicFixtures from "../fixtures/topic"; import topicFixtures from "../fixtures/topic";
import pretender, { response } from "discourse/tests/helpers/create-pretender"; import pretender, { response } from "discourse/tests/helpers/create-pretender";
@ -83,7 +83,7 @@ acceptance("Post inline mentions", function (needs) {
); );
}); });
test("inserts user status on message bus message", async function (assert) { skip("inserts user status on message bus message", async function (assert) {
pretender.get(`/t/${topicId}.json`, () => { pretender.get(`/t/${topicId}.json`, () => {
return response(topicWithoutUserStatus(topicId, mentionedUserId)); return response(topicWithoutUserStatus(topicId, mentionedUserId));
}); });