22 lines
677 B
TypeScript
22 lines
677 B
TypeScript
jest.setTimeout(60e3);
|
|
|
|
test("login with pro@example.com", async () => {
|
|
const context = await browser.newContext();
|
|
const page = await context.newPage();
|
|
await page.goto("http://localhost:3000/auth/login");
|
|
// Click input[name="email"]
|
|
await page.click('input[name="email"]');
|
|
// Fill input[name="email"]
|
|
await page.fill('input[name="email"]', `pro@example.com`);
|
|
// Press Tab
|
|
await page.press('input[name="email"]', "Tab");
|
|
// Fill input[name="password"]
|
|
await page.fill('input[name="password"]', `pro`);
|
|
// Press Enter
|
|
await page.press('input[name="password"]', "Enter");
|
|
|
|
await page.waitForSelector("[data-testid=event-types]");
|
|
});
|
|
|
|
export {};
|