diff --git a/tests/functional/replication/queueProcessor.js b/tests/functional/replication/queueProcessor.js index 9b8c4fe7b..42e89cbc6 100644 --- a/tests/functional/replication/queueProcessor.js +++ b/tests/functional/replication/queueProcessor.js @@ -21,7 +21,6 @@ const TestConfigurator = require('../../utils/TestConfigurator'); /* eslint-disable max-len */ - function getMD5(body) { return crypto.createHash('md5').update(body).digest('hex'); } @@ -754,7 +753,7 @@ function sendCopyLocationAction(s3mock, queueProcessor, resultsCb) { /* eslint-enable max-len */ /* eslint-disable mocha/no-exclusive-tests */ -describe.only('queue processor functional tests with mocking', () => { +describe('queue processor functional tests with mocking', () => { let queueProcessorSF; let queueProcessorAzure; let replicationStatusProcessor; @@ -991,7 +990,7 @@ describe.only('queue processor functional tests with mocking', () => { }); }); - describe.only('error paths', function errorPaths() { + describe('error paths', function errorPaths() { this.timeout(20000); // give more time to leave room for retry // delays and timeout @@ -1017,7 +1016,7 @@ describe.only('queue processor functional tests with mocking', () => { }); }); - describe.only('source S3 errors', () => { + describe('source S3 errors', () => { [errors.AccessDenied, errors.ObjNotFound].forEach(error => { it(`replication should skip on ${error.code} ` + `(${error.message}) from source S3 on getObject`, done => { @@ -1059,7 +1058,7 @@ describe.only('queue processor functional tests with mocking', () => { }); }); - it.only('should fail if unable to get metadata', done => { + it('should fail if unable to get metadata', done => { s3mock.setParam('nbParts', 2); s3mock.installBackbeatErrorResponder('source.s3.getMetadata', errors.ObjNotFound,