@@ -23,7 +23,8 @@ export interface RenderResult extends RenderResultQueries, FireObject, UserEvent
23
23
debug : ( element ?: HTMLElement ) => void ;
24
24
/**
25
25
* @description
26
- * The Angular `ComponentFixture` of the component
26
+ * The Angular `ComponentFixture` of the component.
27
+ *
27
28
* For more info see https://angular.io/api/core/testing/ComponentFixture
28
29
*/
29
30
fixture : ComponentFixture < any > ;
@@ -45,7 +46,8 @@ export interface RenderOptions<C, Q extends Queries = typeof queries> {
45
46
detectChanges ?: boolean ;
46
47
/**
47
48
* @description
48
- * A collection of components, directives and pipes needed to render the component, for example, nested components of the component
49
+ * A collection of components, directives and pipes needed to render the component, for example, nested components of the component.
50
+ *
49
51
* For more info see https://angular.io/api/core/NgModule#declarations
50
52
*
51
53
* @default
@@ -59,7 +61,8 @@ export interface RenderOptions<C, Q extends Queries = typeof queries> {
59
61
declarations ?: any [ ] ;
60
62
/**
61
63
* @description
62
- * A collection of providers needed to render the component via Dependency Injection, for example, injectable services or tokens
64
+ * A collection of providers needed to render the component via Dependency Injection, for example, injectable services or tokens.
65
+ *
63
66
* For more info see https://angular.io/api/core/NgModule#providers
64
67
*
65
68
* @default
@@ -79,11 +82,12 @@ export interface RenderOptions<C, Q extends Queries = typeof queries> {
79
82
providers ?: any [ ] ;
80
83
/**
81
84
* @description
82
- * A collection of imports needed to render the component, for example, shared modules
85
+ * A collection of imports needed to render the component, for example, shared modules.
86
+ * Adds `NoopAnimationsModule` by default if `BrowserAnimationsModule` isn't added to the collection.
87
+ *
83
88
* For more info see https://angular.io/api/core/NgModule#imports
84
89
*
85
90
* @default
86
- * Adds `NoopAnimationsModule` by default if `BrowserAnimationsModule` isn't added to the collection:
87
91
* `[NoopAnimationsModule]`
88
92
*
89
93
* @example
@@ -98,7 +102,8 @@ export interface RenderOptions<C, Q extends Queries = typeof queries> {
98
102
/**
99
103
* @description
100
104
* A collection of schemas needed to render the component.
101
- * Allowed value are `NO_ERRORS_SCHEMA` and `CUSTOM_ELEMENTS_SCHEMA`.
105
+ * Allowed values are `NO_ERRORS_SCHEMA` and `CUSTOM_ELEMENTS_SCHEMA`.
106
+ *
102
107
* For more info see https://angular.io/api/core/NgModule#schemas
103
108
*
104
109
* @default
@@ -130,7 +135,8 @@ export interface RenderOptions<C, Q extends Queries = typeof queries> {
130
135
componentProperties ?: Partial < C > ;
131
136
/**
132
137
* @description
133
- * A collection of providers to inject dependencies of the component
138
+ * A collection of providers to inject dependencies of the component.
139
+ *
134
140
* For more info see https://angular.io/api/core/Directive#providers
135
141
*
136
142
* @default
0 commit comments