d4d8d8a3b6
- Migrated monolithic main.py to feature-scoped routers in app/routers/ - Added GEMINI.md for project context and AI instructional guidelines - Updated README.md with a comprehensive modernization plan (SQL migration, robust scraping DSL, frontend modernization) - Improved authentication with cookie support and modular JS - Updated test suite and documentation
9 lines
172 B
JavaScript
9 lines
172 B
JavaScript
// Smoke test to verify Vitest setup
|
|
import { describe, it, expect } from 'vitest';
|
|
|
|
describe('smoke', () => {
|
|
it('works', () => {
|
|
expect(true).toBe(true);
|
|
});
|
|
});
|