|
| 1 | +name: Browser Testing Task |
| 2 | +description: Manual or automated browser testing for wa-sqlite adapter |
| 3 | +title: "[Browser Testing] " |
| 4 | +labels: ["browser-support", "testing", "skill-ready"] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + ## Browser Testing Checklist |
| 10 | + Use this template to track browser testing progress across Chrome, Firefox, and Safari. |
| 11 | +
|
| 12 | + **AgentDB Skill:** This issue can be automated with `agentdb-browser-test` skill |
| 13 | +
|
| 14 | + - type: checkboxes |
| 15 | + id: browsers |
| 16 | + attributes: |
| 17 | + label: Browsers to Test |
| 18 | + description: Select browsers for testing |
| 19 | + options: |
| 20 | + - label: Chrome (latest) |
| 21 | + - label: Firefox (latest) |
| 22 | + - label: Safari (latest) |
| 23 | + |
| 24 | + - type: checkboxes |
| 25 | + id: vfs-backends |
| 26 | + attributes: |
| 27 | + label: VFS Backends |
| 28 | + description: Test each VFS backend |
| 29 | + options: |
| 30 | + - label: OPFS (Origin Private File System) |
| 31 | + - label: IndexedDB (Fallback) |
| 32 | + - label: Memory (In-memory, no persistence) |
| 33 | + |
| 34 | + - type: checkboxes |
| 35 | + id: test-suite |
| 36 | + attributes: |
| 37 | + label: Test Suite (test.html) |
| 38 | + description: Functional tests from NodeAdapter (19 total) |
| 39 | + options: |
| 40 | + - label: All 19 tests pass |
| 41 | + - label: OPFS detection works |
| 42 | + - label: IndexedDB fallback works |
| 43 | + - label: Persistence validated (data survives page reload) |
| 44 | + |
| 45 | + - type: checkboxes |
| 46 | + id: benchmarks |
| 47 | + attributes: |
| 48 | + label: Performance Benchmarks (benchmark.html) |
| 49 | + description: Compare with Node.js baseline |
| 50 | + options: |
| 51 | + - label: All operations complete successfully |
| 52 | + - label: Performance within 2.5x Node.js baseline |
| 53 | + - label: OPFS: 1.2-1.8x slower (target) |
| 54 | + - label: IndexedDB: 1.8-2.5x slower (acceptable) |
| 55 | + |
| 56 | + - type: textarea |
| 57 | + id: results |
| 58 | + attributes: |
| 59 | + label: Test Results |
| 60 | + description: Paste results from browser console or attach screenshots |
| 61 | + placeholder: | |
| 62 | + Example: |
| 63 | + Chrome + OPFS: 19/19 tests pass, performance 1.6x slower ✅ |
| 64 | + Firefox + OPFS: 19/19 tests pass, performance 1.7x slower ✅ |
| 65 | + Safari + OPFS: 19/19 tests pass, performance 1.8x slower ✅ |
| 66 | +
|
| 67 | + - type: dropdown |
| 68 | + id: automation |
| 69 | + attributes: |
| 70 | + label: Testing Method |
| 71 | + description: Manual or automated testing? |
| 72 | + options: |
| 73 | + - Manual (open test.html in browsers) |
| 74 | + - Automated (Playwright via agentdb-browser-test skill) |
| 75 | + - Both (manual validation after automated run) |
| 76 | + default: 1 |
| 77 | + |
| 78 | + - type: textarea |
| 79 | + id: notes |
| 80 | + attributes: |
| 81 | + label: Additional Notes |
| 82 | + description: Any issues, anomalies, or observations |
| 83 | + placeholder: | |
| 84 | + Example: |
| 85 | + - Safari OPFS faster than expected (1.8x vs 2.0x predicted) |
| 86 | + - OPFS not available in Firefox incognito mode |
| 87 | + - IndexedDB quota warning in Safari after 50MB |
0 commit comments