This commit is contained in:
Jarek Radosz 2023-03-18 00:01:39 -04:00 committed by GitHub
commit 7624bbdecf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"
);