Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions integration-tests/testkit/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,13 @@ export async function schemaPublish(args: string[]) {
);
}

export async function appRetire(args: string[]) {
const registryAddress = await getServiceHost('server', 8082);
return await exec(
['app:retire', `--registry.endpoint`, `http://${registryAddress}/graphql`, ...args].join(' '),
);
}

export async function schemaCheck(args: string[], env?: Record<string, string>) {
const registryAddress = await getServiceHost('server', 8082);

Expand Down
Loading
Loading