41 lines
1.2 KiB
JavaScript
41 lines
1.2 KiB
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
acceptance("Topic - Anonymous");
|
|
|
|
QUnit.test("Enter a Topic", assert => {
|
|
visit("/t/internationalization-localization/280/1");
|
|
andThen(() => {
|
|
assert.ok(exists("#topic"), "The topic was rendered");
|
|
assert.ok(exists("#topic .cooked"), "The topic has cooked posts");
|
|
});
|
|
});
|
|
|
|
QUnit.test("Enter without an id", assert => {
|
|
visit("/t/internationalization-localization");
|
|
andThen(() => {
|
|
assert.ok(exists("#topic"), "The topic was rendered");
|
|
});
|
|
});
|
|
|
|
QUnit.test("Enter a 404 topic", assert => {
|
|
visit("/t/not-found/404");
|
|
andThen(() => {
|
|
assert.ok(!exists("#topic"), "The topic was not rendered");
|
|
assert.ok(find(".not-found").text() === "not found", "it renders the error message");
|
|
});
|
|
});
|
|
|
|
QUnit.test("Enter without access", assert => {
|
|
visit("/t/i-dont-have-access/403");
|
|
andThen(() => {
|
|
assert.ok(!exists("#topic"), "The topic was not rendered");
|
|
assert.ok(exists(".topic-error"), "An error message is displayed");
|
|
});
|
|
});
|
|
|
|
QUnit.test("Enter with 500 errors", assert => {
|
|
visit("/t/throws-error/500");
|
|
andThen(() => {
|
|
assert.ok(!exists("#topic"), "The topic was not rendered");
|
|
assert.ok(exists(".topic-error"), "An error message is displayed");
|
|
});
|
|
}); |