diff --git a/tests/Other_Pages.js b/tests/Other_Pages.js new file mode 100644 index 0000000..0f15a83 --- /dev/null +++ b/tests/Other_Pages.js @@ -0,0 +1,12 @@ +describe('Chimp Mocha', function() { + describe('Page title', function () { + it('should be set by the Meteor method @watch', function () { + browser.url('http://localhost:3000/Discover'); + expect(browser.getTitle()).to.equal('MeetCute'); + }); + it('should be set by the Meteor method @watch', function () { + browser.url('http://localhost:3000/Profile'); + expect(browser.getTitle()).to.equal('MeetCute'); + }); + }); +});