Skip to content

Commit 3f88602

Browse files
CCM-12666: Fix tests
1 parent 26796fb commit 3f88602

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/accessibility/actions/sign-in-page.actions.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ const signInPageActions = (email, password) => [
77
'click element button[type="submit"]',
88
];
99

10-
export const withSignIn = (accessibilityTest, email, password) => ({
10+
const withSignIn = (accessibilityTest, email, password) => ({
1111
...accessibilityTest,
1212
actions: [
13-
signInPageActions,
13+
signInPageActions(email, password),
1414
...accessibilityTest.actions
1515
]
1616
});

0 commit comments

Comments
 (0)