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) 336 B
/** * @description base path in debug or production * @returns {string} */ export default function basePath() { const isProd = true; return isProd ? './node_modules/@dot.indonesia/po-gen/' : '../'; } /** * @description base dir * @returns {string} */ export function basedir() { return process.cwd(); }