Skip to content

Contact sales

By filling out this form and clicking submit, you acknowledge our privacy policy.

How to Mock Angular Components Using the No Errors Schema

Mocking is a great idea for testing Angular apps because it makes maintenance easier and helps reduce future bugs.

Oct 7, 2020 • 4 Minute Read

Introduction

Mocking is a great idea for testing Angular apps because it makes maintenance easier and helps reduce future bugs. There are a few complex tools, such as XUnit, for mocking an Angular CLI project.

You can execute the mocking methods described in this guide only if you use vanilla Jasmine + Angular Testbed. However, you may use Spectator (for less boilerplate with test setup) and ng-mocks for mocking components, pipes, and directives.

Integration Tests vs. Unit Tests?

You can avoid mocking if you decide to create an integration test. But how can you decide whether to create a unit test or an integration test?

Create a unit test when:

• The unit for testing contains the logic required to be tested individually and ensures that a feature is working as expected.

• You are testing integrations with third-party libraries.

Create an integration test when:

• Integration between components is required for creating a meaningful test.

• You're testing a component that comprises simple logic and needs to communicate with other components to create a valid test.

• You need to verify integration with any kind of third party library.

Mocking Components

You can easily avoid mocking components by shallow testing, which uses schemas: [NO_ERRORS_SCHEMA], so the component under the test's template is not instantiating component tags. If you have a test that needs to interact with another component, for instance, through a view child, you need to have a mock of the component if you don't want to create an integration test.

You will often find a testing module for easier mocking in unit tests of Angular libraries, such as the Angular Routing library. You should create something similar with components you want to create mocks for by creating a *my-component-name*.component.mock.ts beside the component file. Thus, you will easily get a mock of the component. You can also have the mock implement the component to ensure that the mock and the component are exposing a similar method.

Once you have created a mock file for a component, it will be easy to get a mock of the component when needed.

An example of a component mock is given here:

      @Component({
  selector: 'app-todo-item',
  template: ''
})
export class MyToDoListComponentMock implements OnInit, MyToDoListComponent {

  @Input() public myToDoList: MyToDoList;
  @Input() public viewOnlyTODO: boolean;
  @Output() public todoRemove = new EventEmitter();
  @Output() public todoModify = new EventEmitter();

  constructor() { }

  public ngOnInit() {
  }

  public itemClick() {
  }

  public removeClick() {
  }

  public modifyClick() {
  }
}
    

The mocks are then imported, as shown below:

      TestBed.configureTestingModule({

	  declarations: [
	    MyToDoListComponentMock,
	    AddTodoListComponentMock
	  ],
	...
    

You may wish that there were a simpler and less boilerplate way to create mocks for components in Angular, such as creating them with Jasmine spies. But you have to apply the component decorator to the class to make it a component.

Conclusion

You saw how to mock dependencies in Angular tests in this guide. In comparison to other test libraries, such as XUnit, the Angular testing setup is very basic, but certain tricks can reduce the workload for creating mocks in unit tests. Unit tests should be the most crucial aspect of your test coverage, and they are the easiest to maintain.