DEV: Skip flaky polls acceptance test (#27757)

Example of flakiness: https://github.com/discourse/discourse/actions/runs/9831645793/job/27139325323
This commit is contained in:
Alan Guo Xiang Tan 2024-07-08 09:11:38 +08:00 committed by GitHub
parent df6f950200
commit f9a5d149e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,6 @@
import { render } from "@ember/test-helpers";
import hbs from "htmlbars-inline-precompile";
import { module, test } from "qunit";
import { module, skip } from "qunit";
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
import { count } from "discourse/tests/helpers/qunit-helpers";
@ -15,7 +15,7 @@ const ID = "23";
module("Poll | Component | poll-results-pie", function (hooks) {
setupRenderingTest(hooks);
test("Renders the pie chart Component correctly", async function (assert) {
skip("Renders the pie chart Component correctly", async function (assert) {
this.setProperties({
id: ID,
options: OPTIONS,