()
| 97 | } |
| 98 | |
| 99 | async testCodeSnippets() { |
| 100 | console.log('🔍 Testing code snippets...\n'); |
| 101 | |
| 102 | await this.testQuery( |
| 103 | 'Code Snippets by Type', |
| 104 | `SELECT snippet_type, COUNT(*) as count FROM code_snippets GROUP BY snippet_type` |
| 105 | ); |
| 106 | |
| 107 | await this.testQuery( |
| 108 | 'Sample CSS Snippets', |
| 109 | `SELECT * FROM code_snippets WHERE snippet_type = 'css' LIMIT 2` |
| 110 | ); |
| 111 | } |
| 112 | |
| 113 | async testDemoStyles() { |
| 114 | console.log('🔍 Testing demo styles...\n'); |