diff --git a/lib/ui.js b/lib/ui.js index 5dd0597b4..b142a467a 100644 --- a/lib/ui.js +++ b/lib/ui.js @@ -23,10 +23,11 @@ const setContextTranslation = (context) => { /** * Codecept-style interface: * - * Feature('login') - * Scenario('login as regular user', (I) { + * Feature('login'); + * + * Scenario('login as regular user', ({I}) { * I.fillField(); - * I.click() + * I.click(); * I.see('Hello, '+data.login); * }); *