Releases: testing-library/webdriverio-testing-library
Releases · testing-library/webdriverio-testing-library
v3.0.0
3.0.0 (2021-06-12)
Bug Fixes
- expected getBy query errors being logged (6f67a7a)
BREAKING CHANGES
- The errors thrown by getBy queries will have slightly
different messages as they are no longer being processed directly by
WebdriverIO. This may cause tests that assert against the error message
to fail after this fix.
v2.1.2
v2.1.1
v2.1.0
v2.1.0-prerelease.1
v2.0.0
2.0.0 (2021-03-16)
Bug Fixes
- typescript sync mode compilation (fbe3663)
BREAKING CHANGES
- users will now need to include WebdriverIO types in
their tsconfig.json in order to hydrate the WebdriverIO.Element type.
In order to verify the lib compiles for both async and sync mode
projects the test folder has been reorganised into two sets of tests:
those that use async mode and those that use sync mode. To achieve this
a tsconfig is included in each directory that includes the corresponding
WebdriverIO types for their mode. In order to verify each test mode
compiles correctly typecheck
npm scripts have been added and are used
in the validate script.