@nx-dotnet/core
Version:
- Have an existing nx workspace. For creating this, see [nrwl's documentation](https://nx.dev/latest/angular/getting-started/nx-setup). - .NET SDK is installed, and `dotnet` is available on the path. For help on this, see [Microsoft's documentation](https
37 lines (36 loc) • 736 B
TypeScript
export interface TestExecutorSchema {
testAdapterPath?: string;
blame?: boolean;
blameCrash?: boolean;
blameCrashDumpType?: string;
blameCrashCollectAlways?: boolean;
blameHang?: boolean;
blameHangDumpType?: string;
blameHangTimeout?: string;
configuration?: string;
collect?: string;
diag?: string;
framework?: string;
filter?: string;
logger?: string;
noBuild?: boolean;
noRestore?: boolean;
output?: string;
resultsDirectory?: string;
runtime?: string;
settings?: string;
listTests?: boolean;
verbosity?:
| 'quiet'
| 'q'
| 'm'
| 'minimal'
| 'n'
| 'normal'
| 'd'
| 'detailed'
| 'diag'
| 'diagnostic';
watch?: boolean;
extraParameters?: string;
}