dougflip / dng-test-utils

Angular Test Utilities

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DNG Test Utils

Overview

Reduces boiler plate in Angular test code. Specifically regarding mocking dependencies and working with promises.

Install

npm install -D dng-test-utils

Setup

The bare bones setup looks something like this:

import dngTestUtils from 'dng-test-utils';
import moduleToTest from './module-to-test';

// ...then in your top level describe block...

beforeEach(dngTestUtils.init(moduleToTest.name, [nullMocks], { customMocks }));

The sample test file has much more detail.

More Info

About

Angular Test Utilities


Languages

Language:JavaScript 100.0%