12345678910111213141516171819202122232425262728293031323334353637 |
- "use strict";
- 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"
- */
|