• Overview
@angular/core/testing

TestModuleMetadata

interface
  
    interface TestModuleMetadata {}
  
  

providers

any[] | undefined

declarations

any[] | undefined

imports

any[] | undefined

schemas

(any[] | SchemaMetadata)[] | undefined

teardown

errorOnUnknownElements

boolean | undefined

Whether NG0304 runtime errors should be thrown when unknown elements are present in component's template. Defaults to false, where the error is simply logged. If set to true, the error is thrown.

errorOnUnknownProperties

boolean | undefined

Whether errors should be thrown when unknown properties are present in component's template. Defaults to false, where the error is simply logged. If set to true, the error is thrown.

rethrowApplicationErrors

boolean | undefined

Whether errors that happen during application change detection should be rethrown.

When true, errors that are caught during application change detection will be reported to the ErrorHandler and rethrown to prevent them from going unnoticed in tests.

When false, errors are only forwarded to the ErrorHandler, which by default simply logs them to the console.

Defaults to true.

deferBlockBehavior

DeferBlockBehavior | undefined

Whether defer blocks should behave with manual triggering or play through normally. Defaults to manual.

Jump to details