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.

7 lines (6 loc) 201 B
/** * @description explicit time for wait * @param {number} ms number of time in millisecond * @returns {Promise<void>} */ export const waitFor = (ms) => new Promise(r => setTimeout(r, ms));