harmonyc
Version:
Harmony Code - model-driven BDD for Vitest
12 lines (11 loc) • 347 B
TypeScript
export declare class TestPhrases {
private context;
constructor(context: any);
When_goodbye(): void;
When_hello(): string;
When_greet_(name: string): void;
Then__is_(x: string, y: string): Promise<void>;
Then_last_char(s: string): string;
Then_last_char_of_greeting(): any;
Then_(s: string, r: string): void;
}