Skip to content

Commit

Permalink
Adapt functional tests to the new supportedRules
Browse files Browse the repository at this point in the history
Issue : BB-514
  • Loading branch information
benzekrimaha committed Oct 29, 2024
1 parent 5d62693 commit b4c4d9c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/functional/lifecycle/LifecycleTaskV2-versioned.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,13 @@ describe('LifecycleTaskV2 with bucket versioned', () => {
circuitBreakers: {
tripped: () => false,
},
supportedRules: [
'expiration',
'noncurrentVersionExpiration',
'abortIncompleteMultipartUpload',
'transitions',
'noncurrentVersionTransition'
],
}),
};
lifecycleTask = new LifecycleTaskV2(lp);
Expand Down
7 changes: 7 additions & 0 deletions tests/functional/lifecycle/LifecycleTaskV2.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,13 @@ describe('LifecycleTaskV2 with bucket non-versioned', () => {
circuitBreakers: {
tripped: () => false,
},
supportedRules: [
'expiration',
'noncurrentVersionExpiration',
'abortIncompleteMultipartUpload',
'transitions',
'noncurrentVersionTransition'
],
}),
};
lifecycleTask = new LifecycleTaskV2(lp);
Expand Down

0 comments on commit b4c4d9c

Please sign in to comment.