UNPKG

@revoloo/cypress6

Version:

Cypress.io end to end testing tool

42 lines (31 loc) 856 B
const _ = require('lodash') const $errUtils = require('../cypress/error_utils') const create = (state) => { return { timeout (ms, delta = false) { const runnable = state('runnable') if (!runnable) { $errUtils.throwErrByPath('miscellaneous.outside_test') } if (_.isFinite(ms)) { // if delta is true then we add (or subtract) from the // runnables current timeout instead of blanketingly setting it ms = delta ? runnable.timeout() + ms : ms runnable.timeout(ms) return this } return runnable.timeout() }, clearTimeout () { const runnable = state('runnable') if (!runnable) { $errUtils.throwErrByPath('miscellaneous.outside_test') } runnable.clearTimeout() return this }, } } module.exports = { create, }