ng-mocks 7.7.1 → 8.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/CHANGELOG.md +1164 -0
  2. package/dist/lib/common/jit-reflector.js +22 -23
  3. package/dist/lib/common/jit-reflector.js.map +1 -1
  4. package/dist/lib/common/mock-of.decorator.js +3 -3
  5. package/dist/lib/common/mock-of.decorator.js.map +1 -1
  6. package/dist/lib/common/mock-of.decorator.spec.js +18 -30
  7. package/dist/lib/common/mock-of.decorator.spec.js.map +1 -1
  8. package/dist/lib/common/reflect.js +2 -2
  9. package/dist/lib/common/reflect.js.map +1 -1
  10. package/dist/lib/mock-component/mock-component.d.ts +2 -1
  11. package/dist/lib/mock-component/mock-component.js +67 -76
  12. package/dist/lib/mock-component/mock-component.js.map +1 -1
  13. package/dist/lib/mock-component/mock-component.spec.js +91 -71
  14. package/dist/lib/mock-component/mock-component.spec.js.map +1 -1
  15. package/dist/lib/mock-component/test-components/child-component.component.js +11 -14
  16. package/dist/lib/mock-component/test-components/child-component.component.js.map +1 -1
  17. package/dist/lib/mock-component/test-components/custom-form-control.component.js +36 -35
  18. package/dist/lib/mock-component/test-components/custom-form-control.component.js.map +1 -1
  19. package/dist/lib/mock-component/test-components/empty-component.component.js +9 -12
  20. package/dist/lib/mock-component/test-components/empty-component.component.js.map +1 -1
  21. package/dist/lib/mock-component/test-components/simple-component.component.js +38 -59
  22. package/dist/lib/mock-component/test-components/simple-component.component.js.map +1 -1
  23. package/dist/lib/mock-component/test-components/template-outlet.component.js +30 -28
  24. package/dist/lib/mock-component/test-components/template-outlet.component.js.map +1 -1
  25. package/dist/lib/mock-declaration/mock-declaration.js +7 -11
  26. package/dist/lib/mock-declaration/mock-declaration.js.map +1 -1
  27. package/dist/lib/mock-directive/mock-directive.js +37 -55
  28. package/dist/lib/mock-directive/mock-directive.js.map +1 -1
  29. package/dist/lib/mock-directive/mock-directive.spec.js +85 -81
  30. package/dist/lib/mock-directive/mock-directive.spec.js.map +1 -1
  31. package/dist/lib/mock-helper/mock-helper.js +13 -13
  32. package/dist/lib/mock-helper/mock-helper.js.map +1 -1
  33. package/dist/lib/mock-helper/mock-helper.spec.js +56 -54
  34. package/dist/lib/mock-helper/mock-helper.spec.js.map +1 -1
  35. package/dist/lib/mock-module/mock-module.js +43 -44
  36. package/dist/lib/mock-module/mock-module.js.map +1 -1
  37. package/dist/lib/mock-module/mock-module.spec.js +60 -60
  38. package/dist/lib/mock-module/mock-module.spec.js.map +1 -1
  39. package/dist/lib/mock-module/test-fixtures.js +128 -170
  40. package/dist/lib/mock-module/test-fixtures.js.map +1 -1
  41. package/dist/lib/mock-pipe/index.d.ts +1 -1
  42. package/dist/lib/mock-pipe/index.js +4 -2
  43. package/dist/lib/mock-pipe/index.js.map +1 -1
  44. package/dist/lib/mock-pipe/mock-pipe.js +15 -27
  45. package/dist/lib/mock-pipe/mock-pipe.js.map +1 -1
  46. package/dist/lib/mock-pipe/mock-pipe.spec.js +38 -38
  47. package/dist/lib/mock-pipe/mock-pipe.spec.js.map +1 -1
  48. package/dist/lib/mock-render/mock-render.fixtures.js +18 -19
  49. package/dist/lib/mock-render/mock-render.fixtures.js.map +1 -1
  50. package/dist/lib/mock-render/mock-render.js +20 -21
  51. package/dist/lib/mock-render/mock-render.js.map +1 -1
  52. package/dist/lib/mock-render/mock-render.spec.js +17 -13
  53. package/dist/lib/mock-render/mock-render.spec.js.map +1 -1
  54. package/package.json +15 -15
