Refactor useAuth hook, settings components, and docs for formatting and readability improvements
- Consolidated multi-line arguments into single lines where appropriate in `useAuth`. - Improved spacing and readability in data processing across components (`ProfileSettingsForm`, `PasswordChangeForm`, `SessionCard`). - Applied consistent table and markdown formatting in design system docs (e.g., `README.md`, `08-ai-guidelines.md`, `00-quick-start.md`). - Updated code snippets to ensure adherence to Prettier rules and streamlined JSX structures.
This commit is contained in:
@@ -15,7 +15,9 @@ test.describe('Admin Organization Members - Navigation from Organizations List',
|
||||
await page.waitForSelector('table tbody tr');
|
||||
});
|
||||
|
||||
test('should navigate to members page when clicking view members in action menu', async ({ page }) => {
|
||||
test('should navigate to members page when clicking view members in action menu', async ({
|
||||
page,
|
||||
}) => {
|
||||
// Click first organization's action menu
|
||||
const actionButton = page.getByRole('button', { name: /Actions for/i }).first();
|
||||
await actionButton.click();
|
||||
@@ -23,7 +25,7 @@ test.describe('Admin Organization Members - Navigation from Organizations List',
|
||||
// Click "View Members"
|
||||
await Promise.all([
|
||||
page.waitForURL(/\/admin\/organizations\/[^/]+\/members/),
|
||||
page.getByText('View Members').click()
|
||||
page.getByText('View Members').click(),
|
||||
]);
|
||||
|
||||
// Should be on members page
|
||||
@@ -38,7 +40,7 @@ test.describe('Admin Organization Members - Navigation from Organizations List',
|
||||
// Click on member count
|
||||
await Promise.all([
|
||||
page.waitForURL(/\/admin\/organizations\/[^/]+\/members/),
|
||||
memberButton.click()
|
||||
memberButton.click(),
|
||||
]);
|
||||
|
||||
// Should be on members page
|
||||
@@ -59,7 +61,7 @@ test.describe('Admin Organization Members - Page Structure', () => {
|
||||
|
||||
await Promise.all([
|
||||
page.waitForURL(/\/admin\/organizations\/[^/]+\/members/),
|
||||
page.getByText('View Members').click()
|
||||
page.getByText('View Members').click(),
|
||||
]);
|
||||
});
|
||||
|
||||
@@ -74,7 +76,9 @@ test.describe('Admin Organization Members - Page Structure', () => {
|
||||
});
|
||||
|
||||
test('should display page description', async ({ page }) => {
|
||||
await expect(page.getByText('Manage members and their roles within the organization')).toBeVisible();
|
||||
await expect(
|
||||
page.getByText('Manage members and their roles within the organization')
|
||||
).toBeVisible();
|
||||
});
|
||||
|
||||
test('should display add member button', async ({ page }) => {
|
||||
@@ -87,7 +91,6 @@ test.describe('Admin Organization Members - Page Structure', () => {
|
||||
await expect(backButton).toBeVisible();
|
||||
});
|
||||
|
||||
|
||||
test('should have proper heading hierarchy', async ({ page }) => {
|
||||
// Wait for page to load
|
||||
await page.waitForSelector('table');
|
||||
@@ -129,7 +132,7 @@ test.describe('Admin Organization Members - AddMemberDialog E2E Tests', () => {
|
||||
|
||||
await Promise.all([
|
||||
page.waitForURL(/\/admin\/organizations\/[^/]+\/members/),
|
||||
page.getByText('View Members').click()
|
||||
page.getByText('View Members').click(),
|
||||
]);
|
||||
|
||||
// Open Add Member dialog
|
||||
@@ -150,7 +153,9 @@ test.describe('Admin Organization Members - AddMemberDialog E2E Tests', () => {
|
||||
});
|
||||
|
||||
test('should display dialog description', async ({ page }) => {
|
||||
await expect(page.getByText(/Add a user to this organization and assign them a role/i)).toBeVisible();
|
||||
await expect(
|
||||
page.getByText(/Add a user to this organization and assign them a role/i)
|
||||
).toBeVisible();
|
||||
});
|
||||
|
||||
test('should display user email select field', async ({ page }) => {
|
||||
|
||||
Reference in New Issue
Block a user