test: add tests for mitarbeiter creation and validation
All checks were successful
Playwright Tests / test (pull_request) Successful in 2m36s

This commit is contained in:
Jan K9f 2025-01-17 13:32:11 +01:00
parent 3882cde8ca
commit a6047e2720
Signed by: jank
GPG key ID: 50620ADD22CD330B
2 changed files with 86 additions and 1 deletions

View file

@ -40,7 +40,7 @@ test.describe('mitarbeiter', () => {
const users = page.getByText('Delete');
await users.first().waitFor({ state: "visible" });
expect(await users.count()).toBe(2);
expect(await users.count()).toBeGreaterThan(1);
expect(button).toBeTruthy();
});