Skip to content

Releases: testing-library/cypress-testing-library

v2.0.0

06 May 03:34
Compare
Choose a tag to compare

2.0.0 (2018-05-06)

Features

  • TextMatch: upgrade dom-testing-library (bba26fb)

BREAKING CHANGES

  • TextMatch: Strings are considered to be an exact match now. You can opt-into fuzzy matching, but it's recommended to use a regex instead.

v1.2.0

05 May 10:38
Compare
Choose a tag to compare

1.2.0 (2018-05-05)

Features

  • support queryBy* queryAllBy* (#5) (04c5850)

v1.1.0

24 Apr 20:05
Compare
Choose a tag to compare

1.1.0 (2018-04-24)

Features

  • support the getAll* APIs (e386c14)

v1.0.1

19 Apr 05:29
Compare
Choose a tag to compare

1.0.1 (2018-04-19)

Bug Fixes

  • logs: log the command properly (a44bb83)

v1.0.0

10 Apr 13:33
Compare
Choose a tag to compare

1.0.0 (2018-04-10)

Bug Fixes

  • use getBy, not queryBy, to fail on missing element (#1) (5106558)

Features

  • commands: use waitForElement; add jest & cypress tests (#2) (ef22f87)

BREAKING CHANGES

  • The queries will now throw a useful message and fail
    the test if the queried element is missing.

  • docs(contributors): add sompylasar