@stryker-mutator/mocha-runner
Version:
A plugin to use the mocha test runner in Stryker, the JavaScript mutation testing framework
17 lines (10 loc) • 665 B
text/typescript
import fs from 'fs';
import { URL } from 'url';
import { declareFactoryPlugin, PluginKind } from '@stryker-mutator/api/plugin';
import { createMochaTestRunner, createMochaTestRunnerFactory } from './mocha-runner-factories.js';
export { MochaTestRunner } from './mocha-test-runner.js';
export const strykerPlugins = [declareFactoryPlugin(PluginKind.TestRunner, 'mocha', createMochaTestRunner)];
export const strykerValidationSchema: typeof import('../schema/mocha-runner-options.json') = JSON.parse(
fs.readFileSync(new URL('../schema/mocha-runner-options.json', import.meta.url), 'utf-8'),
);
export { createMochaTestRunner, createMochaTestRunnerFactory };