UNPKG

chimpy

Version:

Develop acceptance tests & end-to-end tests with realtime feedback.

13 lines (9 loc) 292 B
var myStepDefinitionsWrapper = function () { this.When(/^I visit "([^"]*)"$/, function (url) { browser.url(url); }); this.Then(/^I see the title of "([^"]*)"$/, function (title) { expect(browser.getTitle()).toEqual(title); }); }; module.exports = myStepDefinitionsWrapper;