Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/cuongtl1992/vibe-skills/angular-testingnpx skills add cuongtl1992/vibe-skills --skill angular-testinggit clone --depth 1 https://github.com/cuongtl1992/vibe-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/cuongtl1992/vibe-skills/angular-testing)<a href="https://agentmods.dev/skills/cuongtl1992/vibe-skills/angular-testing"><img src="https://agentmods.dev/badge/skills/cuongtl1992/vibe-skills/angular-testing.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00066 | $0.00567 |
| Opus 5 | $0.00033 | $0.00283 |
| Sonnet 5 | $0.00013 | $0.00113 |
| Haiku 4.5 | $0.00007 | $0.00057 |
Grade A, and why
angular-testing scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 83 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Angular Testing Patterns
Jest + TestBed with AAA (Arrange/Act/Assert) pattern.
Test File Location
Test files live next to the source file: entity.service.ts → entity.service.spec.ts
Core Pattern: TestBed + InjectionToken Mocks
import { TestBed } from '@angular/core/testing';
describe('CreateEntityUseCase', () => {
let useCase: CreateEntityUseCase;
let mockRepository: jest.Mocked<EntityRepository>;
beforeEach(() => {
mockRepository = {
find: jest.fn(),
findById: jest.fn(),
create: jest.fn(),
update: jest.fn(),
delete: jest.fn(),
};
TestBed.configureTestingModule({
providers: [
CreateEntityUseCase,
{ provide: ENTITY_REPOSITORY, useValue: mockRepository },
{ provide: AuthService, useValue: { getCurrentUser: () => ({ id: 1 }) } },
],
});
useCase = TestBed.inject(CreateEntityUseCase);
});
it('should create entity successfully', async () => {
// Arrange
const request = { name: 'Test Entity' };
const expected = { id: 1, name: 'Test Entity' };
mockRepository.create.mockResolvedValue(Result.success(expected));
// Act
const result = await useCase.execute(request);
// Assert
expect(result.isSuccess).toBe(true);
expect(result.value).toEqual(expected);
expect(mockRepository.create).toHaveBeenCalled();
});
it('should return failure when name is empty', async () => {
const result = await useCase.execute({ name: '' });
expect(result.isFailure).toBe(true);
});
});
Signal Testing
it('should update signal state', () => {
const service = TestBed.inject(EntityListStateService);
service.setKeyword('test');
expect(service.keyword()).toBe('test');
expect(service.page()).toBe(1); // reset on filter change
});
Detailed Patterns
- UseCase/Query tests: references/usecase-testing.md
- Component tests: references/component-testing.md
- State service tests: references/state-service-testing.md
What ships with it
3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 4d ago First seen · 83 lines · 66 tokens per session scan A f4a403394be2
angular-testing is a skill published in the GitHub repository cuongtl1992/vibe-skills (10 stars, last pushed 5mo ago), licensed MIT. It adds 66 tokens to every session and 567 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
run-helix-tests
Submit and monitor .NET MAUI unit tests on Helix infrastructure. Supports running XAML, Resizetizer, Core, Essentials, and other unit test projects on distributed Helix queues.
nunit-testing
Use when writing or modifying tests in NUnit's own test projects, or when making a behavioral change to production code that needs test coverage. Covers test structure, attribute choice, helper visibility, platform guards, and which test projects are real.
ghttp
The ghttp test HTTP server for testing HTTP clients — NewServer/NewTLSServer, AppendHandlers, the Verify assertions (VerifyRequest/VerifyHeader/VerifyHeaderKV/VerifyJSON/VerifyForm/VerifyBasicAuth/VerifyContentType/VerifyBody), RespondWith/RespondWithJSONEncoded(Ptr), CombineHandlers, RouteToHandler for unordered…
designing-tests
Designs and implements testing strategies for any codebase. Use when adding tests, improving coverage, setting up testing infrastructure, debugging test failures, or when asked about unit tests, integration tests, or E2E testing.
matchers
The complete catalog of Gomega's built-in matchers, grouped by category — equivalence (Equal/BeEquivalentTo/BeComparableTo/BeIdenticalTo/BeAssignableToTypeOf), presence (BeNil/BeZero/BeEmpty), truthiness (BeTrue/BeFalse/BeTrueBecause), errors (HaveOccurred/Succeed/MatchError), channels (Receive/BeClosed/BeSent)…
test-gen
Generate comprehensive unit tests for code files.