skills/dev-skills/angular-developer/references/testing-fundamentals.md
This guide covers the fundamental principles and practices for writing unit tests in this repository, which uses Vitest as the test runner.
This project follows a modern, zoneless testing approach. State changes schedule updates asynchronously, and tests must account for this.
Do NOT use fixture.detectChanges() to manually trigger updates.
ALWAYS use the "Act, Wait, Assert" pattern:
await fixture.whenStable() to allow the framework to process the scheduled update and render the changes.import {ComponentFixture, TestBed} from '@angular/core/testing';
import {MyComponent} from './my.component';
describe('MyComponent', () => {
let component: MyComponent;
let fixture: ComponentFixture<MyComponent>;
let h1: HTMLElement;
beforeEach(async () => {
// 1. Configure the test module
await TestBed.configureTestingModule({
imports: [MyComponent],
}).compileComponents();
// 2. Create the component fixture
fixture = TestBed.createComponent(MyComponent);
component = fixture.componentInstance;
h1 = fixture.nativeElement.querySelector('h1');
});
it('should display the default title', async () => {
// ACT: (Implicit) Component is created with default state.
// WAIT for initial data binding.
await fixture.whenStable();
// ASSERT the initial state.
expect(h1.textContent).toContain('Default Title');
});
it('should display a different title after a change', async () => {
// ACT: Change the component's title property.
component.title.set('New Test Title');
// WAIT for the asynchronous update to complete.
await fixture.whenStable();
// ASSERT the DOM has been updated.
expect(h1.textContent).toContain('New Test Title');
});
});
TestBed: The primary utility for creating a test-specific Angular module. Use TestBed.configureTestingModule({...}) in your beforeEach to declare components, provide services, and set up imports needed for your test.ComponentFixture: A handle on the created component instance and its environment.
fixture.componentInstance: Access the component's class instance.fixture.nativeElement: Access the component's root DOM element.fixture.debugElement: An Angular-specific wrapper around the nativeElement that provides safer, platform-agnostic ways to query the DOM (e.g., debugElement.query(By.css('p'))).