1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-06-20 02:10:07 +00:00

Fix playwright tests

This commit is contained in:
Timshel 2025-04-09 15:16:13 +02:00
parent ebbb351be9
commit 7a78423ec4
2 changed files with 8 additions and 6 deletions

View file

@ -60,11 +60,11 @@ test('Invite users', async ({ page }) => {
});
});
test.skip('Create invited account', async ({ page }) => {
test('Create invited account', async ({ page }) => {
await createAccount(test, page, users.user2);
});
test.skip('Confirm invited user', async ({ page }) => {
test('Confirm invited user', async ({ page }) => {
await logUser(test, page, users.user1);
await page.getByLabel('Switch products').click();
await page.getByRole('link', { name: ' Admin Console' }).click();
@ -78,7 +78,7 @@ test.skip('Confirm invited user', async ({ page }) => {
});
});
test.skip('Organization is visible', async ({ context, page }) => {
test('Organization is visible', async ({ context, page }) => {
await logUser(test, page, users.user2);
await page.getByLabel('vault: Test').click();
await expect(page.getByLabel('Filter: Default collection')).toBeVisible();