merge
This commit is contained in:
@@ -1,17 +0,0 @@
|
||||
import { expect, test } from './test';
|
||||
|
||||
test('login', async ({ page }) => {
|
||||
// Go to /login
|
||||
await page.goto('/login');
|
||||
|
||||
// Fill input[name="email"]
|
||||
await page.locator('input[name="email"]').fill('test@umbraco.com');
|
||||
|
||||
// Fill input[name="password"]
|
||||
await page.locator('input[name="password"]').fill('test123456');
|
||||
|
||||
// Click [aria-label="Login"]
|
||||
await page.locator('[aria-label="Login"]').click();
|
||||
|
||||
await expect(page).toHaveURL(`/section/content/dashboard/welcome`);
|
||||
});
|
||||
Reference in New Issue
Block a user