← Back to list

sendapp-testing
by 0xsend
The Send App monorepo.
⭐ 33🍴 18📅 Jan 23, 2026
SKILL.md
name: sendapp-testing description: Testing workflows for Send app. Use when running tests, debugging test failures, or setting up test infrastructure. Covers Jest (packages), pgTAP (Supabase), and Playwright (E2E).
Testing in Send App
Quick Reference
| Area | Framework | Command |
|---|---|---|
Packages (/packages/*) | Jest | cd packages/<name> && yarn test |
Database (/supabase) | pgTAP | cd supabase && yarn test |
E2E (/apps/next) | Playwright | cd packages/playwright && yarn test |
Jest (Packages)
# Run all tests in a package
cd packages/<package-name> && yarn test
# Run single test file
cd packages/<package-name> && yarn test path/to/test.test.ts
pgTAP (Supabase)
# Run database tests
cd supabase && yarn test
Before running tests after schema changes:
cd supabase && yarn reset
Requires local Supabase instance:
cd supabase && yarn start
Playwright (E2E)
cd packages/playwright && yarn test
This loads environment variables via _with-env automatically.
Prerequisites:
- Next.js app must be running (
yarn devin/apps/next) - Or use Tilt:
tilt up next:web
Other Apps
Apps under /apps (excluding /apps/next) don't have standardized testing. Discuss testing strategy when working in these areas.
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
✓フォーク
10回以上フォークされている
+5
○Issue管理
オープンIssueが50未満
0/5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon