Compare commits
2 Commits
b9bbb676b1
...
829bd6d5d8
| Author | SHA1 | Date | |
|---|---|---|---|
| 829bd6d5d8 | |||
|
|
47d6d61d51 |
@ -39,7 +39,8 @@ npm run dev
|
||||
|
||||
```
|
||||
quote-of-the-day-api/
|
||||
├── src/ # TypeScript source (to be created)
|
||||
├── src/ # TypeScript source
|
||||
│ └── placeholder.test.ts # harness smoke test
|
||||
├── dist/ # compiled output (git-ignored)
|
||||
├── package.json
|
||||
├── package-lock.json
|
||||
|
||||
7
src/placeholder.test.ts
Normal file
7
src/placeholder.test.ts
Normal file
@ -0,0 +1,7 @@
|
||||
import { describe, it, expect } from 'vitest';
|
||||
|
||||
describe('test harness', () => {
|
||||
it('runs a passing test', () => {
|
||||
expect(1 + 1).toBe(2);
|
||||
});
|
||||
});
|
||||
Loading…
Reference in New Issue
Block a user