Skip to content

Commit 953aecf

Browse files
authored
refactor
Signed-off-by: Manuel <[email protected]>
1 parent 9fd02ef commit 953aecf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/helper.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ global.it_exclude_dbs = excluded => {
428428
}
429429
};
430430

431-
var testExclusionList = [];
431+
let testExclusionList = [];
432432
try {
433433
// Fetch test exclusion list
434434
testExclusionList = require('./testExclusionList.json');
@@ -439,7 +439,7 @@ try {
439439
}
440440
}
441441

442-
// Bypass test if Test UUID found in testExclusionList
442+
// Disable test if its UUID is found in testExclusionList
443443
global.it_id = id => {
444444
if (testExclusionList.includes(id)) {
445445
return xit;

0 commit comments

Comments
 (0)