Intelligent Angular unit test generator that saves you hours of testing time!
Features
✨ Smart Test Generation - Perfect tests for Services, Components, Directives
⚡ Type-Aware - Intelligent test data generation based on TypeScript types
🎯 Async Ready - Full support for Observables and Promises
🔧 HTTP Testing - Automatic HttpClient mocking setup
📊 Input/Output Testing - Complete component binding tests
Quick Start
Install: [Link to Marketplace]
Right-click on any Angular file (.service.ts, .component.ts)
Select "Generate Angular Unit Tests"
Watch the magic happen! ✨
Examples
Service Generation
// Right-click on user.service.ts → generates:
describe('UserService', () => {
let service: UserService
let httpMock: HttpTestingController
beforeEach(() => {
TestBed.configureTestingModule({
imports: [HttpClientTestingModule],
providers: [UserService],
})
// ... perfect test suite!
})
})