Merge pull request #1584 from velesin/view_topic_test_fix

fixes wrong placement of expect in View Topic integration test
This commit is contained in:
Robin Ward 2013-10-29 08:03:55 -07:00
commit 5ae2681293
1 changed files with 1 additions and 3 deletions

View File

@ -1,12 +1,10 @@
integration("View Topic");
test("Enter a Topic", function() {
expect(2);
visit("/t/internationalization-localization/280").then(function() {
expect(2);
ok(exists("#topic"), "The was rendered");
ok(exists("#topic .topic-post"), "The topic has posts");
});
});