-
Notifications
You must be signed in to change notification settings - Fork 9
Comparing changes
Open a pull request
base repository: testing-library/playwright-testing-library
base: v4.4.2
head repository: testing-library/playwright-testing-library
compare: v4.5.0
- 12 commits
- 10 files changed
- 4 contributors
Commits on Sep 24, 2022
-
build(deps): bump minimist and commitizen
Bumps [minimist](https://github.com/substack/minimist) and [commitizen](https://github.com/commitizen/cz-cli). These dependencies needed to be updated together. Updates `minimist` from 1.2.5 to 1.2.6 - [Release notes](https://github.com/substack/minimist/releases) - [Commits](https://github.com/substack/minimist/commits) Updates `commitizen` from 4.2.4 to 4.2.5 - [Release notes](https://github.com/commitizen/cz-cli/releases) - [Commits](commitizen/cz-cli@v4.2.4...v4.2.5) --- updated-dependencies: - dependency-name: minimist dependency-type: indirect - dependency-name: commitizen dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 12da315 - Browse repository at this point
Copy the full SHA 12da315View commit details -
build(deps): bump trim and doctoc
Removes [trim](https://github.com/Trott/trim). It's no longer used after updating ancestor dependency [doctoc](https://github.com/thlorenz/doctoc). These dependencies need to be updated together. Removes `trim` Updates `doctoc` from 2.1.0 to 2.2.1 - [Release notes](https://github.com/thlorenz/doctoc/releases) - [Commits](https://github.com/thlorenz/doctoc/commits) --- updated-dependencies: - dependency-name: trim dependency-type: indirect - dependency-name: doctoc dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 395b212 - Browse repository at this point
Copy the full SHA 395b212View commit details
Commits on Sep 25, 2022
-
build(deps-dev): bump playwright from 1.25.1 to 1.26.0
Bumps [playwright](https://github.com/Microsoft/playwright) from 1.25.1 to 1.26.0. - [Release notes](https://github.com/Microsoft/playwright/releases) - [Commits](microsoft/playwright@v1.25.1...v1.26.0) --- updated-dependencies: - dependency-name: playwright dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for ae33dc6 - Browse repository at this point
Copy the full SHA ae33dc6View commit details -
build(deps-dev): bump @playwright/test from 1.25.1 to 1.26.0
Bumps [@playwright/test](https://github.com/Microsoft/playwright) from 1.25.1 to 1.26.0. - [Release notes](https://github.com/Microsoft/playwright/releases) - [Commits](microsoft/playwright@v1.25.1...v1.26.0) --- updated-dependencies: - dependency-name: "@playwright/test" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for fd34be6 - Browse repository at this point
Copy the full SHA fd34be6View commit details -
build(deps-dev): bump typescript from 4.6.3 to 4.8.3
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.6.3 to 4.8.3. - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Commits](microsoft/TypeScript@v4.6.3...v4.8.3) --- updated-dependencies: - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for dc56cd4 - Browse repository at this point
Copy the full SHA dc56cd4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0989e23 - Browse repository at this point
Copy the full SHA 0989e23View commit details
Commits on Sep 28, 2022
-
build(deps-dev): bump @playwright/test from 1.26.0 to 1.26.1
Bumps [@playwright/test](https://github.com/Microsoft/playwright) from 1.26.0 to 1.26.1. - [Release notes](https://github.com/Microsoft/playwright/releases) - [Commits](microsoft/playwright@v1.26.0...v1.26.1) --- updated-dependencies: - dependency-name: "@playwright/test" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 6b21cca - Browse repository at this point
Copy the full SHA 6b21ccaView commit details -
build(deps-dev): bump playwright from 1.26.0 to 1.26.1
Bumps [playwright](https://github.com/Microsoft/playwright) from 1.26.0 to 1.26.1. - [Release notes](https://github.com/Microsoft/playwright/releases) - [Commits](microsoft/playwright@v1.26.0...v1.26.1) --- updated-dependencies: - dependency-name: playwright dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for b44dbe0 - Browse repository at this point
Copy the full SHA b44dbe0View commit details -
feat(fixture): support chaining locator queries with
locator.within()// Synchronous ```ts test('chaining synchronous queries', async ({screen}) => { const locator = screen.getByRole('figure').within().getByText('Some image') expect(await locator.textContent()).toEqual('Some image') }) ``` // Synchronous + Asynchronous ```ts test('chaining multiple asynchronous queries between synchronous queries', async ({screen}) => { const locator = await screen .getByTestId('modal-container') .within() .findByRole('dialog') .within() .findByRole('alert') .within() .getByRole('button', {name: 'Close'}) expect(await locator.textContent()).toEqual('Close') }) ```Configuration menu - View commit details
-
Copy full SHA for 81e6bc3 - Browse repository at this point
Copy the full SHA 81e6bc3View commit details -
Configuration menu - View commit details
-
Copy full SHA for cb9a0b2 - Browse repository at this point
Copy the full SHA cb9a0b2View commit details -
Configuration menu - View commit details
-
Copy full SHA for bacdc9d - Browse repository at this point
Copy the full SHA bacdc9dView commit details -
Configuration menu - View commit details
-
Copy full SHA for f837a8e - Browse repository at this point
Copy the full SHA f837a8eView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v4.4.2...v4.5.0