Skip to content

Commit

Permalink
isolate test
Browse files Browse the repository at this point in the history
  • Loading branch information
benzekrimaha committed Jan 23, 2025
1 parent e2c8ad3 commit f3a2182
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ describe('collectBucketMetricsAndUpdateBucketCapacityInfo', () => {
], done);
});

test.only('should update bucket Capacity and Available -1 if Capacity value is not valid', done => {
test('should update bucket Capacity and Available -1 if Capacity value is not valid', done => {
testBucketCapacities.VeeamSOSApi.CapacityInfo.Capacity = 'not-a-number';

return async.series([
Expand Down Expand Up @@ -202,7 +202,7 @@ describe('collectBucketMetricsAndUpdateBucketCapacityInfo', () => {
], done);
});

test('should update bucket Available -1 if Capacity value is smaller than Used', done => {
test.only('should update bucket Available -1 if Capacity value is smaller than Used', done => {
testBucketCapacities.VeeamSOSApi.CapacityInfo.Capacity = BigInt(10);

return async.series([
Expand Down

0 comments on commit f3a2182

Please sign in to comment.