@frontmcp/testing.
Usage
Configuration
project.json
Options
Caching
This executor is cacheable. Test results are cached when inputs haven’t changed. Use withcoverage for reproducible reports.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Run E2E tests using frontmcp test
@frontmcp/testing.
nx test my-app
nx test my-app --runInBand --coverage
{
"targets": {
"test": {
"executor": "@frontmcp/nx:test",
"options": {
"runInBand": true
}
}
}
}
| Option | Type | Default | Description |
|---|---|---|---|
runInBand | boolean | false | Run tests serially (recommended for E2E) |
watch | boolean | false | Watch mode |
coverage | boolean | false | Collect test coverage |
verbose | boolean | false | Verbose output |
timeout | number | — | Test timeout in ms |
coverage for reproducible reports.
# Run tests for affected projects only
nx affected -t test