Skip to content

Releases: testing-library/angular-testing-library

v9.0.0-beta.1

09 Feb 18:53
Compare
Choose a tag to compare
v9.0.0-beta.1 Pre-release
Pre-release

9.0.0-beta.1 (2020-02-09)

Features

  • add tab user-event (4b59d4f)
  • remove angular attributes added to the container (35277f7)
  • upgrade dom testing library (b1d0063)
  • upgrade to angular 9 (0000d5b)

BREAKING CHANGES

  • Angular adds the attributes ng-version and id to the container, these will be removed
    This behavior can be disabled with the removeAngularAttributes property
await render(HelloComponent, {
  removeAngularAttributes: false,
});
  • This versions runs on Angular 9

v8.2.0

04 Dec 07:49
a3975cd
Compare
Choose a tag to compare

8.2.0 (2019-12-04)

Features

  • waitForDomChange, waitForElement, waitForElementToBeRemoved (#60) (a3975cd)

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