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 853cc93 commit 5b053d2Copy full SHA for 5b053d2
spec/.eslintrc.json
@@ -15,6 +15,7 @@
15
"equal": true,
16
"expectAsync": true,
17
"notEqual": true,
18
+ "it_id": true,
19
"it_only_db": true,
20
"it_only_mongodb_version": true,
21
"it_only_postgres_version": true,
spec/helper.js
@@ -440,11 +440,14 @@ try {
440
}
441
442
// Disable test if its UUID is found in testExclusionList
443
-global.it_id = id => {
+global.it_id = (id, func) => {
444
if (testExclusionList.includes(id)) {
445
return xit;
446
} else {
447
- return it;
+ if(func === undefined)
448
+ return it;
449
+ else
450
+ return func;
451
452
};
453
0 commit comments