UNPKG

@dot.indonesia/po-gen

Version:

This project has created to relieve work load as SDET or Automation Test Engineer. You just export the postman collection, and run this generator to write the automation code.

13 lines (12 loc) 405 B
interface optionInterface { customKey: string[]; jsonFileQ: string; } /** * @description main automation generator * @param {optionInterface} option included custom key of collection and file (.json) * @param {any} moduleType module type selected * @returns {Promise<void>} */ export declare const generate: (option: optionInterface, moduleType: any) => Promise<void>; export {};