jasmine-automock
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

jasmine-automock

This package allows you to automock the methods on a class instance. Mostly useful when using dependency injection, but can come in useful when mocking the return of a factory too. Works perfectly with Angular testing.

Usage

Import using:

import { autoMock } from 'jasmine-automock';

Create a mock using:

let mockClass: jasmine.spyObj<ClassConstructor> = autoMock(ClassConstructor);

This will create a jasmine spy object using the instance methods on the class that you pass in, allowing you to check that those methods have been called, as well as mocking what they should return.

If using TypeScript, the autoMock function returns a jasmine.spyObj<T> type, with T being the class that you passed in. This allows you to access all of the class methods, as well as the mocking methods that appear on a mocked function.

For a more detailed example (using Angular), see below:

## Example

import { autoMock } from 'jasmine-automock';

/* Consumer of default angular http client - class that we are testing */
@Injectable()
class TodoHttpService {
  constructor(private httpClient: HttpClient) {}

  public getAllTodos() {
    return this.httpClient.get('api-url/todos');
  }
}

/* Test suite */
describe('TodoHttpService', () => {
  let service: TodoHttpService, mockHttpClient: jasmine.spyObj<HttpClient>;

  beforeEach(() => {
    /* We can mock angular services too! */
    mockHttpClient = autoMock(HttpClient);

    TestBed.configureTestingModule({
      providers: [{ provide: HttpClient, useValue: mockHttpClient }]
    });

    service = TestBed.inject(HttpService);
  });

  describe('getAllTodos', () => {
    let result;

    beforeEach(() => {
      mockHttpClient.get.and.returnValue('todos');
      result = service.getAllTodos();
    });

    it('should fetch the todos', () => {
      expect(mockHttpClient.get).toHaveBeenCalledWith('api-url/todos');
    });

    it('should return the todos', () => {
      expect(result).toBe('todos');
    });
  });
});

Package Sidebar

Install

npm i jasmine-automock

Weekly Downloads

0

Version

1.0.0

License

ISC

Unpacked Size

4.91 kB

Total Files

15

Last publish

Collaborators

  • danielc7150