You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I set the testID on the RadioForm component according to the documentation. However, the testIDs in the RadioButtonInput and RadioButtonLabel components have not been defined.
I'm using Detox with Jest for e2e tests. Below is an example:
describe('when the component is loaded',()=>{it('should show all items',async()=>{awaitexpect(element(by.id('my-radio-formInput0'))).toBeVisible();awaitexpect(element(by.id('my-radio-formLabel0'))).toBeVisible();awaitexpect(element(by.id('my-radio-formInput1'))).toBeVisible();awaitexpect(element(by.id('my-radio-formLabel1'))).toBeVisible();});});
Is the testID generated for the input and label components in this format [testID]Input[index]?
Am I doing something wrong?
The text was updated successfully, but these errors were encountered:
I set the testID on the RadioForm component according to the documentation. However, the testIDs in the RadioButtonInput and RadioButtonLabel components have not been defined.
I'm using Detox with Jest for e2e tests. Below is an example:
Component: RadioFormExample.js
Test: RadioFormExample.spec.js
Is the testID generated for the input and label components in this format [testID]Input[index]?
Am I doing something wrong?
The text was updated successfully, but these errors were encountered: