Use when a module needs test coverage - creates tests for adapters, hooks/composables/stores, and components.
Scanned 9/4/2026
Install to Claude Code
npx -y skills add NoaiRox/specialist-agent --skill dev-create-test --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Dev Create Test?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/noairox-dev-create-test-7004c508)More formats (shields.io, HTML) on the badges page.
---
name: dev-create-test
description: "Use when a module needs test coverage - creates tests for adapters, hooks/composables/stores, and components."
user-invocable: true
argument-hint: "[file-path]"
allowed-tools: Read, Write, Edit, Bash, Glob, Grep
---
Create tests for the specified file or module.
Target: $ARGUMENTS
## Steps
1. Analyze the file to understand what to test.
2. Determine the test type:
### Adapter (high priority -- pure functions, easy to test)
```typescript
import { describe, it, expect } from 'vitest'
import { xxxAdapter } from '../adapters/xxx-adapter'
describe('xxxAdapter', () => {
describe('toXxx', () => {
it('should convert API response to app contract', () => {
const response = { uuid: '123', field_name: 'test', created_at: '2024-01-01T00:00:00Z' }
const result = xxxAdapter.toXxx(response)
expect(result.id).toBe('123')
expect(result.fieldName).toBe('test')
expect(result.createdAt).toBeInstanceOf(Date)
})
})
})
```
### Hook (medium priority -- mock service, use renderHook)
```typescript
import { describe, it, expect, vi } from 'vitest'
import { renderHook, waitFor } from '@testing-library/react'
import { QueryClient, QueryClientProvider } from '@tanstack/react-query'
import { useXxxList } from '../hooks/useXxxList'
import type { ReactNode } from 'react'
// Mock service
vi.mock('../services/xxx-service')
function createWrapper() {
const queryClient = new QueryClient({
defaultOptions: { queries: { retry: false } },
})
return ({ children }: { children: ReactNode }) => (
<QueryClientProvider client={queryClient}>{children}</QueryClientProvider>
)
}
describe('useXxxList', () => {
it('should return items', async () => {
const { result } = renderHook(() => useXxxList({ page: 1 }), {
wrapper: createWrapper(),
})
await waitFor(() => expect(result.current.isLoading).toBe(false))
expect(result.current.items).toBeDefined()
})
})
```
### Component (medium-low priority -- React Testing Library)
```typescript
import { describe, it, expect } from 'vitest'
import { render, screen } from '@testing-library/react'
import userEvent from '@testing-library/user-event'
import { XxxComponent } from '../components/XxxComponent'
describe('XxxComponent', () => {
it('should render', () => {
render(<XxxComponent name="Test" onSelect={vi.fn()} />)
expect(screen.getByText('Test')).toBeInTheDocument()
})
it('should call onSelect when clicked', async () => {
const onSelect = vi.fn()
render(<XxxComponent name="Test" onSelect={onSelect} />)
await userEvent.click(screen.getByRole('button'))
expect(onSelect).toHaveBeenCalledOnce()
})
})
```
3. Create the test in `__tests__/OriginalName.spec.ts(x)`.
4. Run: `npx vitest run --reporter=verbose`

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!