Skip to main content

test

Run tests for WooCommerce iOS (full suite or targeted)

Ir a la instalación

Datos de origen

Repositorio
woocommerce/woocommerce-ios
Última actividad en el origen
2 de marzo de 2026 a las 10:33
Idioma detectado de SKILL.md
inglés
Estrellas
358
Forks
131

Opciones de instalación

De forma predeterminada está seleccionado el prompt que primero revisa el origen. Puedes cambiar a un comando directo o descargar una copia local.

Revisa los archivos de origen

Lee SKILL.md y los archivos complementarios que muestra SkillsMP antes de decidir si quieres instalarlo.

Mostrando SKILL.md

SKILL.md
Instrucciones de origen · Vista previa de solo lectura
name
test
description
Run tests for WooCommerce iOS (full suite or targeted)
user-invocable
true
allowed-tools
Bash, Read, Grep, Glob
argument-hint
[target] [class] [method]
Run unit tests for the WooCommerce iOS project using the Fastlane `test` lane. ## Run tests Determine scope from $ARGUMENTS: - **No arguments**: Run the full unit test suite: ```bash bundle exec fastlane test 2>&1 | tail -100 ``` - **Module name** (e.g., `Yosemite`, `Networking`, `Storage`) or **test class/method**: Use the `only_testing` option: ```bash bundle exec fastlane test only_testing:"<Module>Tests[/<ClassName>[/<method>]]" 2>&1 | tail -100 ``` - **Clean build requested** (or after dependency/scheme changes): Add `clean:true`: ```bash bundle exec fastlane test clean:true 2>&1 | tail -100 ``` Options can be combined: ```bash bundle exec fastlane test only_testing:WooCommerceTests/MyClass clean:true 2>&1 | tail -100 ``` ## After running 1. Report pass/fail counts 2. If failures, show the failing test names and assertion messages 3. Read the failing test files to understand what went wrong 4. Suggest fixes for failing tests If the simulator is not available, use the `/simulator` skill to discover an available one, then retry.
Ver en GitHub