mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 20:01:11 +08:00
17 lines
446 B
JavaScript
17 lines
446 B
JavaScript
integration("View Topic");
|
|
|
|
test("Enter a Topic", function() {
|
|
visit("/t/internationalization-localization/280");
|
|
andThen(function() {
|
|
ok(exists("#topic"), "The topic was rendered");
|
|
ok(exists("#topic .post-cloak"), "The topic has cloaked posts");
|
|
});
|
|
});
|
|
|
|
test("Enter without an id", function() {
|
|
visit("/t/internationalization-localization");
|
|
andThen(function() {
|
|
ok(exists("#topic"), "The topic was rendered");
|
|
});
|
|
});
|