Skip to content
This repository was archived by the owner on May 13, 2024. It is now read-only.

Commit b592aa8

Browse files
author
Akanksh Saxena
committed
fix(tests): enable previously skipped test
1 parent e32e0ec commit b592aa8

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

tests/acceptance/analysis-test.js

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { setupMirage } from "ember-cli-mirage/test-support";
1010
import { selectChoose } from "ember-power-select/test-support";
1111
import { setupApplicationTest } from "ember-qunit";
1212
import { authenticateSession } from "ember-simple-auth/test-support";
13-
import { module, skip, test } from "qunit";
13+
import { module, test } from "qunit";
1414

1515
import config from "../../config/environment";
1616
import userSelect from "../helpers/user-select";
@@ -28,13 +28,11 @@ module("Acceptance | analysis", function(hooks) {
2828
this.server.createList("report", 40, { userId: this.user.id });
2929
});
3030

31-
// TODO enable this
32-
skip("can visit /analysis", async function(assert) {
31+
test("can visit /analysis", async function(assert) {
3332
await visit("/analysis");
3433

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();
3836
});
3937

4038
test("can download a file", async function(assert) {

0 commit comments

Comments
 (0)