UNPKG

@oclif/test

Version:

test helpers for oclif components

13 lines (12 loc) 278 B
/// <reference types="mocha" /> import { Errors } from '@oclif/core'; /** * ensures that a oclif command or hook exits */ declare const _default: (code?: number) => { catch(ctx: { error: Errors.CLIError; }): void; run(): never; }; export default _default;