mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-22 05:16:23 +02:00
🩹 Make email placeholders RFC 2606 compliant (#622)
This commit is contained in:
parent
89700238ff
commit
e21949194b
24 changed files with 32 additions and 32 deletions
|
@ -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,
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue