🩹 Make email placeholders RFC 2606 compliant (#622)

This commit is contained in:
Peter Lewis 2023-03-30 09:37:16 +01:00 committed by GitHub
parent 89700238ff
commit e21949194b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
24 changed files with 32 additions and 32 deletions

View file

@ -38,8 +38,8 @@ test.describe.serial(() => {
await page.type('[placeholder="Jessie Smith"]', "John");
await page.type(
'[placeholder="jessie.smith@email.com"]',
"john.doe@email.com",
'[placeholder="jessie.smith@example.com"]',
"john.doe@example.com",
);
await page.click('text="Create poll"');
@ -50,7 +50,7 @@ test.describe.serial(() => {
await expect(title).toHaveText("Monthly Meetup");
const { email } = await mailServer.captureOne("john.doe@email.com", {
const { email } = await mailServer.captureOne("john.doe@example.com", {
wait: 5000,
});