Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
benzekrimaha committed Dec 5, 2024
1 parent 2245737 commit c233b5c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/functional/metadata/MixedVersionFormat.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,10 @@ describe('Mongo backend mixed bucket format versions', () => {
});
});

after(done => mongoClient.close(true).then(() => done()).catch(() => done()));

after(function(done) {

Check warning on line 100 in tests/functional/metadata/MixedVersionFormat.js

View workflow job for this annotation

GitHub Actions / linting-coverage

Unexpected function expression

Check failure on line 100 in tests/functional/metadata/MixedVersionFormat.js

View workflow job for this annotation

GitHub Actions / linting-coverage

Missing space before function parentheses
mongoClient.close(true, done);
});

['v0', 'v1'].forEach(vFormat => {
it(`Should perform operations on non versioned bucket in ${vFormat} format`, done => {
const paramsObj1 = {
Expand Down

0 comments on commit c233b5c

Please sign in to comment.