UNPKG

@stryker-mutator/vitest-runner

Version:

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

31 lines (30 loc) 1.12 kB
{ "$schema": "http://json-schema.org/draft-07/schema", "type": "object", "title": "StrykerVitestRunnerOptions", "additionalProperties": false, "properties": { "vitest": { "description": "Configuration for @stryker-mutator/vitest-runner", "title": "VitestRunnerOptions", "additionalProperties": false, "type": "object", "default": {}, "properties": { "dir": { "description": "Configure the `--dir <path>` command line option", "type": "string" }, "related": { "description": "Use [related mode](https://vitest.dev/guide/cli.html#vitest-related) to narrow down the tests to run", "type": "boolean", "default": true }, "configFile": { "description": "Path to the config file. Default resolving to `vitest.config.*`, `vite.config.*`", "type": "string" } } } } }