Loading...
Loading...
Detox React Native E2E testing. Use for RN testing.
npx skill4agent add g1joshi/agent-skills detoxdescribe("Example", () => {
beforeAll(async () => {
await device.launchApp();
});
it("should show hello screen after tap", async () => {
await element(by.id("hello_button")).tap();
await expect(element(by.text("Hello!!!"))).toBeVisible();
});
});sleep()by.id()by.text()by.label()testIDtestIDdevice.reloadReactNative()