import _axios from '../../index.js'; window.axios = _axios; // Jasmine config jasmine.DEFAULT_TIMEOUT_INTERVAL = 20000; jasmine.getEnv().defaultTimeoutInterval = 20000; // Get Ajax request using an increasing timeout to retry window.getAjaxRequest = (function () { let attempts = 0; const MAX_ATTEMPTS = 5; const ATTEMPT_DELAY_FACTOR = 5; function getAjaxRequest() { return new Promise(function (resolve, reject) { attempts = 0; attemptGettingAjaxRequest(resolve, reject); }); } function attemptGettingAjaxRequest(resolve, reject) { const delay = attempts * attempts * ATTEMPT_DELAY_FACTOR; if (attempts++ > MAX_ATTEMPTS) { reject(new Error('No request was found')); return; } setTimeout(function () { const request = jasmine.Ajax.requests.mostRecent(); if (request) { resolve(request); } else { attemptGettingAjaxRequest(resolve, reject); } }, delay); } return getAjaxRequest; })();