2016-05-05 12:49:12 -04:00
|
|
|
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("Topic Discovery - Mobile", { mobileView: true });
|
|
|
|
|
2017-06-14 13:57:58 -04:00
|
|
|
QUnit.test("Visit Discovery Pages", assert => {
|
2016-05-05 12:49:12 -04:00
|
|
|
visit("/");
|
|
|
|
andThen(() => {
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.ok(exists(".topic-list"), "The list of topics was rendered");
|
|
|
|
assert.ok(exists('.topic-list .topic-list-item'), "has topics");
|
2016-05-05 12:49:12 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
visit("/categories");
|
|
|
|
andThen(() => {
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.ok(exists('.category'), "has a list of categories");
|
2016-05-05 12:49:12 -04:00
|
|
|
});
|
2017-06-14 13:57:58 -04:00
|
|
|
});
|