Add src/placeholder.test.ts to confirm the Vitest harness works end-to-end (npm test passes). Update CLAUDE.md project structure to reflect the now-created src/ directory. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
8 lines
154 B
TypeScript
8 lines
154 B
TypeScript
import { describe, it, expect } from 'vitest';
|
|
|
|
describe('test harness', () => {
|
|
it('runs a passing test', () => {
|
|
expect(1 + 1).toBe(2);
|
|
});
|
|
});
|