UNPKG

cucumber-protractor

Version:

POM CukeTractor - Bootstrap your cucumber tests with cucumber, protractor and a structured way of creating page objects and component objects

9 lines (8 loc) 249 B
module.exports = function checkTitle(doesNotMatch, expectedTitle) { return browser.getTitle() .then((title) => ( doesNotMatch ? expect(title).to.not.equal(expectedTitle) : expect(title).to.equal(expectedTitle) )); };