Allow participant to enter email to receive edit link (#534)

This commit is contained in:
Luke Vella 2023-03-03 16:50:50 +00:00 committed by GitHub
parent aab999598e
commit 0ac3c95755
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 230 additions and 81 deletions

View file

@ -1,12 +1,11 @@
import { expect, test } from "@playwright/test";
import { load } from "cheerio";
import smtpTester from "smtp-tester";
import smtpTester, { SmtpTester } from "smtp-tester";
test.describe.serial(() => {
let mailServer: smtpTester.SmtpTester;
let pollUrl: string;
let mailServer: SmtpTester;
test.beforeAll(async () => {
mailServer = smtpTester.init(4025);
});