Compare commits

...
This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.

1 Commits

Author SHA1 Message Date
Jarek Radosz
bab12f3d28
DEV: Restore skipped sidebar test
Lemme see those failures :P
2022-08-23 13:07:16 +02:00

View File

@ -1,5 +1,5 @@
import I18n from "I18n";
import { skip, test } from "qunit";
import { test } from "qunit";
import {
click,
currentRouteName,
@ -96,8 +96,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(
@ -106,7 +105,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"
);
@ -117,7 +116,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"
);