console/integration-tests/testkit/cli.ts
2022-06-24 16:51:53 +02:00

24 lines
748 B
TypeScript

import * as utils from 'dockest/test-helper';
import { execa } from 'dockest';
import { resolve } from 'path';
const registryAddress = utils.getServiceAddress('server', 3001);
const cliDevLocation = resolve(__dirname, '../../packages/libraries/cli/bin/dev');
async function exec(cmd: string) {
const result = execa(`${cliDevLocation} ${cmd}`);
if (result.failed) {
throw result.stderr;
}
return result.stdout;
}
export async function schemaPublish(args: string[]) {
return exec(['schema:publish', `--registry`, `http://${registryAddress}/graphql`, ...args].join(' '));
}
export async function schemaCheck(args: string[]) {
return exec(['schema:check', `--registry`, `http://${registryAddress}/graphql`, ...args].join(' '));
}