angular-testing
Installation
SKILL.md
Angular Testing - Quick Reference
Deep Knowledge: Use
mcp__documentation__fetch_docswith technology:angular, topic:testingfor comprehensive documentation.
Standalone Component Testing
import { ComponentFixture, TestBed } from '@angular/core/testing';
describe('UserListComponent', () => {
let component: UserListComponent;
let fixture: ComponentFixture<UserListComponent>;
let userService: jasmine.SpyObj<UserService>;
beforeEach(async () => {
const spy = jasmine.createSpyObj('UserService', ['getUsers']);