Compare commits

..

No commits in common. "829bd6d5d899eef01cfeaa1e67822cbd6f7efa3c" and "b9bbb676b1ef64c96b0dc494c16ef9a0b73122a3" have entirely different histories.

2 changed files with 1 additions and 9 deletions

View File

@ -39,8 +39,7 @@ npm run dev
```
quote-of-the-day-api/
├── src/ # TypeScript source
│ └── placeholder.test.ts # harness smoke test
├── src/ # TypeScript source (to be created)
├── dist/ # compiled output (git-ignored)
├── package.json
├── package-lock.json

View File

@ -1,7 +0,0 @@
import { describe, it, expect } from 'vitest';
describe('test harness', () => {
it('runs a passing test', () => {
expect(1 + 1).toBe(2);
});
});