Compare commits

...

7 Commits

4 changed files with 4 additions and 4 deletions

View File

@ -101,7 +101,7 @@ function mpuSetup(key, location, cb) {
});
}
describeSkipIfNotMultipleOrCeph('Complete MPU API for Azure data backend',
describe.skip('Complete MPU API for Azure data backend',
function testSuite() {
this.timeout(150000);
withV4(sigCfg => {

View File

@ -11,7 +11,7 @@ const bucket = `completempugcp${genUniqID()}`;
const smallBody = Buffer.from('I am a body', 'utf8');
const bigBody = Buffer.alloc(10485760);
const s3MD5 = 'bfb875032e51cbe2a60c5b6b99a2153f-2';
const expectedContentLength = '10485771';
const expectedContentLength = 10485771;
const gcpTimeout = 5000;
let s3;

View File

@ -73,7 +73,7 @@ function awsGetCheck(objectKey, s3MD5, awsMD5, location, cb) {
});
}
describe.only('MultipleBackend put object', function testSuite() {
describe('MultipleBackend put object', function testSuite() {
this.timeout(250000);
withV4(sigCfg => {
beforeEach(() => {

View File

@ -129,7 +129,7 @@ describe('PUT public object with 100-continue header', () => {
it('should wait for continue event before sending body', done =>
continueRequest.sendsBodyOnContinue(done));
it.only('should continue if a public user', done =>
it('should continue if a public user', done =>
continueRequest.setRequestPath(invalidSignedURL)
.sendsBodyOnContinue(done));
});