Skip to content

Commit 3acb76d

Browse files
committed
remove .only keyword in test
1 parent b8c3605 commit 3acb76d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/s3-store/test/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,14 +278,14 @@ describe('S3DataStore', () => {
278278
}
279279
})
280280

281-
it.only('should use default maxMultipartParts when not specified', function () {
281+
it('should use default maxMultipartParts when not specified', function () {
282282
const store = new S3Store({
283283
s3ClientConfig,
284284
})
285285
assert.equal(store.maxMultipartParts, 10000)
286286
})
287287

288-
it.only('should use custom maxMultipartParts when specified', function () {
288+
it('should use custom maxMultipartParts when specified', function () {
289289
const customMaxParts = 5000
290290
const store = new S3Store({
291291
s3ClientConfig,

0 commit comments

Comments
 (0)