This repository was archived by the owner on May 13, 2024. It is now read-only.
File tree 1 file changed +4
-6
lines changed
1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import { setupMirage } from "ember-cli-mirage/test-support";
10
10
import { selectChoose } from "ember-power-select/test-support" ;
11
11
import { setupApplicationTest } from "ember-qunit" ;
12
12
import { authenticateSession } from "ember-simple-auth/test-support" ;
13
- import { module , skip , test } from "qunit" ;
13
+ import { module , test } from "qunit" ;
14
14
15
15
import config from "../../config/environment" ;
16
16
import userSelect from "../helpers/user-select" ;
@@ -28,13 +28,11 @@ module("Acceptance | analysis", function(hooks) {
28
28
this . server . createList ( "report" , 40 , { userId : this . user . id } ) ;
29
29
} ) ;
30
30
31
- // TODO enable this
32
- skip ( "can visit /analysis" , async function ( assert ) {
31
+ test ( "can visit /analysis" , async function ( assert ) {
33
32
await visit ( "/analysis" ) ;
34
33
35
- assert . dom ( ".table--analysis tbody tr" ) . exists ( { count : 21 } ) ;
36
-
37
- await find ( ".table--analysis tbody tr:last-child" ) . scrollIntoView ( ) ;
34
+ assert . dom ( "[data-test-apply-filters]" ) . exists ( ) ;
35
+ assert . dom ( "[data-test-widen-filters]" ) . doesNotExist ( ) ;
38
36
} ) ;
39
37
40
38
test ( "can download a file" , async function ( assert ) {
You can’t perform that action at this time.
0 commit comments