Skip to content

Commit f6ae4a3

Browse files
committed
REG-34: Fix yarn lint errors
1 parent a3bd291 commit f6ae4a3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

steps/donation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ BeforeAll(() => {
2929
// Steps
3030
Given(
3131
/^that I am on my chosen ([a-zA-Z]+)-enabled charity's Donate page$/,
32-
async (psp) => {
32+
async () => {
3333
page.nextStepIndex = 0;
3434
await page.open();
3535
await page.checkReady();

support/mailtrap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export async function checkAnEmailBodyContainsText(searchText, toEmailAddress) {
8787
*
8888
* @param {string} searchText Text to expect in latest subject line.
8989
* @param {string} toEmailAddress Only find emails addressed to this account
90-
* @returns {Promise<void>}
90+
* @returns {Promise<void>} Promise that resolves when check is done.
9191
*/
9292
export async function checkAnEmailSubjectContainsText(searchText, toEmailAddress) {
9393
const messages = await getLatestMessages(toEmailAddress);

0 commit comments

Comments
 (0)