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; }>;