We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37520b7 commit 7e8ccf4Copy full SHA for 7e8ccf4
src/setup-tests.js
@@ -3,6 +3,12 @@
3
import jquery from "jquery";
4
global.$ = global.jQuery = jquery;
5
6
+jquery.expr.pseudos.visible = function () {
7
+ // Fix jQuery ":visible" selector always returns false in JSDOM.
8
+ // https://github.com/jsdom/jsdom/issues/1048#issuecomment-401599392
9
+ return true;
10
+};
11
+
12
// Do not output error messages
13
import logging from "./core/logging";
14
logging.setLevel(50);
0 commit comments