@naxodev/gonx
Version:
Modern Nx plugin to use Go in a Nx workspace
12 lines (11 loc) • 400 B
TypeScript
import type { ExecutorContext } from '@nx/devkit';
import type { TestExecutorSchema } from './schema';
/**
* This executor tests Go code using the `go test` command.
*
* @param options options passed to the executor
* @param context context passed to the executor
*/
export default function runExecutor(options: TestExecutorSchema, context: ExecutorContext): Promise<{
success: boolean;
}>;