Skip to content

Commit

Permalink
Attempt to fix breaking tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cressie176 committed May 27, 2024
1 parent 46b017c commit 84556db
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"lint:fix": "eslint --fix .",
"lint-staged": "lint-staged",
"coverage": "nyc --report html --reporter lcov --reporter text-summary zUnit",
"docker": "docker run -d --name rascal-rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3-management",
"docker": "docker run -d --name rascal-rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3-management-alpine",
"prepare": "husky install"
},
"lint-staged": {
Expand Down
2 changes: 1 addition & 1 deletion test/subscriptions.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -1762,7 +1762,7 @@ describe('Subscriptions', () => {
});
},
);
});
}, { timeout: 10000 });

it('should forward messages to publication when requested', (test, done) => {
createBroker(
Expand Down
2 changes: 1 addition & 1 deletion test/subscriptionsAsPromised.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -1268,7 +1268,7 @@ describe('Subscriptions As Promised', () => {
});
});
});
});
}, { timeout: 10000 });

it('should forward messages to publication when requested', (test, done) => {
createBroker({
Expand Down

0 comments on commit 84556db

Please sign in to comment.