testing | Skill Performance & Reviews | TopRankSkills

TopRank Skills

Home / Skills / tools / testing

testing

maintained by ykzts

star 0 account_tree 0 verified_user MIT License
bolt View GitHub

name: testing description: Write and run tests using Vitest. Understand linting and formatting with Biome. Apply testing patterns for components, utilities, and Server Actions. metadata: author: Bingify version: "1.0"

Testing & Code Quality

このスキルは、Bingifyプロジェクトのテスト戦略とコード品質管理をカバーします。

概要

BingifyはVitestでテストを実行し、Biomeでリント・フォーマットを管理します。

テストファイルの配置

テストファイルは以下のパターンで配置:

lib/
  utils.ts
  __tests__/
    utils.test.ts

テストの作成

import { describe, it, expect } from "vitest";
import { formatDate } from "../utils";

describe("ユーティリティ関数", () => {
  it("日付を正しくフォーマットする", () => {
    const date = new Date("2026-01-11");
    const result = formatDate(date, "YYYY-MM-DD");
    expect(result).toBe("2026-01-11");
  });
});

テスト実行

# すべてのテスト
pnpm test

# ウォッチモード
pnpm test -- --watch

# カバレッジ
pnpm test -- --coverage

参考

chat Comments (0)

chat_bubble_outline

No comments yet. Be the first to share your thoughts!

Skill Details

GitHub Stars 0
GitHub Forks 0
Created Jan 2026
Last Updated il y a 5 mois
tools tools testing

Related Skills

test-driven-development
chevron_right
checking-visuals
chevron_right
write-test
chevron_right
test-tdd
chevron_right
test-msw
chevron_right

Build your own?

Join 12,000+ developers contributing to the Claude ecosystem.