Skip to content

Commit 5ac22dc

Browse files
thavelickclaude
andcommitted
Add minimal package.json for Playwright integration tests
- Add package.json with only @playwright/test dependency for browser testing - Core application remains dependency-free, only test infrastructure needs this - All test suites now working: unit tests (95.8% coverage) + integration tests - Maintains clean separation between runtime (no deps) and testing (minimal deps) 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent f21e11e commit 5ac22dc

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

bun.lock

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"name": "just-bangs-lite",
3+
"version": "1.0.0",
4+
"description": "Client-side search tool with bang shortcuts",
5+
"devDependencies": {
6+
"@playwright/test": "^1.49.1"
7+
}
8+
}

0 commit comments

Comments
 (0)