Skip to content

Commit 458a222

Browse files
committed
More informative it_excludes_db
1 parent 6cc581d commit 458a222

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

spec/helper.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,9 @@ global.jfail = function(err) {
378378

379379
global.it_exclude_dbs = excluded => {
380380
if (excluded.includes(process.env.PARSE_SERVER_TEST_DB)) {
381-
return xit;
381+
return function(name, callback) {
382+
return xit(`(in progress on ${excluded.join(',')}) ${name}`, callback);
383+
}
382384
} else {
383385
return it;
384386
}

0 commit comments

Comments
 (0)