Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: callstack/react-native-testing-library
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v10.1.1
Choose a base ref
...
head repository: callstack/react-native-testing-library
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v11.0.0-rc.0
Choose a head ref
  • 14 commits
  • 45 files changed
  • 5 contributors

Commits on Jul 18, 2022

  1. chore: update react-native to 0.68.2 (#1009)

    * chore: update react-native to 0.68.2
    
    * chore: update workflow node version to 14
    
    * chore: fix flow
    
    * chote: increase jest timeout
    mdjastrzebski authored Jul 18, 2022
    Configuration menu
    Copy the full SHA
    63f7731 View commit details
    Browse the repository at this point in the history
  2. chore: update react-native to 0.69.1 (#1010)

    * chore: update react-native deps
    
    * refactor: split fake timer test to make it pass
    mdjastrzebski authored Jul 18, 2022
    Configuration menu
    Copy the full SHA
    bdd8f75 View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2022

  1. chore: update Jest to 28 (#1008)

    * chore: update jest
    
    * refactor: pass useFakeTimer config in tests
    
    * refactor: remove unused code
    
    * fix jest config unable to discover babel due to rootDir change
    
    Co-authored-by: Michał Pierzchała <thymikee@gmail.com>
    mdjastrzebski and thymikee authored Jul 19, 2022
    Configuration menu
    Copy the full SHA
    77bf93c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    91d2b83 View commit details
    Browse the repository at this point in the history
  3. chore(deps): bump minimist from 1.2.5 to 1.2.6 (#952)

    Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6.
    - [Release notes](https://github.com/substack/minimist/releases)
    - [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6)
    
    ---
    updated-dependencies:
    - dependency-name: minimist
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jul 19, 2022
    Configuration menu
    Copy the full SHA
    8ce39f5 View commit details
    Browse the repository at this point in the history
  4. Trigger non-touch events on box-none targets (#906)

    * Trigger non-touch events on box-none targets
    
    Currently, this library disables _all_ events for a target with
    `pointerEvents="box-none"`. This behavior is counter to how React Native
    itself functions. This change continues to disable touch events, e.g.
    `press`, for targets set to "box-none", but allows triggering non-touch
    events, e.g. `layout`, `touchStart`.
    
    * Event triggers target box-none View instead of child
    
    This approach more closely aligns with the original failing test case.
    
    * Rename events in test description
    
    Attempt to better communicate the test is focused on ensuring that touch
    events continue to trigger (e.g. `touchStart`), but the final event from
    a touch tap does not trigger.
    dcalhoun authored Jul 19, 2022
    Configuration menu
    Copy the full SHA
    d2269f6 View commit details
    Browse the repository at this point in the history
  5. docs: create document describing act function and related errors (#969)

    * docs: initial act doc
    
    * self code review
    
    * docs: self code review
    
    * docs: applied type fixes
    
    * docs: further updates
    mdjastrzebski authored Jul 19, 2022
    Configuration menu
    Copy the full SHA
    f6fe982 View commit details
    Browse the repository at this point in the history
  6. chore(deps-dev): bump @babel/cli from 7.15.7 to 7.18.9 (#1014)

    Bumps [@babel/cli](https://github.com/babel/babel/tree/HEAD/packages/babel-cli) from 7.15.7 to 7.18.9.
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.18.9/packages/babel-cli)
    
    ---
    updated-dependencies:
    - dependency-name: "@babel/cli"
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jul 19, 2022
    Configuration menu
    Copy the full SHA
    40b6c9a View commit details
    Browse the repository at this point in the history
  7. chore(deps): bump plist from 3.0.4 to 3.0.6 (#1011)

    Bumps [plist](https://github.com/TooTallNate/node-plist) from 3.0.4 to 3.0.6.
    - [Release notes](https://github.com/TooTallNate/node-plist/releases)
    - [Changelog](https://github.com/TooTallNate/plist.js/blob/master/History.md)
    - [Commits](https://github.com/TooTallNate/node-plist/commits)
    
    ---
    updated-dependencies:
    - dependency-name: plist
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jul 19, 2022
    Configuration menu
    Copy the full SHA
    986a029 View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2022

  1. Organise a11y queries by predicate (#977)

    * refactor: make Options generic type optionnal in queries
    
    * refactor: extract byLabelText queries and its tests
    
    * refactor: extract byA11yHint queries and its tests
    
    * refactor: extract byRole queries and its tests
    
    * refactor: extract byA11yState queries and its tests
    
    * refactor: extract byA11yValue queries and its tests
    
    * refactor: extract byA11yStates queries and its tests
    
    * refactor: harmonize component declaration in queries testsx
    
    * refactor: simplify error helpers in queries tests
    
    * refactor: make error helpers more explicit
    
    * chore: remove now unused makeA11yQueries
    
    * refactor: rename AccessibilityStateKeyQueryParam to AccessibilityStateKeys
    
    * refactor: rename param in a11yStates
    
    * refactor: simplify matchObject
    
    * refactor: fix namings in labelText
    
    * refactor: fix namings in a11yHint
    
    * refactor: fix queryAll namings'
    
    * refactor: fix some namings in a11yState
    
    * refactor: fix some namings in role
    
    * refactor: fix some namings in a11yValue
    
    * refactor: extract matchStringValue
    
    * refactor: extract matchObject
    
    * refactor: extract matchArrayValue
    
    * test: add tests for the matchers
    
    * refactor: simplify matchArrayValue to make it more explicit
    
    * refactor: reorder imports and object keys
    
    * refactor: update types
    
    * refactor: small tweaks
    
    * refactor: tweaks
    
    * refactor: clarify matcher naming
    
    * refactor: add missing aliases
    
    * chore: fix ci timeout
    
    * chore: revert jest timeout increase
    
    * chore: revert timeout increase
    
    * chore: fix ci tests
    
    * chore: re-enable disabled tests
    
    * chore: reduce jest paralelizaiton
    
    * chore: ci tweaks
    
    Co-authored-by: Maciej Jastrzebski <mdjastrzebski@gmail.com>
    MattAgn and mdjastrzebski authored Jul 20, 2022
    Configuration menu
    Copy the full SHA
    7431885 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9f3b31d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    980b3df View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ade9f33 View commit details
    Browse the repository at this point in the history
  5. v11.0.0-rc.0

    thymikee committed Jul 20, 2022
    Configuration menu
    Copy the full SHA
    6a65ed3 View commit details
    Browse the repository at this point in the history
Loading