123456789101112131415161718192021222324252627282930313233 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.findByPlaceholderText = exports.findAllByPlaceholderText = exports.getAllByPlaceholderText = exports.getByPlaceholderText = exports.queryAllByPlaceholderText = exports.queryByPlaceholderText = void 0;
- var _queryHelpers = require("../query-helpers");
- var _helpers = require("../helpers");
- var _allUtils = require("./all-utils");
- const queryAllByPlaceholderText = (...args) => {
- (0, _helpers.checkContainerType)(args[0]); // TODO: Remove ignore after `queryAllByAttribute` will be moved to TS
- // eslint-disable-next-line @typescript-eslint/ban-ts-comment
- // @ts-expect-error
- return (0, _allUtils.queryAllByAttribute)('placeholder', ...args);
- };
- const getMultipleError = (c, text) => `Found multiple elements with the placeholder text of: ${text}`;
- const getMissingError = (c, text) => `Unable to find an element with the placeholder text of: ${text}`;
- const queryAllByPlaceholderTextWithSuggestions = (0, _queryHelpers.wrapAllByQueryWithSuggestion)(queryAllByPlaceholderText, queryAllByPlaceholderText.name, 'queryAll');
- exports.queryAllByPlaceholderText = queryAllByPlaceholderTextWithSuggestions;
- const [queryByPlaceholderText, getAllByPlaceholderText, getByPlaceholderText, findAllByPlaceholderText, findByPlaceholderText] = (0, _allUtils.buildQueries)(queryAllByPlaceholderText, getMultipleError, getMissingError);
- exports.findByPlaceholderText = findByPlaceholderText;
- exports.findAllByPlaceholderText = findAllByPlaceholderText;
- exports.getByPlaceholderText = getByPlaceholderText;
- exports.getAllByPlaceholderText = getAllByPlaceholderText;
- exports.queryByPlaceholderText = queryByPlaceholderText;
|