Skip to content

Commit

Permalink
✅(frontend) adapt test with new list
Browse files Browse the repository at this point in the history
After the modifications to the back, some adjustments are expected
on the front side to remove the random aspect of the user search
  • Loading branch information
PanchoutNathan committed Oct 30, 2024
1 parent ad4065e commit a42e7a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,9 @@ test.describe('Members Delete', () => {
await createTeam(page, 'member-delete-6', browserName, 1);

// To not be the only owner
await addNewMember(page, 0, 'Owner');
await addNewMember(page, 0, 'Owner', 'Jean');

const username = await addNewMember(page, 1, 'Administration', 'something');
const username = await addNewMember(page, 0, 'Administration', 'Monique');

const table = page.getByLabel('List members card').getByRole('table');

Expand Down
4 changes: 0 additions & 4 deletions src/frontend/apps/e2e/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,5 @@ export default defineConfig({
name: 'chromium',
use: { ...devices['Desktop Chrome'], locale: 'en-US' },
},
{
name: 'webkit',
use: { ...devices['Desktop Safari'], locale: 'en-US' },
},
],
});

0 comments on commit a42e7a1

Please sign in to comment.