We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8c3605 commit 3acb76dCopy full SHA for 3acb76d
packages/s3-store/test/index.ts
@@ -278,14 +278,14 @@ describe('S3DataStore', () => {
278
}
279
})
280
281
- it.only('should use default maxMultipartParts when not specified', function () {
+ it('should use default maxMultipartParts when not specified', function () {
282
const store = new S3Store({
283
s3ClientConfig,
284
285
assert.equal(store.maxMultipartParts, 10000)
286
287
288
- it.only('should use custom maxMultipartParts when specified', function () {
+ it('should use custom maxMultipartParts when specified', function () {
289
const customMaxParts = 5000
290
291
0 commit comments