Releases: testing-library/angular-testing-library
Releases · testing-library/angular-testing-library
v9.0.0-beta.2
28 Feb 19:11
Compare
Sorry, something went wrong.
No results found
Bug Fixes
auto cleanup after each test (8cd9783 )
correct removeAngularAttributes docs (a945a6f )
only add container when angular attributes are removed (e194bac )
Features
v9.0.0-beta.1
09 Feb 18:53
Compare
Sorry, something went wrong.
No results found
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
Compare
Sorry, something went wrong.
No results found
8.2.0 (2019-12-04)
Features
waitForDomChange, waitForElement, waitForElementToBeRemoved (#60 ) (a3975cd )
v8.1.0
29 Nov 19:23
Compare
Sorry, something went wrong.
No results found
8.1.0 (2019-11-29)
Features
v8.0.4
23 Nov 14:54
Compare
Sorry, something went wrong.
No results found
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
Compare
Sorry, something went wrong.
No results found
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
Compare
Sorry, something went wrong.
No results found
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
Sorry, something went wrong.
No results found
8.0.1 (2019-09-19)
Bug Fixes
v8.0.0
18 Sep 18:52
Compare
Sorry, something went wrong.
No results found
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
Compare
Sorry, something went wrong.
No results found
7.6.0 (2019-09-13)
Features