Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:8
forks:2
updated:February 10, 2026 at 17:05
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | detox |
| description | Detox React Native E2E testing. Use for RN testing. |
Detox is designed for React Native. Unlike Appium (Black-box), Detox works "Gray-box" by running inside your app, monitoring the main thread. It knows when the app is busy/idle, eliminating flaky waits.
describe("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();
});
});
Detox monitors network requests, animations, and timers. It waits for the app to go "Idle" before executing the next command. No sleep() needed.
by.id(), by.text(), by.label(). Needs testID props on React Native components.
Do:
testID props: Add them to all interactive elements in your React Native code.device.reloadReactNative(): Faster than relaunching the whole app for every test.Don't: