We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf74252 commit 5166c9aCopy full SHA for 5166c9a
src/routes/projects/create.spec.js
@@ -14,7 +14,7 @@ const should = chai.should();
14
sinon.stub(RabbitMQService.prototype, 'init', () => {});
15
sinon.stub(RabbitMQService.prototype, 'publish', () => {});
16
17
-xdescribe('Project create', () => {
+describe('Project create', () => {
18
before((done) => {
19
testUtil.clearDb(done);
20
});
src/services/index.js
@@ -1,7 +1,7 @@
1
2
3
-// import config from 'config';
4
-// import RabbitMQService from './rabbitmq';
+import config from 'config';
+import RabbitMQService from './rabbitmq';
5
6
/**
7
* Responsible for establishing connections to all external services
0 commit comments