From ff297c05ff8ea534b9bf4c59c378a8f4c98ae983 Mon Sep 17 00:00:00 2001 From: KobeNguyenT <7845001+kobenguyent@users.noreply.github.com> Date: Sat, 1 Jul 2023 10:00:55 +0200 Subject: [PATCH] fix: comment of Update ui.js (#3712) --- lib/ui.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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); * }); *