Angular Tests Made Easy
Spectator is written on top of the Angular Testing Framework and provides two things:
- A cleaner API for testing.
- A set of custom matchers that will help you to test DOM elements more easily.
Spectator helps you get rid of all the boilerplate grunt work, leaving you with readable, sleek and streamlined unit tests.
npm install @netbasal/spectator --save-dev
Learn about it on the docs site
Auto generate specs with the CLI
import { TestBed, async, ComponentFixture } from '@angular/core/testing';
import { ButtonComponent } from './button.component';
import { Component, DebugElement } from "@angular/core";
import { By } from "@angular/platform-browser";
describe('ButtonComponent', () => {
let fixture: ComponentFixture<ButtonComponent>;
let instance: ButtonComponent;
let debugElement: DebugElement;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ButtonComponent ]
})
.compileComponents();
fixture = TestBed.createComponent(ButtonComponent);
instance = fixture.componentInstance;
debugElement = fixture.debugElement;
}));
it('should set the class name according to the [className] input', () => {
instance.className = 'danger';
fixture.detectChanges();
const button = debugElement.query(By.css('button')).nativeElement as HTMLButtonElement;
expect(button.classList.contains('danger')).toBeTruthy();
expect(button.classList.contains('success')).toBeFalsy();
});
});
import { ButtonComponent } from './button.component';
import { Spectator, createTestComponentFactory } from '@netbasal/spectator';
describe('ButtonComponent', () => {
let spectator: Spectator<ButtonComponent>;
const createComponent = createTestComponentFactory(ButtonComponent);
beforeEach(() => spectator = createComponent());
it('should set the class name according to the [className] input', () => {
spectator.setInput('className', 'danger');
expect(spectator.query('button')).toHaveClass('danger');
expect(spectator.query('button')).not.toHaveClass('success');
});
});
- ng-content testing
- Custom Jasmine Matchers (toHaveClass, toBeDisabled..)
- Built-in support for entry components
- Support for triggering keyboard/mouse/touch events
- Support for component providers
- Support for services/component/directives mocks
- Support for http service
Spectator is regularly used and maintained by Datorama.
Thanks goes to these wonderful people (emoji key):
I. Sinai 📖 👀 🎨 |
Valentin Buryakov 💻 🤔 |
Netanel Basal 💻 🔧 |
Ben Grynhaus 🐛 💻 |
Ben Elliott 💻 |
Martin Nuc 💻 |
Dirk Luijk 💻 |
---|---|---|---|---|---|---|
Lars Gyrup Brink Nielsen 📦 |
This project follows the all-contributors specification. Contributions of any kind welcome!