ngx-testing-tools
Version:
Makes Angular testing easier
15 lines (14 loc) • 365 B
TypeScript
export interface HttpOptions {
/**
* Enable `HttpTools`.
* @default false
*/
httpTesting?: boolean;
/**
* When enabled, the assertion will end by `HttpTestingController.verify()`.
*
* Works only when `httpTesting` test bed option is `true`, otherwise has no effect.
* @default true
*/
verifyHttp?: boolean;
}