This repository was archived by the owner on Jul 22, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed
test/javascripts/acceptance Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change 1
1
import { visit } from "@ember/test-helpers" ;
2
- import { skip } from "qunit" ;
2
+ import { test } from "qunit" ;
3
3
import { acceptance , query } from "discourse/tests/helpers/qunit-helpers" ;
4
4
import { i18n } from "discourse-i18n" ;
5
5
@@ -23,20 +23,18 @@ acceptance(
23
23
} ) ;
24
24
} ) ;
25
25
26
- /* disabled temporarily for core updates https://github.com/discourse/discourse/pull/33455 */
27
-
28
- skip ( "When looking at the own activity page" , async function ( assert ) {
26
+ test ( "When looking at the own activity page" , async function ( assert ) {
29
27
await visit ( `/u/${ currentUser } /activity/votes` ) ;
30
28
assert . equal (
31
- query ( "div .empty-state span .empty-state-title " ) . innerText ,
29
+ query ( ".empty-state .empty-state__title " ) . innerText ,
32
30
i18n ( "topic_voting.no_votes_title_self" )
33
31
) ;
34
32
} ) ;
35
33
36
- skip ( "When looking at another user's activity page" , async function ( assert ) {
34
+ test ( "When looking at another user's activity page" , async function ( assert ) {
37
35
await visit ( `/u/${ anotherUser } /activity/votes` ) ;
38
36
assert . equal (
39
- query ( "div .empty-state span .empty-state-title " ) . innerText ,
37
+ query ( ".empty-state .empty-state__title " ) . innerText ,
40
38
i18n ( "topic_voting.no_votes_title_others" , { username : anotherUser } )
41
39
) ;
42
40
} ) ;
You can’t perform that action at this time.
0 commit comments