@apteco/ngth
v1.5.0
Published
ng-bullet successor to help speed up angular testing
Downloads
918
Readme
What is ngth
ngth is the spiritual successor/extension to ng-bullet. It offers the same functionality as well as resetting spy objects and mock services.
Getting Started
Installation
Using npm
npm install @apteco/ngth
Using yarn
*
yarn add @apteco/ngth
Spec Files
Most Angular spec files configure components like so:
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [
/*list of components*/
],
imports: [
/* list of providers*/
]
}).compileComponents();
}));
With ngth we change this to:
import { configureSuite } from '@apteco/ngth';
...
configureSuite(() => {
TestBed.configureTestingModule({
declarations: [ /*list of components goes here*/ ],
imports: [ /* list of providers goes here*/ ]
})
});
There is no longer any need to call TestBed#compileComponents as ngth will call this and make sure that all components are compiled once and only once.
Resetting Providers
All jasmine spy objects are reset after every test automatically which is the major change from ng-bullet.
Along with this you can add the function resetProvider
to any of your mock objects that you pass in in the providers array. This can be used to reset mock objects such as MockLocalStorage or MockSessionStorage implementations after each test.