react-carousel-query
Version:
A infinite carousel component made with react that handles the pagination for you.
37 lines (29 loc) • 1.08 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.waitForElement = waitForElement;
var _waitFor = require("./wait-for");
let hasWarned = false; // deprecated... TODO: remove this method. People should use a find* query or
// wait instead the reasoning is that this doesn't really do anything useful
// that you can't get from using find* or wait.
async function waitForElement(callback, options) {
if (!hasWarned) {
hasWarned = true;
console.warn(`\`waitForElement\` has been deprecated. Use a \`find*\` query (preferred: https://testing-library.com/docs/dom-testing-library/api-queries#findby) or use \`waitFor\` instead: https://testing-library.com/docs/dom-testing-library/api-async#waitfor`);
}
if (!callback) {
throw new Error('waitForElement requires a callback as the first parameter');
}
return (0, _waitFor.waitFor)(() => {
const result = callback();
if (!result) {
throw new Error('Timed out in waitForElement.');
}
return result;
}, options);
}
/*
eslint
require-await: "off"
*/