Fix test name and remove commented lines

This commit is contained in:
Joshua 2024-04-09 15:25:36 +05:30
parent df6c26e9f7
commit 32322629ca

View File

@ -44,7 +44,7 @@ test('Test Login Form', async ({page}, workerInfo) => {
save_visual(page);
});
test('@openid Test Login Form OpenID back and forth navigation', async ({page}, workerInfo) => {
test('Test Login Form OpenID navigation', async ({page}, workerInfo) => {
const response = await page.goto('/user/login');
expect(response?.status()).toBe(200); // Status OK
@ -53,8 +53,6 @@ test('@openid Test Login Form OpenID back and forth navigation', async ({page},
await page.waitForLoadState('networkidle');
expect(page.url()).toBe(`${workerInfo.project.use.baseURL}/user/login/openid`);
// await expect(page.getByText('Sign in with username and password')).toBeVisible();
save_visual(page);
});