Skip to content

Releases: testing-library/angular-testing-library

v8.1.0

29 Nov 19:23
924382c
Compare
Choose a tag to compare

8.1.0 (2019-11-29)

Features

v8.0.4

23 Nov 14:54
e41c034
Compare
Choose a tag to compare

8.0.4 (2019-11-23)

Bug Fixes

  • don't call detectChanges when fixture is destroyed (#57) (e41c034)

v8.0.3

21 Sep 18:43
ced7046
Compare
Choose a tag to compare

8.0.3 (2019-09-21)

Bug Fixes

  • type should not type in readonly or disabled fields (#51) (ced7046)

v8.0.2

20 Sep 18:34
ce4416f
Compare
Choose a tag to compare

8.0.2 (2019-09-20)

Bug Fixes

  • type with empty value should clear the input (#50) (ce4416f)

v8.0.1

19 Sep 16:46
Compare
Choose a tag to compare

8.0.1 (2019-09-19)

Bug Fixes

v8.0.0

18 Sep 18:52
6fa8df9
Compare
Choose a tag to compare

8.0.0 (2019-09-18)

Features

BREAKING CHANGES

    • It isn't possible to define your component as a component template anymore, it's obligated now to use the component's class.

BEFORE:

const component = render(`<person-details></person-details>`)

AFTER:

const component = render(PersonDetails)
  • It isn't possible anymore to define a wrapper while testing a component, it's only possible to do this while testing a directive.
const component = render(PersonDetails, {
  wrapper: PersonWrapper
})

v7.6.0

13 Sep 19:21
656aa69
Compare
Choose a tag to compare

7.6.0 (2019-09-13)

Features

v7.5.0

03 Sep 12:54
Compare
Choose a tag to compare

7.5.0 (2019-09-03)

Features

v7.4.2

31 Aug 16:42
Compare
Choose a tag to compare

7.4.2 (2019-08-31)

Bug Fixes

  • inline documentation typos (79527a9)

v7.4.1

31 Aug 15:38
dc6af45
Compare
Choose a tag to compare

7.4.1 (2019-08-31)

Bug Fixes

  • allow type to receive a number value (#44) (dc6af45)