@sprucelabs/spruce-cli
Version:
Command line interface for building Spruce skills.
10 lines (9 loc) • 491 B
TypeScript
import SpyInterface from '../../interfaces/SpyInterface';
declare const uiAssert: {
assertRendersSelect(ui: SpyInterface): Promise<any>;
assertSelectDidNotRenderChoice(ui: SpyInterface, value: string, label: string): void;
assertSelectRenderChoice(ui: SpyInterface, value: string, label: string): void;
assertRendersDirectorySelect(ui: SpyInterface, defaultValue: string): void;
assertRendersConfirmWriteFile(ui: SpyInterface): Promise<void>;
};
export default uiAssert;