mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-01 19:37:29 -05:00
16 lines
426 B
JavaScript
16 lines
426 B
JavaScript
integration("View Topic");
|
|
|
|
test("Enter a Topic", () => {
|
|
visit("/t/internationalization-localization/280");
|
|
andThen(() => {
|
|
ok(exists("#topic"), "The topic was rendered");
|
|
ok(exists("#topic .post-cloak"), "The topic has cloaked posts");
|
|
});
|
|
});
|
|
|
|
test("Enter without an id", () => {
|
|
visit("/t/internationalization-localization");
|
|
andThen(() => {
|
|
ok(exists("#topic"), "The topic was rendered");
|
|
});
|
|
});
|