diff --git a/app/assets/javascripts/discourse/tests/acceptance/sidebar-user-community-section-test.js b/app/assets/javascripts/discourse/tests/acceptance/sidebar-user-community-section-test.js index 88deb17c4a..8916de8c7f 100644 --- a/app/assets/javascripts/discourse/tests/acceptance/sidebar-user-community-section-test.js +++ b/app/assets/javascripts/discourse/tests/acceptance/sidebar-user-community-section-test.js @@ -1,5 +1,5 @@ import I18n from "I18n"; -import { skip, test } from "qunit"; +import { test } from "qunit"; import { click, currentRouteName, @@ -94,8 +94,7 @@ acceptance("Sidebar - Logged on user - Community Section", function (needs) { ); }); - // TODO(tgxworld): Flaky probably due to assertions running before event listener callbacks have completed. - skip("clicking on more... link", async function (assert) { + test("clicking on more... link", async function (assert) { await visit("/"); await click( @@ -104,7 +103,7 @@ acceptance("Sidebar - Logged on user - Community Section", function (needs) { assert.ok( exists( - ".sidebar-section-community .sidebar-more-section-links-details-content" + ".sidebar-section-community .sidebar-more-section-link-details-content" ), "additional section links are displayed" ); @@ -115,7 +114,7 @@ acceptance("Sidebar - Logged on user - Community Section", function (needs) { assert.notOk( exists( - ".sidebar-section-community .sidebar-more-section-links-details-content" + ".sidebar-section-community .sidebar-more-section-link-details-content" ), "additional section links are hidden" );