package/CHANGELOG.md CHANGED
@@ -2,6 +2,1170 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ <a name="8.1.0"></a>
6
+ # 8.1.0 (2019-07-17)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * es2015 class declaration method mocking ([1286b10](https://github.com/ike18t/ng-mocks/commit/1286b10))
12
+
13
+
14
+
15
+ <a name="8.0.0"></a>
16
+ # 8.0.0 (2019-06-03)
17
+
18
+
19
+ ### Features
20
+
21
+ * angular 8 ([29a5203](https://github.com/ike18t/ng-mocks/commit/29a5203))
22
+
23
+
24
+
25
+ <a name="7.8.0"></a>
26
+ # 7.8.0 (2019-05-14)
27
+
28
+
29
+ ### Features
30
+
31
+ * **51:** Add mocked entry components to mocked modules ([a321b14](https://github.com/ike18t/ng-mocks/commit/a321b14))
32
+
33
+
34
+
35
+ <a name="7.7.2"></a>
36
+ ## 7.7.2 (2019-04-26)
37
+
38
+
39
+
40
+ <a name="7.7.1"></a>
41
+ ## 7.7.1 (2019-04-23)
42
+
43
+
44
+ ### Bug Fixes
45
+
46
+ * **49:** stop caching mocked pipes ([058d66e](https://github.com/ike18t/ng-mocks/commit/058d66e))
47
+
48
+
49
+
50
+ <a name="7.7.0"></a>
51
+ # 7.7.0 (2019-03-15)
52
+
53
+
54
+
55
+ <a name="7.6.0"></a>
56
+ # 7.6.0 (2019-02-26)
57
+
58
+
59
+
60
+ <a name="7.5.0"></a>
61
+ # 7.5.0 (2019-01-29)
62
+
63
+
64
+
65
+ <a name="7.4.0"></a>
66
+ # 7.4.0 (2018-12-22)
67
+
68
+
69
+
70
+ <a name="7.3.0"></a>
71
+ # 7.3.0 (2018-12-18)
72
+
73
+
74
+
75
+ <a name="7.2.0"></a>
76
+ # 7.2.0 (2018-12-07)
77
+
78
+
79
+
80
+ <a name="7.1.3"></a>
81
+ ## 7.1.3 (2018-12-02)
82
+
83
+
84
+
85
+ <a name="7.1.2"></a>
86
+ ## 7.1.2 (2018-11-26)
87
+
88
+
89
+
90
+ <a name="7.1.1"></a>
91
+ ## 7.1.1 (2018-11-06)
92
+
93
+
94
+
95
+ <a name="7.1.0"></a>
96
+ # 7.1.0 (2018-11-01)
97
+
98
+
99
+ ### Bug Fixes
100
+
101
+ * trim innerText that was getting a new line from a div ([f883ad0](https://github.com/ike18t/ng-mocks/commit/f883ad0))
102
+
103
+
104
+
105
+ <a name="7.0.1"></a>
106
+ ## 7.0.1 (2018-10-26)
107
+
108
+
109
+ ### Bug Fixes
110
+
111
+ * package-lock out of sync ([6fe7d36](https://github.com/ike18t/ng-mocks/commit/6fe7d36))
112
+
113
+
114
+
115
+ <a name="7.0.0"></a>
116
+ # 7.0.0 (2018-10-26)
117
+
118
+
119
+
120
+ <a name="6.3.0"></a>
121
+ # 6.3.0 (2018-10-17)
122
+
123
+
124
+ ### Features
125
+
126
+ * **MockDirective:** added the ability to use ViewChild/ViewChildren etc with MockDirective ([8853e87](https://github.com/ike18t/ng-mocks/commit/8853e87))
127
+
128
+
129
+
130
+ <a name="6.2.3"></a>
131
+ ## 6.2.3 (2018-10-02)
132
+
133
+
134
+ ### Bug Fixes
135
+
136
+ * **MockPlural:** removing generic type from MockComponents, Directives, and Pipes ([919a06c](https://github.com/ike18t/ng-mocks/commit/919a06c))
137
+
138
+
139
+
140
+ <a name="6.2.2"></a>
141
+ ## 6.2.2 (2018-10-02)
142
+
143
+
144
+ ### Bug Fixes
145
+
146
+ * **MockModule:** Never mock CommonModule ([119dd80](https://github.com/ike18t/ng-mocks/commit/119dd80))
147
+
148
+
149
+
150
+ <a name="6.2.1"></a>
151
+ ## 6.2.1 (2018-08-28)
152
+
153
+
154
+
155
+ <a name="6.2.0"></a>
156
+ # 6.2.0 (2018-08-28)
157
+
158
+
159
+ ### Features
160
+
161
+ * add a MockedComponent type ([fe547af](https://github.com/ike18t/ng-mocks/commit/fe547af))
162
+
163
+
164
+
165
+ <a name="6.1.0"></a>
166
+ # 6.1.0 (2018-06-04)
167
+
168
+
169
+ ### Features
170
+
171
+ * support structural directives ([050e70c](https://github.com/ike18t/ng-mocks/commit/050e70c))
172
+
173
+
174
+
175
+ <a name="6.0.1"></a>
176
+ ## 6.0.1 (2018-05-15)
177
+
178
+
179
+ ### Bug Fixes
180
+
181
+ * package json peer dep version range ([8ad3834](https://github.com/ike18t/ng-mocks/commit/8ad3834))
182
+
183
+
184
+
185
+ <a name="6.0.0"></a>
186
+ # 6.0.0 (2018-05-14)
187
+
188
+
189
+ ### Features
190
+
191
+ * support angular 6 and test 5 & 6 in travis ([5bc9331](https://github.com/ike18t/ng-mocks/commit/5bc9331))
192
+
193
+
194
+
195
+ <a name="5.3.0"></a>
196
+ # 5.3.0 (2018-04-05)
197
+
198
+
199
+ ### Features
200
+
201
+ * MockOf - Include mocked class names in mock class names ([8b149f5](https://github.com/ike18t/ng-mocks/commit/8b149f5))
202
+
203
+
204
+
205
+ <a name="5.2.0"></a>
206
+ # 5.2.0 (2018-03-30)
207
+
208
+
209
+ ### Features
210
+
211
+ * Use Angular annotation resolvers ([4050d10](https://github.com/ike18t/ng-mocks/commit/4050d10))
212
+
213
+
214
+
215
+ <a name="5.1.0"></a>
216
+ # 5.1.0 (2018-03-25)
217
+
218
+
219
+ ### Bug Fixes
220
+
221
+ * Add a null check for decorator args ([1058044](https://github.com/ike18t/ng-mocks/commit/1058044))
222
+
223
+
224
+ ### Features
225
+
226
+ * Support Angular propDecorators inputs and outputs ([add374d](https://github.com/ike18t/ng-mocks/commit/add374d))
227
+
228
+
229
+
230
+ <a name="5.0.0"></a>
231
+ # 5.0.0 (2018-03-25)
232
+
233
+
234
+ ### Bug Fixes
235
+
236
+ * Fix bad return value from mock-directive ([4659a32](https://github.com/ike18t/ng-mocks/commit/4659a32))
237
+ * multiple decorators on an input ([13874b9](https://github.com/ike18t/ng-mocks/commit/13874b9))
238
+ * Outdated package-lock ([7623e98](https://github.com/ike18t/ng-mocks/commit/7623e98))
239
+
240
+
241
+ ### Features
242
+
243
+ * add functions to mass mock ([fee5a03](https://github.com/ike18t/ng-mocks/commit/fee5a03))
244
+ * Cleanup exports and export MockDeclaration from MockModule ([9fe2bb1](https://github.com/ike18t/ng-mocks/commit/9fe2bb1))
245
+ * mock directives now have event emitter bound outputs ([bac1ca5](https://github.com/ike18t/ng-mocks/commit/bac1ca5))
246
+
247
+
248
+
249
+ <a name="5.0.0-rc5"></a>
250
+ # 5.0.0-rc5 (2018-03-07)
251
+
252
+
253
+ ### Bug Fixes
254
+
255
+ * package json typings location ([5f6fde0](https://github.com/ike18t/ng-mocks/commit/5f6fde0))
256
+
257
+
258
+
259
+ <a name="5.0.0-rc4"></a>
260
+ # 5.0.0-rc4 (2018-03-07)
261
+
262
+
263
+
264
+ <a name="5.0.0-rc3"></a>
265
+ # 5.0.0-rc3 (2018-03-07)
266
+
267
+
268
+ ### Bug Fixes
269
+
270
+ * integrate mock-pipe ([d747517](https://github.com/ike18t/ng-mocks/commit/d747517))
271
+ * mock_direcive integration ([7f02f7b](https://github.com/ike18t/ng-mocks/commit/7f02f7b))
272
+
273
+
274
+ ### Features
275
+
276
+ * merge in mock-module ([05eaebe](https://github.com/ike18t/ng-mocks/commit/05eaebe))
277
+ * support inputs and outputs from extended components ([fc46838](https://github.com/ike18t/ng-mocks/commit/fc46838))
278
+
279
+
280
+
281
+ <a name="5.0.0-rc1"></a>
282
+ # 5.0.0-rc1 (2018-02-10)
283
+
284
+
285
+ ### Bug Fixes
286
+
287
+ * add reflect-metadata back to devDeps ([385c9c4](https://github.com/ike18t/ng-mocks/commit/385c9c4))
288
+ * Add support for directives with a different kind of meta ([0bd38cc](https://github.com/ike18t/ng-mocks/commit/0bd38cc))
289
+ * add testbed test that exposed now fixed issue ([610cbdc](https://github.com/ike18t/ng-mocks/commit/610cbdc))
290
+ * forgot how to use js reduce ([de518d4](https://github.com/ike18t/ng-mocks/commit/de518d4))
291
+ * instantiate event emitters in component constructor ([fb4b97d](https://github.com/ike18t/ng-mocks/commit/fb4b97d))
292
+ * module exports is now all declarations ([fbb0e73](https://github.com/ike18t/ng-mocks/commit/fbb0e73))
293
+ * output binding ([59f476d](https://github.com/ike18t/ng-mocks/commit/59f476d))
294
+ * works with component w/o inputs or outputs ([b3d38e7](https://github.com/ike18t/ng-mocks/commit/b3d38e7))
295
+
296
+
297
+ ### Features
298
+
299
+ * add exportAs and alias support ([14a1474](https://github.com/ike18t/ng-mocks/commit/14a1474))
300
+ * add support for exportAs and input aliases ([9b42a21](https://github.com/ike18t/ng-mocks/commit/9b42a21))
301
+ * Adding angular 2 compatibility and moving to peerDependency ([#3](https://github.com/ike18t/ng-mocks/issues/3)) ([4bd93db](https://github.com/ike18t/ng-mocks/commit/4bd93db))
302
+ * component mock implements control value accessor to support ngModel binding ([67ea7c4](https://github.com/ike18t/ng-mocks/commit/67ea7c4))
303
+ * initial implementation ([893f83b](https://github.com/ike18t/ng-mocks/commit/893f83b))
304
+ * memoize function by arg ([031e3a6](https://github.com/ike18t/ng-mocks/commit/031e3a6))
305
+ * memoize function by arg ([cac00b3](https://github.com/ike18t/ng-mocks/commit/cac00b3))
306
+ * mock module providers ([49b2272](https://github.com/ike18t/ng-mocks/commit/49b2272))
307
+ * Upgrade to angular 5 and pull in testbed for tests ([7df64a8](https://github.com/ike18t/ng-mocks/commit/7df64a8))
308
+
309
+
310
+
311
+ <a name="8.0.0"></a>
312
+ # 8.0.0 (2019-06-03)
313
+
314
+
315
+ ### Features
316
+
317
+ * angular 8 ([29a5203](https://github.com/ike18t/ng-mocks/commit/29a5203))
318
+
319
+
320
+
321
+ <a name="7.8.0"></a>
322
+ # 7.8.0 (2019-05-14)
323
+
324
+
325
+ ### Features
326
+
327
+ * **51:** Add mocked entry components to mocked modules ([a321b14](https://github.com/ike18t/ng-mocks/commit/a321b14))
328
+
329
+
330
+
331
+ <a name="7.7.2"></a>
332
+ ## 7.7.2 (2019-04-26)
333
+
334
+
335
+
336
+ <a name="7.7.1"></a>
337
+ ## 7.7.1 (2019-04-23)
338
+
339
+
340
+ ### Bug Fixes
341
+
342
+ * **49:** stop caching mocked pipes ([058d66e](https://github.com/ike18t/ng-mocks/commit/058d66e))
343
+
344
+
345
+
346
+ <a name="7.7.0"></a>
347
+ # 7.7.0 (2019-03-15)
348
+
349
+
350
+
351
+ <a name="7.6.0"></a>
352
+ # 7.6.0 (2019-02-26)
353
+
354
+
355
+
356
+ <a name="7.5.0"></a>
357
+ # 7.5.0 (2019-01-29)
358
+
359
+
360
+
361
+ <a name="7.4.0"></a>
362
+ # 7.4.0 (2018-12-22)
363
+
364
+
365
+
366
+ <a name="7.3.0"></a>
367
+ # 7.3.0 (2018-12-18)
368
+
369
+
370
+
371
+ <a name="7.2.0"></a>
372
+ # 7.2.0 (2018-12-07)
373
+
374
+
375
+
376
+ <a name="7.1.3"></a>
377
+ ## 7.1.3 (2018-12-02)
378
+
379
+
380
+
381
+ <a name="7.1.2"></a>
382
+ ## 7.1.2 (2018-11-26)
383
+
384
+
385
+
386
+ <a name="7.1.1"></a>
387
+ ## 7.1.1 (2018-11-06)
388
+
389
+
390
+
391
+ <a name="7.1.0"></a>
392
+ # 7.1.0 (2018-11-01)
393
+
394
+
395
+ ### Bug Fixes
396
+
397
+ * trim innerText that was getting a new line from a div ([f883ad0](https://github.com/ike18t/ng-mocks/commit/f883ad0))
398
+
399
+
400
+
401
+ <a name="7.0.1"></a>
402
+ ## 7.0.1 (2018-10-26)
403
+
404
+
405
+ ### Bug Fixes
406
+
407
+ * package-lock out of sync ([6fe7d36](https://github.com/ike18t/ng-mocks/commit/6fe7d36))
408
+
409
+
410
+
411
+ <a name="7.0.0"></a>
412
+ # 7.0.0 (2018-10-26)
413
+
414
+
415
+
416
+ <a name="6.3.0"></a>
417
+ # 6.3.0 (2018-10-17)
418
+
419
+
420
+ ### Features
421
+
422
+ * **MockDirective:** added the ability to use ViewChild/ViewChildren etc with MockDirective ([8853e87](https://github.com/ike18t/ng-mocks/commit/8853e87))
423
+
424
+
425
+
426
+ <a name="6.2.3"></a>
427
+ ## 6.2.3 (2018-10-02)
428
+
429
+
430
+ ### Bug Fixes
431
+
432
+ * **MockPlural:** removing generic type from MockComponents, Directives, and Pipes ([919a06c](https://github.com/ike18t/ng-mocks/commit/919a06c))
433
+
434
+
435
+
436
+ <a name="6.2.2"></a>
437
+ ## 6.2.2 (2018-10-02)
438
+
439
+
440
+ ### Bug Fixes
441
+
442
+ * **MockModule:** Never mock CommonModule ([119dd80](https://github.com/ike18t/ng-mocks/commit/119dd80))
443
+
444
+
445
+
446
+ <a name="6.2.1"></a>
447
+ ## 6.2.1 (2018-08-28)
448
+
449
+
450
+
451
+ <a name="6.2.0"></a>
452
+ # 6.2.0 (2018-08-28)
453
+
454
+
455
+ ### Features
456
+
457
+ * add a MockedComponent type ([fe547af](https://github.com/ike18t/ng-mocks/commit/fe547af))
458
+
459
+
460
+
461
+ <a name="6.1.0"></a>
462
+ # 6.1.0 (2018-06-04)
463
+
464
+
465
+ ### Features
466
+
467
+ * support structural directives ([050e70c](https://github.com/ike18t/ng-mocks/commit/050e70c))
468
+
469
+
470
+
471
+ <a name="6.0.1"></a>
472
+ ## 6.0.1 (2018-05-15)
473
+
474
+
475
+ ### Bug Fixes
476
+
477
+ * package json peer dep version range ([8ad3834](https://github.com/ike18t/ng-mocks/commit/8ad3834))
478
+
479
+
480
+
481
+ <a name="6.0.0"></a>
482
+ # 6.0.0 (2018-05-14)
483
+
484
+
485
+ ### Features
486
+
487
+ * support angular 6 and test 5 & 6 in travis ([5bc9331](https://github.com/ike18t/ng-mocks/commit/5bc9331))
488
+
489
+
490
+
491
+ <a name="5.3.0"></a>
492
+ # 5.3.0 (2018-04-05)
493
+
494
+
495
+ ### Features
496
+
497
+ * MockOf - Include mocked class names in mock class names ([8b149f5](https://github.com/ike18t/ng-mocks/commit/8b149f5))
498
+
499
+
500
+
501
+ <a name="5.2.0"></a>
502
+ # 5.2.0 (2018-03-30)
503
+
504
+
505
+ ### Features
506
+
507
+ * Use Angular annotation resolvers ([4050d10](https://github.com/ike18t/ng-mocks/commit/4050d10))
508
+
509
+
510
+
511
+ <a name="5.1.0"></a>
512
+ # 5.1.0 (2018-03-25)
513
+
514
+
515
+ ### Bug Fixes
516
+
517
+ * Add a null check for decorator args ([1058044](https://github.com/ike18t/ng-mocks/commit/1058044))
518
+
519
+
520
+ ### Features
521
+
522
+ * Support Angular propDecorators inputs and outputs ([add374d](https://github.com/ike18t/ng-mocks/commit/add374d))
523
+
524
+
525
+
526
+ <a name="5.0.0"></a>
527
+ # 5.0.0 (2018-03-25)
528
+
529
+
530
+ ### Bug Fixes
531
+
532
+ * Fix bad return value from mock-directive ([4659a32](https://github.com/ike18t/ng-mocks/commit/4659a32))
533
+ * multiple decorators on an input ([13874b9](https://github.com/ike18t/ng-mocks/commit/13874b9))
534
+ * Outdated package-lock ([7623e98](https://github.com/ike18t/ng-mocks/commit/7623e98))
535
+
536
+
537
+ ### Features
538
+
539
+ * add functions to mass mock ([fee5a03](https://github.com/ike18t/ng-mocks/commit/fee5a03))
540
+ * Cleanup exports and export MockDeclaration from MockModule ([9fe2bb1](https://github.com/ike18t/ng-mocks/commit/9fe2bb1))
541
+ * mock directives now have event emitter bound outputs ([bac1ca5](https://github.com/ike18t/ng-mocks/commit/bac1ca5))
542
+
543
+
544
+
545
+ <a name="5.0.0-rc5"></a>
546
+ # 5.0.0-rc5 (2018-03-07)
547
+
548
+
549
+ ### Bug Fixes
550
+
551
+ * package json typings location ([5f6fde0](https://github.com/ike18t/ng-mocks/commit/5f6fde0))
552
+
553
+
554
+
555
+ <a name="5.0.0-rc4"></a>
556
+ # 5.0.0-rc4 (2018-03-07)
557
+
558
+
559
+
560
+ <a name="5.0.0-rc3"></a>
561
+ # 5.0.0-rc3 (2018-03-07)
562
+
563
+
564
+ ### Bug Fixes
565
+
566
+ * integrate mock-pipe ([d747517](https://github.com/ike18t/ng-mocks/commit/d747517))
567
+ * mock_direcive integration ([7f02f7b](https://github.com/ike18t/ng-mocks/commit/7f02f7b))
568
+
569
+
570
+ ### Features
571
+
572
+ * merge in mock-module ([05eaebe](https://github.com/ike18t/ng-mocks/commit/05eaebe))
573
+ * support inputs and outputs from extended components ([fc46838](https://github.com/ike18t/ng-mocks/commit/fc46838))
574
+
575
+
576
+
577
+ <a name="5.0.0-rc1"></a>
578
+ # 5.0.0-rc1 (2018-02-10)
579
+
580
+
581
+ ### Bug Fixes
582
+
583
+ * add reflect-metadata back to devDeps ([385c9c4](https://github.com/ike18t/ng-mocks/commit/385c9c4))
584
+ * Add support for directives with a different kind of meta ([0bd38cc](https://github.com/ike18t/ng-mocks/commit/0bd38cc))
585
+ * add testbed test that exposed now fixed issue ([610cbdc](https://github.com/ike18t/ng-mocks/commit/610cbdc))
586
+ * forgot how to use js reduce ([de518d4](https://github.com/ike18t/ng-mocks/commit/de518d4))
587
+ * instantiate event emitters in component constructor ([fb4b97d](https://github.com/ike18t/ng-mocks/commit/fb4b97d))
588
+ * module exports is now all declarations ([fbb0e73](https://github.com/ike18t/ng-mocks/commit/fbb0e73))
589
+ * output binding ([59f476d](https://github.com/ike18t/ng-mocks/commit/59f476d))
590
+ * works with component w/o inputs or outputs ([b3d38e7](https://github.com/ike18t/ng-mocks/commit/b3d38e7))
591
+
592
+
593
+ ### Features
594
+
595
+ * add exportAs and alias support ([14a1474](https://github.com/ike18t/ng-mocks/commit/14a1474))
596
+ * add support for exportAs and input aliases ([9b42a21](https://github.com/ike18t/ng-mocks/commit/9b42a21))
597
+ * Adding angular 2 compatibility and moving to peerDependency ([#3](https://github.com/ike18t/ng-mocks/issues/3)) ([4bd93db](https://github.com/ike18t/ng-mocks/commit/4bd93db))
598
+ * component mock implements control value accessor to support ngModel binding ([67ea7c4](https://github.com/ike18t/ng-mocks/commit/67ea7c4))
599
+ * initial implementation ([893f83b](https://github.com/ike18t/ng-mocks/commit/893f83b))
600
+ * memoize function by arg ([031e3a6](https://github.com/ike18t/ng-mocks/commit/031e3a6))
601
+ * memoize function by arg ([cac00b3](https://github.com/ike18t/ng-mocks/commit/cac00b3))
602
+ * mock module providers ([49b2272](https://github.com/ike18t/ng-mocks/commit/49b2272))
603
+ * Upgrade to angular 5 and pull in testbed for tests ([7df64a8](https://github.com/ike18t/ng-mocks/commit/7df64a8))
604
+
605
+
606
+
607
+ <a name="7.8.0"></a>
608
+ # 7.8.0 (2019-05-14)
609
+
610
+
611
+ ### Features
612
+
613
+ * **51:** Add mocked entry components to mocked modules ([a321b14](https://github.com/ike18t/ng-mocks/commit/a321b14))
614
+
615
+
616
+
617
+ <a name="7.7.2"></a>
618
+ ## 7.7.2 (2019-04-26)
619
+
620
+
621
+
622
+ <a name="7.7.1"></a>
623
+ ## 7.7.1 (2019-04-23)
624
+
625
+
626
+ ### Bug Fixes
627
+
628
+ * **49:** stop caching mocked pipes ([058d66e](https://github.com/ike18t/ng-mocks/commit/058d66e))
629
+
630
+
631
+
632
+ <a name="7.7.0"></a>
633
+ # 7.7.0 (2019-03-15)
634
+
635
+
636
+
637
+ <a name="7.6.0"></a>
638
+ # 7.6.0 (2019-02-26)
639
+
640
+
641
+
642
+ <a name="7.5.0"></a>
643
+ # 7.5.0 (2019-01-29)
644
+
645
+
646
+
647
+ <a name="7.4.0"></a>
648
+ # 7.4.0 (2018-12-22)
649
+
650
+
651
+
652
+ <a name="7.3.0"></a>
653
+ # 7.3.0 (2018-12-18)
654
+
655
+
656
+
657
+ <a name="7.2.0"></a>
658
+ # 7.2.0 (2018-12-07)
659
+
660
+
661
+
662
+ <a name="7.1.3"></a>
663
+ ## 7.1.3 (2018-12-02)
664
+
665
+
666
+
667
+ <a name="7.1.2"></a>
668
+ ## 7.1.2 (2018-11-26)
669
+
670
+
671
+
672
+ <a name="7.1.1"></a>
673
+ ## 7.1.1 (2018-11-06)
674
+
675
+
676
+
677
+ <a name="7.1.0"></a>
678
+ # 7.1.0 (2018-11-01)
679
+
680
+
681
+ ### Bug Fixes
682
+
683
+ * trim innerText that was getting a new line from a div ([f883ad0](https://github.com/ike18t/ng-mocks/commit/f883ad0))
684
+
685
+
686
+
687
+ <a name="7.0.1"></a>
688
+ ## 7.0.1 (2018-10-26)
689
+
690
+
691
+ ### Bug Fixes
692
+
693
+ * package-lock out of sync ([6fe7d36](https://github.com/ike18t/ng-mocks/commit/6fe7d36))
694
+
695
+
696
+
697
+ <a name="7.0.0"></a>
698
+ # 7.0.0 (2018-10-26)
699
+
700
+
701
+
702
+ <a name="6.3.0"></a>
703
+ # 6.3.0 (2018-10-17)
704
+
705
+
706
+ ### Features
707
+
708
+ * **MockDirective:** added the ability to use ViewChild/ViewChildren etc with MockDirective ([8853e87](https://github.com/ike18t/ng-mocks/commit/8853e87))
709
+
710
+
711
+
712
+ <a name="6.2.3"></a>
713
+ ## 6.2.3 (2018-10-02)
714
+
715
+
716
+ ### Bug Fixes
717
+
718
+ * **MockPlural:** removing generic type from MockComponents, Directives, and Pipes ([919a06c](https://github.com/ike18t/ng-mocks/commit/919a06c))
719
+
720
+
721
+
722
+ <a name="6.2.2"></a>
723
+ ## 6.2.2 (2018-10-02)
724
+
725
+
726
+ ### Bug Fixes
727
+
728
+ * **MockModule:** Never mock CommonModule ([119dd80](https://github.com/ike18t/ng-mocks/commit/119dd80))
729
+
730
+
731
+
732
+ <a name="6.2.1"></a>
733
+ ## 6.2.1 (2018-08-28)
734
+
735
+
736
+
737
+ <a name="6.2.0"></a>
738
+ # 6.2.0 (2018-08-28)
739
+
740
+
741
+ ### Features
742
+
743
+ * add a MockedComponent type ([fe547af](https://github.com/ike18t/ng-mocks/commit/fe547af))
744
+
745
+
746
+
747
+ <a name="6.1.0"></a>
748
+ # 6.1.0 (2018-06-04)
749
+
750
+
751
+ ### Features
752
+
753
+ * support structural directives ([050e70c](https://github.com/ike18t/ng-mocks/commit/050e70c))
754
+
755
+
756
+
757
+ <a name="6.0.1"></a>
758
+ ## 6.0.1 (2018-05-15)
759
+
760
+
761
+ ### Bug Fixes
762
+
763
+ * package json peer dep version range ([8ad3834](https://github.com/ike18t/ng-mocks/commit/8ad3834))
764
+
765
+
766
+
767
+ <a name="6.0.0"></a>
768
+ # 6.0.0 (2018-05-14)
769
+
770
+
771
+ ### Features
772
+
773
+ * support angular 6 and test 5 & 6 in travis ([5bc9331](https://github.com/ike18t/ng-mocks/commit/5bc9331))
774
+
775
+
776
+
777
+ <a name="5.3.0"></a>
778
+ # 5.3.0 (2018-04-05)
779
+
780
+
781
+ ### Features
782
+
783
+ * MockOf - Include mocked class names in mock class names ([8b149f5](https://github.com/ike18t/ng-mocks/commit/8b149f5))
784
+
785
+
786
+
787
+ <a name="5.2.0"></a>
788
+ # 5.2.0 (2018-03-30)
789
+
790
+
791
+ ### Features
792
+
793
+ * Use Angular annotation resolvers ([4050d10](https://github.com/ike18t/ng-mocks/commit/4050d10))
794
+
795
+
796
+
797
+ <a name="5.1.0"></a>
798
+ # 5.1.0 (2018-03-25)
799
+
800
+
801
+ ### Bug Fixes
802
+
803
+ * Add a null check for decorator args ([1058044](https://github.com/ike18t/ng-mocks/commit/1058044))
804
+
805
+
806
+ ### Features
807
+
808
+ * Support Angular propDecorators inputs and outputs ([add374d](https://github.com/ike18t/ng-mocks/commit/add374d))
809
+
810
+
811
+
812
+ <a name="5.0.0"></a>
813
+ # 5.0.0 (2018-03-25)
814
+
815
+
816
+ ### Bug Fixes
817
+
818
+ * Fix bad return value from mock-directive ([4659a32](https://github.com/ike18t/ng-mocks/commit/4659a32))
819
+ * multiple decorators on an input ([13874b9](https://github.com/ike18t/ng-mocks/commit/13874b9))
820
+ * Outdated package-lock ([7623e98](https://github.com/ike18t/ng-mocks/commit/7623e98))
821
+
822
+
823
+ ### Features
824
+
825
+ * add functions to mass mock ([fee5a03](https://github.com/ike18t/ng-mocks/commit/fee5a03))
826
+ * Cleanup exports and export MockDeclaration from MockModule ([9fe2bb1](https://github.com/ike18t/ng-mocks/commit/9fe2bb1))
827
+ * mock directives now have event emitter bound outputs ([bac1ca5](https://github.com/ike18t/ng-mocks/commit/bac1ca5))
828
+
829
+
830
+
831
+ <a name="5.0.0-rc5"></a>
832
+ # 5.0.0-rc5 (2018-03-07)
833
+
834
+
835
+ ### Bug Fixes
836
+
837
+ * package json typings location ([5f6fde0](https://github.com/ike18t/ng-mocks/commit/5f6fde0))
838
+
839
+
840
+
841
+ <a name="5.0.0-rc4"></a>
842
+ # 5.0.0-rc4 (2018-03-07)
843
+
844
+
845
+
846
+ <a name="5.0.0-rc3"></a>
847
+ # 5.0.0-rc3 (2018-03-07)
848
+
849
+
850
+ ### Bug Fixes
851
+
852
+ * integrate mock-pipe ([d747517](https://github.com/ike18t/ng-mocks/commit/d747517))
853
+ * mock_direcive integration ([7f02f7b](https://github.com/ike18t/ng-mocks/commit/7f02f7b))
854
+
855
+
856
+ ### Features
857
+
858
+ * merge in mock-module ([05eaebe](https://github.com/ike18t/ng-mocks/commit/05eaebe))
859
+ * support inputs and outputs from extended components ([fc46838](https://github.com/ike18t/ng-mocks/commit/fc46838))
860
+
861
+
862
+
863
+ <a name="5.0.0-rc1"></a>
864
+ # 5.0.0-rc1 (2018-02-10)
865
+
866
+
867
+ ### Bug Fixes
868
+
869
+ * add reflect-metadata back to devDeps ([385c9c4](https://github.com/ike18t/ng-mocks/commit/385c9c4))
870
+ * Add support for directives with a different kind of meta ([0bd38cc](https://github.com/ike18t/ng-mocks/commit/0bd38cc))
871
+ * add testbed test that exposed now fixed issue ([610cbdc](https://github.com/ike18t/ng-mocks/commit/610cbdc))
872
+ * forgot how to use js reduce ([de518d4](https://github.com/ike18t/ng-mocks/commit/de518d4))
873
+ * instantiate event emitters in component constructor ([fb4b97d](https://github.com/ike18t/ng-mocks/commit/fb4b97d))
874
+ * module exports is now all declarations ([fbb0e73](https://github.com/ike18t/ng-mocks/commit/fbb0e73))
875
+ * output binding ([59f476d](https://github.com/ike18t/ng-mocks/commit/59f476d))
876
+ * works with component w/o inputs or outputs ([b3d38e7](https://github.com/ike18t/ng-mocks/commit/b3d38e7))
877
+
878
+
879
+ ### Features
880
+
881
+ * add exportAs and alias support ([14a1474](https://github.com/ike18t/ng-mocks/commit/14a1474))
882
+ * add support for exportAs and input aliases ([9b42a21](https://github.com/ike18t/ng-mocks/commit/9b42a21))
883
+ * Adding angular 2 compatibility and moving to peerDependency ([#3](https://github.com/ike18t/ng-mocks/issues/3)) ([4bd93db](https://github.com/ike18t/ng-mocks/commit/4bd93db))
884
+ * component mock implements control value accessor to support ngModel binding ([67ea7c4](https://github.com/ike18t/ng-mocks/commit/67ea7c4))
885
+ * initial implementation ([893f83b](https://github.com/ike18t/ng-mocks/commit/893f83b))
886
+ * memoize function by arg ([031e3a6](https://github.com/ike18t/ng-mocks/commit/031e3a6))
887
+ * memoize function by arg ([cac00b3](https://github.com/ike18t/ng-mocks/commit/cac00b3))
888
+ * mock module providers ([49b2272](https://github.com/ike18t/ng-mocks/commit/49b2272))
889
+ * Upgrade to angular 5 and pull in testbed for tests ([7df64a8](https://github.com/ike18t/ng-mocks/commit/7df64a8))
890
+
891
+
892
+
893
+ <a name="7.7.2"></a>
894
+ ## 7.7.2 (2019-04-26)
895
+
896
+
897
+
898
+ <a name="7.7.1"></a>
899
+ ## 7.7.1 (2019-04-23)
900
+
901
+
902
+ ### Bug Fixes
903
+
904
+ * **49:** stop caching mocked pipes ([058d66e](https://github.com/ike18t/ng-mocks/commit/058d66e))
905
+
906
+
907
+
908
+ <a name="7.7.0"></a>
909
+ # 7.7.0 (2019-03-15)
910
+
911
+
912
+
913
+ <a name="7.6.0"></a>
914
+ # 7.6.0 (2019-02-26)
915
+
916
+
917
+
918
+ <a name="7.5.0"></a>
919
+ # 7.5.0 (2019-01-29)
920
+
921
+
922
+
923
+ <a name="7.4.0"></a>
924
+ # 7.4.0 (2018-12-22)
925
+
926
+
927
+
928
+ <a name="7.3.0"></a>
929
+ # 7.3.0 (2018-12-18)
930
+
931
+
932
+
933
+ <a name="7.2.0"></a>
934
+ # 7.2.0 (2018-12-07)
935
+
936
+
937
+
938
+ <a name="7.1.3"></a>
939
+ ## 7.1.3 (2018-12-02)
940
+
941
+
942
+
943
+ <a name="7.1.2"></a>
944
+ ## 7.1.2 (2018-11-26)
945
+
946
+
947
+
948
+ <a name="7.1.1"></a>
949
+ ## 7.1.1 (2018-11-06)
950
+
951
+
952
+
953
+ <a name="7.1.0"></a>
954
+ # 7.1.0 (2018-11-01)
955
+
956
+
957
+ ### Bug Fixes
958
+
959
+ * trim innerText that was getting a new line from a div ([f883ad0](https://github.com/ike18t/ng-mocks/commit/f883ad0))
960
+
961
+
962
+
963
+ <a name="7.0.1"></a>
964
+ ## 7.0.1 (2018-10-26)
965
+
966
+
967
+ ### Bug Fixes
968
+
969
+ * package-lock out of sync ([6fe7d36](https://github.com/ike18t/ng-mocks/commit/6fe7d36))
970
+
971
+
972
+
973
+ <a name="7.0.0"></a>
974
+ # 7.0.0 (2018-10-26)
975
+
976
+
977
+
978
+ <a name="6.3.0"></a>
979
+ # 6.3.0 (2018-10-17)
980
+
981
+
982
+ ### Features
983
+
984
+ * **MockDirective:** added the ability to use ViewChild/ViewChildren etc with MockDirective ([8853e87](https://github.com/ike18t/ng-mocks/commit/8853e87))
985
+
986
+
987
+
988
+ <a name="6.2.3"></a>
989
+ ## 6.2.3 (2018-10-02)
990
+
991
+
992
+ ### Bug Fixes
993
+
994
+ * **MockPlural:** removing generic type from MockComponents, Directives, and Pipes ([919a06c](https://github.com/ike18t/ng-mocks/commit/919a06c))
995
+
996
+
997
+
998
+ <a name="6.2.2"></a>
999
+ ## 6.2.2 (2018-10-02)
1000
+
1001
+
1002
+ ### Bug Fixes
1003
+
1004
+ * **MockModule:** Never mock CommonModule ([119dd80](https://github.com/ike18t/ng-mocks/commit/119dd80))
1005
+
1006
+
1007
+
1008
+ <a name="6.2.1"></a>
1009
+ ## 6.2.1 (2018-08-28)
1010
+
1011
+
1012
+
1013
+ <a name="6.2.0"></a>
1014
+ # 6.2.0 (2018-08-28)
1015
+
1016
+
1017
+ ### Features
1018
+
1019
+ * add a MockedComponent type ([fe547af](https://github.com/ike18t/ng-mocks/commit/fe547af))
1020
+
1021
+
1022
+
1023
+ <a name="6.1.0"></a>
1024
+ # 6.1.0 (2018-06-04)
1025
+
1026
+
1027
+ ### Features
1028
+
1029
+ * support structural directives ([050e70c](https://github.com/ike18t/ng-mocks/commit/050e70c))
1030
+
1031
+
1032
+
1033
+ <a name="6.0.1"></a>
1034
+ ## 6.0.1 (2018-05-15)
1035
+
1036
+
1037
+ ### Bug Fixes
1038
+
1039
+ * package json peer dep version range ([8ad3834](https://github.com/ike18t/ng-mocks/commit/8ad3834))
1040
+
1041
+
1042
+
1043
+ <a name="6.0.0"></a>
1044
+ # 6.0.0 (2018-05-14)
1045
+
1046
+
1047
+ ### Features
1048
+
1049
+ * support angular 6 and test 5 & 6 in travis ([5bc9331](https://github.com/ike18t/ng-mocks/commit/5bc9331))
1050
+
1051
+
1052
+
1053
+ <a name="5.3.0"></a>
1054
+ # 5.3.0 (2018-04-05)
1055
+
1056
+
1057
+ ### Features
1058
+
1059
+ * MockOf - Include mocked class names in mock class names ([8b149f5](https://github.com/ike18t/ng-mocks/commit/8b149f5))
1060
+
1061
+
1062
+
1063
+ <a name="5.2.0"></a>
1064
+ # 5.2.0 (2018-03-30)
1065
+
1066
+
1067
+ ### Features
1068
+
1069
+ * Use Angular annotation resolvers ([4050d10](https://github.com/ike18t/ng-mocks/commit/4050d10))
1070
+
1071
+
1072
+
1073
+ <a name="5.1.0"></a>
1074
+ # 5.1.0 (2018-03-25)
1075
+
1076
+
1077
+ ### Bug Fixes
1078
+
1079
+ * Add a null check for decorator args ([1058044](https://github.com/ike18t/ng-mocks/commit/1058044))
1080
+
1081
+
1082
+ ### Features
1083
+
1084
+ * Support Angular propDecorators inputs and outputs ([add374d](https://github.com/ike18t/ng-mocks/commit/add374d))
1085
+
1086
+
1087
+
1088
+ <a name="5.0.0"></a>
1089
+ # 5.0.0 (2018-03-25)
1090
+
1091
+
1092
+ ### Bug Fixes
1093
+
1094
+ * Fix bad return value from mock-directive ([4659a32](https://github.com/ike18t/ng-mocks/commit/4659a32))
1095
+ * multiple decorators on an input ([13874b9](https://github.com/ike18t/ng-mocks/commit/13874b9))
1096
+ * Outdated package-lock ([7623e98](https://github.com/ike18t/ng-mocks/commit/7623e98))
1097
+
1098
+
1099
+ ### Features
1100
+
1101
+ * add functions to mass mock ([fee5a03](https://github.com/ike18t/ng-mocks/commit/fee5a03))
1102
+ * Cleanup exports and export MockDeclaration from MockModule ([9fe2bb1](https://github.com/ike18t/ng-mocks/commit/9fe2bb1))
1103
+ * mock directives now have event emitter bound outputs ([bac1ca5](https://github.com/ike18t/ng-mocks/commit/bac1ca5))
1104
+
1105
+
1106
+
1107
+ <a name="5.0.0-rc5"></a>
1108
+ # 5.0.0-rc5 (2018-03-07)
1109
+
1110
+
1111
+ ### Bug Fixes
1112
+
1113
+ * package json typings location ([5f6fde0](https://github.com/ike18t/ng-mocks/commit/5f6fde0))
1114
+
1115
+
1116
+
1117
+ <a name="5.0.0-rc4"></a>
1118
+ # 5.0.0-rc4 (2018-03-07)
1119
+
1120
+
1121
+
1122
+ <a name="5.0.0-rc3"></a>
1123
+ # 5.0.0-rc3 (2018-03-07)
1124
+
1125
+
1126
+ ### Bug Fixes
1127
+
1128
+ * integrate mock-pipe ([d747517](https://github.com/ike18t/ng-mocks/commit/d747517))
1129
+ * mock_direcive integration ([7f02f7b](https://github.com/ike18t/ng-mocks/commit/7f02f7b))
1130
+
1131
+
1132
+ ### Features
1133
+
1134
+ * merge in mock-module ([05eaebe](https://github.com/ike18t/ng-mocks/commit/05eaebe))
1135
+ * support inputs and outputs from extended components ([fc46838](https://github.com/ike18t/ng-mocks/commit/fc46838))
1136
+
1137
+
1138
+
1139
+ <a name="5.0.0-rc1"></a>
1140
+ # 5.0.0-rc1 (2018-02-10)
1141
+
1142
+
1143
+ ### Bug Fixes
1144
+
1145
+ * add reflect-metadata back to devDeps ([385c9c4](https://github.com/ike18t/ng-mocks/commit/385c9c4))
1146
+ * Add support for directives with a different kind of meta ([0bd38cc](https://github.com/ike18t/ng-mocks/commit/0bd38cc))
1147
+ * add testbed test that exposed now fixed issue ([610cbdc](https://github.com/ike18t/ng-mocks/commit/610cbdc))
1148
+ * forgot how to use js reduce ([de518d4](https://github.com/ike18t/ng-mocks/commit/de518d4))
1149
+ * instantiate event emitters in component constructor ([fb4b97d](https://github.com/ike18t/ng-mocks/commit/fb4b97d))
1150
+ * module exports is now all declarations ([fbb0e73](https://github.com/ike18t/ng-mocks/commit/fbb0e73))
1151
+ * output binding ([59f476d](https://github.com/ike18t/ng-mocks/commit/59f476d))
1152
+ * works with component w/o inputs or outputs ([b3d38e7](https://github.com/ike18t/ng-mocks/commit/b3d38e7))
1153
+
1154
+
1155
+ ### Features
1156
+
1157
+ * add exportAs and alias support ([14a1474](https://github.com/ike18t/ng-mocks/commit/14a1474))
1158
+ * add support for exportAs and input aliases ([9b42a21](https://github.com/ike18t/ng-mocks/commit/9b42a21))
1159
+ * Adding angular 2 compatibility and moving to peerDependency ([#3](https://github.com/ike18t/ng-mocks/issues/3)) ([4bd93db](https://github.com/ike18t/ng-mocks/commit/4bd93db))
1160
+ * component mock implements control value accessor to support ngModel binding ([67ea7c4](https://github.com/ike18t/ng-mocks/commit/67ea7c4))
1161
+ * initial implementation ([893f83b](https://github.com/ike18t/ng-mocks/commit/893f83b))
1162
+ * memoize function by arg ([031e3a6](https://github.com/ike18t/ng-mocks/commit/031e3a6))
1163
+ * memoize function by arg ([cac00b3](https://github.com/ike18t/ng-mocks/commit/cac00b3))
1164
+ * mock module providers ([49b2272](https://github.com/ike18t/ng-mocks/commit/49b2272))
1165
+ * Upgrade to angular 5 and pull in testbed for tests ([7df64a8](https://github.com/ike18t/ng-mocks/commit/7df64a8))
1166
+
1167
+
1168
+
5
1169
  <a name="7.7.1"></a>
6
1170
  ## 7.7.1 (2019-04-23)
7
1171