UNPKG

@stryker-mutator/vitest-runner

Version:

A plugin to use the vitest test runner and framework in Stryker, the JavaScript mutation testing framework

27 lines (25 loc) 765 B
/** * This file was automatically generated by generate-json-schema-to-ts.js. * DO NOT MODIFY IT BY HAND. Instead, modify the source file JSON file: vitest-runner-options.json, * and run 'npm run generate' from monorepo base directory. */ export interface StrykerVitestRunnerOptions { vitest: VitestRunnerOptions; } /** * Configuration for @stryker-mutator/vitest-runner */ export interface VitestRunnerOptions { /** * Configure the `--dir <path>` command line option */ dir?: string; /** * Use [related mode](https://vitest.dev/guide/cli.html#vitest-related) to narrow down the tests to run */ related: boolean; /** * Path to the config file. Default resolving to `vitest.config.*`, `vite.config.*` */ configFile?: string; }