Anthropic Claudeソフトウェア開発⭐ リポ 24品質スコア 78/100
mobile-app-testing
iOS・Androidの包括的なモバイルアプリテスト戦略を提供します。ユニットテスト、UIテスト、統合テスト、パフォーマンステストに対応し、Detox、Appium、XCTestを使用したテスト自動化を実装できます。
description の原文を見る
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.
SKILL.md 本文
注意: このスキルのライセンスは GPL-3.0 です。本サイトでは本文プレビューのみを表示しています。利用前に GitHub の原本でライセンス条件をご確認ください。
モバイルアプリテスト
概要
ユニットテスト、UIテスト、統合テスト、パフォーマンステストを含む、モバイルアプリケーション向けの包括的なテスト戦略を実装します。
使用する場面
- テストカバレッジを備えた信頼性の高いモバイルアプリケーションの作成
- iOSとAndroid全体でのUIテストの自動化
- パフォーマンステストと最適化
- バックエンドサービスとの統合テスト
- リリース前の回帰テスト
手順
1. Jest & Detoxを使用したReact Nativeテスト
// 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);
});
});
// コンポーネントユニットテスト
import React
...
詳細情報
- 作者
- IsKenKenYa
- ライセンス
- GPL-3.0
- 最終更新
- 2026/5/11
Source: https://github.com/IsKenKenYa/1Panel-Client / ライセンス: GPL-3.0