@postdata/cli
Version:
A CLI to run Postdata test scripts in CI environments.
18 lines (14 loc) • 465 B
text/typescript
export type TestCmdOptions = {
env?: string;
delay?: string;
token?: string;
server?: string;
reporterJunit?: string;
};
// Consumed in the collection `file_path_or_id` argument action handler
export type TestCmdCollectionOptions = Omit<TestCmdOptions, "env" | "delay">;
// Consumed in the `--env, -e` flag action handler
export type TestCmdEnvironmentOptions = Omit<TestCmdOptions, "env"> & {
env: string;
};
export type HOPP_ENV_FILE_EXT = "json";