From ecf05ca1f922116fb3b3c8bb3cbcf3f2bd1242de Mon Sep 17 00:00:00 2001 From: anisa93 Date: Sun, 11 Dec 2016 13:31:05 -0500 Subject: [PATCH] new test case for other pages of meetcute --- tests/Other_Pages.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tests/Other_Pages.js 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'); + }); + }); +});