From f9a5d149e1cf849d43f4a9f9bde7b8df54f4636d Mon Sep 17 00:00:00 2001 From: Alan Guo Xiang Tan Date: Mon, 8 Jul 2024 09:11:38 +0800 Subject: [PATCH] DEV: Skip flaky polls acceptance test (#27757) Example of flakiness: https://github.com/discourse/discourse/actions/runs/9831645793/job/27139325323 --- .../poll/test/javascripts/component/poll-results-pie-test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/poll/test/javascripts/component/poll-results-pie-test.js b/plugins/poll/test/javascripts/component/poll-results-pie-test.js index 0f2d91cf5b1..40241560422 100644 --- a/plugins/poll/test/javascripts/component/poll-results-pie-test.js +++ b/plugins/poll/test/javascripts/component/poll-results-pie-test.js @@ -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,