Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -761,5 +761,23 @@ The score is:
- Used to determine the risk level badge color

---
### Watch Mode

For a faster development workflow, run Jest in watch mode:

```bash
npm run test:watch
```

Jest will automatically rerun relevant tests whenever files change, providing immediate feedback during development.

### Coverage Reporting

Generate a coverage report:

```bash
npm run test:coverage
```


_Built with Next.js · E2B · Neon PostgreSQL · Inngest · Groq · TypeScript_
8 changes: 8 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
"name": "secdev",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "jest",
"test:watch": "jest --watch",
},
"scripts": {
"dev": "next dev",
"build": "next build",
Expand Down