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.

16 lines (15 loc) 481 B
interface testComponentInterface { element: any; path: string; pagesPath: string; dataPath: string; moduleType: string; configPath: string; } /** * @description asynchronous function to write tests into directory * @param {testComponentInterface} writeTestParams included element json and all needed path * @returns {Promise<void>} */ export declare const writeTest: (writeTestParams: testComponentInterface) => Promise<void>; export {};