2013-06-21 03:02:02 +08:00
|
|
|
integration("View Topic");
|
|
|
|
|
2013-07-05 04:19:59 +08:00
|
|
|
test("Enter a Topic", function() {
|
2014-07-31 01:27:14 +08:00
|
|
|
visit("/t/internationalization-localization/280");
|
|
|
|
andThen(function() {
|
2014-09-17 23:18:41 +08:00
|
|
|
ok(exists("#topic"), "The topic was rendered");
|
2013-11-21 05:33:36 +08:00
|
|
|
ok(exists("#topic .post-cloak"), "The topic has cloaked posts");
|
2013-06-21 03:02:02 +08:00
|
|
|
});
|
|
|
|
});
|
2014-09-17 23:18:41 +08:00
|
|
|
|
|
|
|
test("Enter without an id", function() {
|
|
|
|
visit("/t/internationalization-localization");
|
|
|
|
andThen(function() {
|
|
|
|
ok(exists("#topic"), "The topic was rendered");
|
|
|
|
});
|
|
|
|
});
|