Skip to content

Commit

Permalink
fix: fix issue with get(name, null, options) call not meeting expecta…
Browse files Browse the repository at this point in the history
…tions
  • Loading branch information
csg01123119 committed Aug 13, 2024
1 parent 09ec7a5 commit 3d0a1a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/browser/browser.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ describe('browser', () => {
});
});

describe.only('get()', () => {
describe('get()', () => {
const name = `${prefix}ali-sdk/get/${Date.now()}-oss.jpg`;
let store;
before(async () => {
Expand Down Expand Up @@ -681,7 +681,7 @@ describe('browser', () => {
}
});
assert.equal(result.res.headers['content-length'], '4');
result = await store.get(name, false, {
result = await store.get(name, true, {
headers: {
Range: 'bytes=0-3'
}
Expand Down

0 comments on commit 3d0a1a5

Please sign in to comment.