mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 01:32:23 +08:00
12 lines
278 B
JavaScript
12 lines
278 B
JavaScript
integration("View Topic");
|
|
|
|
test("Enter a Topic", function() {
|
|
expect(2);
|
|
|
|
visit("/t/internationalization-localization/280");
|
|
andThen(function() {
|
|
ok(exists("#topic"), "The was rendered");
|
|
ok(exists("#topic .post-cloak"), "The topic has cloaked posts");
|
|
});
|
|
});
|