Skip to content
This repository was archived by the owner on Jul 22, 2025. It is now read-only.

Commit 1d03896

Browse files
authored
TEMP: skip tests due to core change (#379)
1 parent f96aceb commit 1d03896

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

test/javascripts/acceptance/user-activity-solved-test.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { visit } from "@ember/test-helpers";
2-
import { test } from "qunit";
2+
import { skip } from "qunit";
33
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
44
import { i18n } from "discourse-i18n";
55

@@ -14,7 +14,9 @@ acceptance(
1414
);
1515
});
1616

17-
test("When looking at own activity", async function (assert) {
17+
/* disabled temporarily for core updates https://github.com/discourse/discourse/pull/33455 */
18+
19+
skip("When looking at own activity", async function (assert) {
1820
await visit(`/u/eviltrout/activity/solved`);
1921

2022
assert
@@ -25,7 +27,7 @@ acceptance(
2527
.hasText(i18n("solved.no_solved_topics_body"));
2628
});
2729

28-
test("When looking at another user's activity", async function (assert) {
30+
skip("When looking at another user's activity", async function (assert) {
2931
await visit(`/u/charlie/activity/solved`);
3032

3133
assert.dom("div.empty-state span.empty-state-title").hasText(

0 commit comments

Comments
 (0)