Skip to content

Commit e9373a1

Browse files
committed
REG-34: Fix new breakage from removing function param
1 parent 514238d commit e9373a1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

steps/donation.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ BeforeAll(() => {
2929
// Steps
3030
Given(
3131
/^that I am on my chosen ([a-zA-Z]+)-enabled charity's Donate page$/,
32-
async () => {
32+
// eslint-disable-next-line no-unused-vars
33+
async (psp) => {
3334
page.nextStepIndex = 0;
3435
await page.open();
3536
await page.checkReady();

0 commit comments

Comments
 (0)