12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.toBePartiallyChecked = toBePartiallyChecked;
- var _utils = require("./utils");
- function toBePartiallyChecked(element) {
- (0, _utils.checkHtmlElement)(element, toBePartiallyChecked, this);
- const isValidInput = () => {
- return element.tagName.toLowerCase() === 'input' && element.type === 'checkbox';
- };
- if (!isValidInput() && !(() => {
- return element.getAttribute('role') === 'checkbox';
- })()) {
- return {
- pass: false,
- message: () => 'only inputs with type="checkbox" or elements with role="checkbox" and a valid aria-checked attribute can be used with .toBePartiallyChecked(). Use .toHaveValue() instead'
- };
- }
- const isPartiallyChecked = () => {
- const isAriaMixed = element.getAttribute('aria-checked') === 'mixed';
- if (isValidInput()) {
- return element.indeterminate || isAriaMixed;
- }
- return isAriaMixed;
- };
- return {
- pass: isPartiallyChecked(),
- message: () => {
- const is = isPartiallyChecked() ? 'is' : 'is not';
- return [this.utils.matcherHint(`${this.isNot ? '.not' : ''}.toBePartiallyChecked`, 'element', ''), '', `Received element ${is} partially checked:`, ` ${this.utils.printReceived(element.cloneNode(false))}`].join('\n');
- }
- };
- }
|