pluginagentmarketplace/custom-plugin-typescript · Archived

testing

TypeScript testing strategies and type-safe test practices

First seen Jan 29, 2026

Installation

$ npx skills add pluginagentmarketplace/custom-plugin-typescript --skill testing

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from pluginagentmarketplace/custom-plugin-typescript · top by installs.

npx skills add pluginagentmarketplace/custom-plugin-typescript

Browse all from pluginagentmarketplace/custom-plugin-typescript

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1
License LICENSE
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,215 B
  • docs SUMMARY.md 73 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 7 installs

SKILL.md

TypeScript Testing Skill

Overview

Master TypeScript testing including type-safe test setup, mocking with types, and testing type definitions.

Topics Covered

Test Setup

  • Jest with ts-jest
  • Vitest configuration
  • ts-node for tests
  • Path alias resolution
  • Test coverage with types

Type-Safe Mocking

  • Typed mock functions
  • jest.Mocked utility
  • vi.fn() typing
  • Mock implementations
  • Partial mocking

Type Testing

  • tsd for type tests
  • expect-type library
  • Type assertion tests
  • Compile-time testing
  • Edge case type testing

Testing Patterns

  • Generic test utilities
  • Type-safe fixtures
  • Builder patterns for tests
  • Custom matchers with types
  • Assertion type narrowing

Integration Testing

  • API testing with types
  • Database testing
  • E2E type safety
  • Request/response typing
  • Test data factories

Prerequisites

  • TypeScript fundamentals
  • JavaScript testing basics

Learning Outcomes

  • Write type-safe tests
  • Test type definitions
  • Create typed mocks
  • Build test utilities