docs(rules): update frontend testing and Bulma usage standards
- Add reliable test execution patterns - Add dark mode implementation details - Add specific component patterns - Update examples with real-world usage
This commit is contained in:
parent
c1873066eb
commit
8a1263bd50
2 changed files with 126 additions and 83 deletions
|
@ -18,90 +18,101 @@ When styling components:
|
||||||
- Keep modifier classes consistent with Bulma's patterns
|
- Keep modifier classes consistent with Bulma's patterns
|
||||||
- Use semantic Bulma classes (e.g., 'button is-primary' not custom colors)
|
- Use semantic Bulma classes (e.g., 'button is-primary' not custom colors)
|
||||||
|
|
||||||
3. Custom Styles:
|
3. Dark Mode Implementation:
|
||||||
- Only add custom CSS when Bulma doesn't provide the functionality
|
- Define CSS variables in app.html for global theme
|
||||||
- Document why custom CSS is needed
|
- Use --bulma-* prefix for all theme variables
|
||||||
- Use Bulma's CSS variables for theming
|
- Override component-specific variables as needed
|
||||||
- Keep custom styles minimal and focused
|
- Test all components in both light/dark modes
|
||||||
|
- Common variables to define:
|
||||||
|
```css
|
||||||
|
body.dark-mode {
|
||||||
|
--bulma-scheme-main: #1a1a1a;
|
||||||
|
--bulma-scheme-main-bis: #242424;
|
||||||
|
--bulma-scheme-main-ter: #2f2f2f;
|
||||||
|
--bulma-text: #e6e6e6;
|
||||||
|
--bulma-text-strong: #ffffff;
|
||||||
|
--bulma-border: #4a4a4a;
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
4. Dark Mode:
|
4. Navigation Patterns:
|
||||||
- Use Bulma's CSS variables for theming
|
- Mobile: Use fixed bottom navbar
|
||||||
- Override colors using CSS variables, not direct colors
|
- Desktop: Use fixed left sidebar
|
||||||
- Maintain consistent contrast ratios
|
- Handle responsive transitions cleanly
|
||||||
- Test dark mode for all components
|
- Use consistent icon + label patterns
|
||||||
|
- Maintain active state indicators
|
||||||
|
|
||||||
5. Responsive Design:
|
5. Card Patterns:
|
||||||
- Use Bulma's responsive classes (is-*-mobile, is-*-tablet, etc.)
|
- Use standard card structure:
|
||||||
|
```html
|
||||||
|
<div class="card">
|
||||||
|
<div class="card-content">
|
||||||
|
<p class="title is-4">Title</p>
|
||||||
|
<p class="subtitle is-6">Subtitle</p>
|
||||||
|
<div class="content">Content</div>
|
||||||
|
</div>
|
||||||
|
<footer class="card-footer">
|
||||||
|
<a class="card-footer-item">Action</a>
|
||||||
|
</footer>
|
||||||
|
</div>
|
||||||
|
```
|
||||||
|
- Keep actions in card-footer
|
||||||
|
- Use consistent spacing
|
||||||
|
- Handle long content gracefully
|
||||||
|
|
||||||
|
6. Form Patterns:
|
||||||
|
- Use standard field structure:
|
||||||
|
```html
|
||||||
|
<div class="field">
|
||||||
|
<label class="label">Label</label>
|
||||||
|
<div class="control">
|
||||||
|
<input class="input" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
```
|
||||||
|
- Group related fields with field-group
|
||||||
|
- Use appropriate input types
|
||||||
|
- Add helper text when needed
|
||||||
|
|
||||||
|
7. Responsive Design:
|
||||||
|
- Use Bulma's responsive classes
|
||||||
- Test all breakpoints
|
- Test all breakpoints
|
||||||
- Maintain consistent spacing across screen sizes
|
- Maintain consistent spacing
|
||||||
- Use proper container classes
|
- Use proper container classes
|
||||||
|
- Handle mobile-specific patterns:
|
||||||
6. Common Patterns:
|
- Touch-friendly tap targets
|
||||||
- Forms: field > label + control > input
|
- Simplified navigation
|
||||||
- Buttons: button + is-* modifiers
|
- Adjusted font sizes
|
||||||
- Cards: card > card-header + card-content + card-footer
|
- Full-width buttons
|
||||||
- Navigation: navbar with proper structure
|
|
||||||
- Grid: columns > column with proper sizes
|
|
||||||
|
|
||||||
7. Performance:
|
|
||||||
- Don't duplicate Bulma styles
|
|
||||||
- Minimize custom CSS
|
|
||||||
- Use Bulma's minified version
|
|
||||||
- Remove unused Bulma features if size is a concern
|
|
||||||
|
|
||||||
metadata:
|
metadata:
|
||||||
priority: high
|
priority: high
|
||||||
version: 1.0
|
version: 1.1
|
||||||
</rule>
|
</rule>
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- input: |
|
- input: |
|
||||||
# Bad: Custom styles for spacing
|
# Bad: Custom dark mode colors
|
||||||
<style>
|
.dark-mode .button {
|
||||||
.my-component {
|
background: #333;
|
||||||
margin-bottom: 20px;
|
|
||||||
padding: 15px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
output: |
|
|
||||||
<!-- Good: Bulma utilities -->
|
|
||||||
<div class="mb-5 p-4">...</div>
|
|
||||||
|
|
||||||
- input: |
|
|
||||||
# Bad: Custom color styles
|
|
||||||
<style>
|
|
||||||
.custom-button {
|
|
||||||
background: #3273dc;
|
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
</style>
|
|
||||||
output: |
|
output: |
|
||||||
<!-- Good: Bulma color classes -->
|
# Good: Theme variables
|
||||||
<button class="button is-primary">...</button>
|
body.dark-mode {
|
||||||
|
--bulma-button-background-color: #363636;
|
||||||
- input: |
|
--bulma-button-color: #e6e6e6;
|
||||||
# Bad: Custom responsive styles
|
|
||||||
<style>
|
|
||||||
@media (max-width: 768px) {
|
|
||||||
.hide-mobile { display: none; }
|
|
||||||
}
|
}
|
||||||
</style>
|
|
||||||
output: |
|
|
||||||
<!-- Good: Bulma responsive classes -->
|
|
||||||
<div class="is-hidden-mobile">...</div>
|
|
||||||
|
|
||||||
- input: |
|
- input: |
|
||||||
# Bad: Inconsistent form structure
|
# Bad: Inconsistent navigation
|
||||||
<div>
|
<div class="nav-mobile">...</div>
|
||||||
<label>Name</label>
|
<div class="sidebar">...</div>
|
||||||
<input type="text">
|
|
||||||
</div>
|
|
||||||
output: |
|
output: |
|
||||||
<!-- Good: Bulma form structure -->
|
# Good: Responsive navigation
|
||||||
<div class="field">
|
{#if isMobile}
|
||||||
<label class="label">Name</label>
|
<nav class="navbar is-fixed-bottom">...</nav>
|
||||||
<div class="control">
|
{:else}
|
||||||
<input class="input" type="text">
|
<nav class="menu is-fixed-left">...</nav>
|
||||||
</div>
|
{/if}
|
||||||
</div>
|
|
||||||
</rewritten_file>
|
</rewritten_file>
|
|
@ -14,10 +14,10 @@ When working on frontend features:
|
||||||
|
|
||||||
2. Test Structure:
|
2. Test Structure:
|
||||||
- Use descriptive test names
|
- Use descriptive test names
|
||||||
|
- Reset database state before each test
|
||||||
- Group related tests in describe blocks
|
- Group related tests in describe blocks
|
||||||
- Use beforeEach for common setup
|
|
||||||
- Clean up test data after each test
|
|
||||||
- Keep tests focused and atomic
|
- Keep tests focused and atomic
|
||||||
|
- Add explicit waits and checks at key points
|
||||||
|
|
||||||
3. Testing Best Practices:
|
3. Testing Best Practices:
|
||||||
- Test user interactions, not implementation
|
- Test user interactions, not implementation
|
||||||
|
@ -26,7 +26,16 @@ When working on frontend features:
|
||||||
- Test across multiple browsers
|
- Test across multiple browsers
|
||||||
- Verify visual and functional aspects
|
- Verify visual and functional aspects
|
||||||
|
|
||||||
4. Required Test Cases:
|
4. Reliable Test Execution:
|
||||||
|
- Always reset database state with `/api/test/reset`
|
||||||
|
- Wait for redirects with URL checks
|
||||||
|
- Wait for content with `.waitForSelector()`
|
||||||
|
- Check element visibility before interaction
|
||||||
|
- Use specific selectors (id, role, exact text)
|
||||||
|
- Add explicit waits after state changes
|
||||||
|
- Store URLs after navigation for reliable returns
|
||||||
|
|
||||||
|
5. Required Test Cases:
|
||||||
- Navigation flows
|
- Navigation flows
|
||||||
- Form submissions
|
- Form submissions
|
||||||
- Error handling
|
- Error handling
|
||||||
|
@ -34,25 +43,48 @@ When working on frontend features:
|
||||||
- Responsive behavior
|
- Responsive behavior
|
||||||
- Cross-browser compatibility
|
- Cross-browser compatibility
|
||||||
|
|
||||||
5. Running Tests:
|
6. Database Considerations:
|
||||||
|
- Use single worker mode due to shared database
|
||||||
|
- Reset database state before each test
|
||||||
|
- Avoid parallel test execution
|
||||||
|
- Consider test isolation needs
|
||||||
|
|
||||||
|
7. Running Tests:
|
||||||
- Run tests before committing: `bun test`
|
- Run tests before committing: `bun test`
|
||||||
- Debug tests with UI: `bun test:ui`
|
- Debug tests with UI: `bun test:ui`
|
||||||
- Debug specific test: `bun test:debug`
|
- Debug specific test: `bun test:debug`
|
||||||
- Install browsers: `bun test:install`
|
- Install browsers: `bun test:install`
|
||||||
|
|
||||||
6. CI Integration:
|
|
||||||
- Tests must pass in CI
|
|
||||||
- Screenshots on failure
|
|
||||||
- HTML test reports
|
|
||||||
- Retry failed tests
|
|
||||||
- Parallel execution where possible
|
|
||||||
|
|
||||||
metadata:
|
metadata:
|
||||||
priority: high
|
priority: high
|
||||||
version: 1.0
|
version: 1.1
|
||||||
</rule>
|
</rule>
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
|
- input: |
|
||||||
|
# Bad: Unreliable waiting
|
||||||
|
await page.click('button');
|
||||||
|
await page.locator('h1').textContent();
|
||||||
|
output: |
|
||||||
|
# Good: Explicit waits and checks
|
||||||
|
await page.click('button');
|
||||||
|
await expect(page).toHaveURL(/\/expected-path/);
|
||||||
|
await page.waitForSelector('h1');
|
||||||
|
await expect(page.locator('h1')).toBeVisible();
|
||||||
|
|
||||||
|
- input: |
|
||||||
|
# Bad: No state reset
|
||||||
|
test('creates item', async ({ page }) => {
|
||||||
|
await page.goto('/items/new');
|
||||||
|
});
|
||||||
|
output: |
|
||||||
|
# Good: Reset state first
|
||||||
|
test('creates item', async ({ page }) => {
|
||||||
|
await page.goto('/');
|
||||||
|
await page.request.post('/api/test/reset');
|
||||||
|
await page.goto('/items/new');
|
||||||
|
});
|
||||||
|
|
||||||
- input: |
|
- input: |
|
||||||
# Bad: No tests for new feature
|
# Bad: No tests for new feature
|
||||||
git commit -m "feat: add note search"
|
git commit -m "feat: add note search"
|
||||||
|
|
Loading…
Add table
Reference in a new issue