Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
Comprehensive mobile app testing strategies for iOS and Android. Covers unit tests, UI tests, integration tests, performance testing, and test automation with Detox, Appium, and XCTest.
Implement comprehensive testing strategies for mobile applications including unit tests, UI tests, integration tests, and performance testing.
// Unit test with Jest
import { calculate } from '../utils/math';
describe('Math utilities', () => {
test('should add two numbers', () => {
expect(calculate.add(2, 3)).toBe(5);
});
test('should handle negative numbers', () => {
expect(calculate.add(-2, 3)).toBe(1);
});
});
// Component unit test
import React from 'react';
import { render, screen } from '@testing-library/react-native';
import { UserProfile } from '../components/UserProfile';
describe('UserProfile Component', () => {
test('renders user name correctly', () => {
const mockUser = { id: '1', name: 'John Doe', email: 'john@example.com' };
render(<UserProfile user={mockUser} />);
npx skills add IsKenKenYa/1Panel-Client --skill mobile-app-testingHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Mostly clear, but there are still a few confusing or poorly structured parts.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Partially actionable with several concrete steps, but still missing important details.