Giter Club home page Giter Club logo

Comments (5)

Selfmade-RuLeZ avatar Selfmade-RuLeZ commented on May 25, 2024 8

do you still need a better implementation as a new Button just for testing? This is how I solved it:

it('performs onValueChange', () => {
  const func = jest.fn();
  const {getByTestId} = render(
    <CheckBox onValueChange={func} testID="myTest" />,
  );
  const checkBox = getByTestId('myTest');
  fireEvent(checkBox, 'onValueChange', {nativeEvent: {}});
  expect(func).toBeCalledTimes(1);
});


it('changes value', () => {
  let checked = false;
  const {getByTestId} = render(
    <CheckBox
      value={checked}
      onValueChange={() => (checked = !checked)}
      testID="myTest"
    />,
  );
  const checkBox = getByTestId('myTest');
  expect(checked).toBeFalsy();
  fireEvent(checkBox, 'onValueChange', {nativeEvent: {}});
  expect(checked).toBeTruthy();
});

The last one is not that much beauty, maybe someone can beautify it a little bit 👍

Edit: Realized it with @testing-library/react-native

from react-native-checkbox.

echase03 avatar echase03 commented on May 25, 2024 5

Had a similar issue, ended up using this to toggle the checkbox:

fireEvent(getByRole('checkbox'), 'onValueChange', true)

Just wanted to add this in case it helps anybody else!

from react-native-checkbox.

JanithaR avatar JanithaR commented on May 25, 2024 2

I went ahead with wrapping the checkbox label with a TouchableOpacity and testing the onPress callback on that.

from react-native-checkbox.

nicholaslee119 avatar nicholaslee119 commented on May 25, 2024 1

https://github.com/react-native-community/react-native-checkbox/blob/223e604f4fbe1abd57a476d743d294f6de82a38a/example/AppFunction.tsx#L25-L86

There are some examples to show how to change the value of checkbox outside. Please feel free to let us know if you have any trouble in the test of checkbox

from react-native-checkbox.

anabeatrizzz avatar anabeatrizzz commented on May 25, 2024

Had a similar issue, ended up using this to toggle the checkbox:

fireEvent(getByRole('checkbox'), 'onValueChange', true)

Just wanted to add this in case it helps anybody else!

Thanks @echase03!

I would like to add also that in my case, I needed to add an await

const checkbox = await findByRole('checkbox');
fireEvent(checkbox, 'onValueChange', true);

from react-native-checkbox.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.