You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
569 B
20 lines
569 B
4 years ago
|
"use strict";
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.toBeEmpty = toBeEmpty;
|
||
|
|
||
|
var _jestMatcherUtils = require("jest-matcher-utils");
|
||
|
|
||
|
var _utils = require("./utils");
|
||
|
|
||
|
function toBeEmpty(element) {
|
||
|
(0, _utils.checkHtmlElement)(element, toBeEmpty, this);
|
||
|
return {
|
||
|
pass: element.innerHTML === '',
|
||
|
message: () => {
|
||
|
return [(0, _jestMatcherUtils.matcherHint)(`${this.isNot ? '.not' : ''}.toBeEmpty`, 'element', ''), '', 'Received:', ` ${(0, _jestMatcherUtils.printReceived)(element.innerHTML)}`].join('\n');
|
||
|
}
|
||
|
};
|
||
|
}
|