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 9fd02ef commit 953aecfCopy full SHA for 953aecf
spec/helper.js
@@ -428,7 +428,7 @@ global.it_exclude_dbs = excluded => {
428
}
429
};
430
431
-var testExclusionList = [];
+let testExclusionList = [];
432
try {
433
// Fetch test exclusion list
434
testExclusionList = require('./testExclusionList.json');
@@ -439,7 +439,7 @@ try {
439
440
441
442
-// Bypass test if Test UUID found in testExclusionList
+// Disable test if its UUID is found in testExclusionList
443
global.it_id = id => {
444
if (testExclusionList.includes(id)) {
445
return xit;
0 commit comments