Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
killagu committed Dec 5, 2024
1 parent eda0e4c commit c252c13
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/OSSObject.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@ describe('test/OSSObject.test.ts', () => {
}

it('should list with query', async () => {
const result = await ossObject.list();
const result = await ossObject.list({
prefix: listPrefix,
'max-keys': 5,
});
assert(result.objects.length > 0);
// console.log(result.objects);
result.objects.map(checkObjectProperties);
Expand Down

0 comments on commit c252c13

Please sign in to comment.