スキル一覧に戻る
0xsend

sendapp-testing

by 0xsend

The Send App monorepo.

33🍴 18📅 2026年1月23日
GitHubで見るManusで実行

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

AreaFrameworkCommand
Packages (/packages/*)Jestcd packages/<name> && yarn test
Database (/supabase)pgTAPcd supabase && yarn test
E2E (/apps/next)Playwrightcd 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 dev in /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.

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

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

レビュー

💬

レビュー機能は近日公開予定です