angular-jest

Original🇺🇸 English
Translated

ALWAYS use when testing Angular applications with Jest, configuring Jest, or migrating from Jasmine/Karma to Jest.

23installs
Added on

NPX Install

npx skill4agent add oguzhan18/angular-ecosystem-skills angular-jest

Tags

Translated version includes tags in frontmatter

Angular + Jest

Version: Jest 29.x (2025) Tags: Jest, Testing, Unit Tests
References: Jestjest-preset-angular

Best Practices

  • Install Jest
bash
npm install --save-dev jest @types/jest jest-preset-angular
  • Configure Jest
js
// jest.config.js
module.exports = {
  preset: 'jest-preset-angular',
  setupFilesAfterEnv: ['<rootDir>/setup-jest.ts'],
  testPathIgnorePatterns: ['<rootDir>/node_modules/'],
};
  • Write test
ts
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { MyComponent } from './my.component';

describe('MyComponent', () => {
  let component: MyComponent;
  let fixture: ComponentFixture<MyComponent>;

  beforeEach(async () => {
    await TestBed.configureTestingModule({
      imports: [MyComponent]
    }).compileComponents();

    fixture = TestBed.createComponent(MyComponent);
    component = fixture.componentInstance;
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});