We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6238c84 commit 6b3b64dCopy full SHA for 6b3b64d
test/unit/cmap/connection.test.js
@@ -9,9 +9,9 @@ const expect = require('chai').expect;
9
describe('Connection', function() {
10
let server;
11
after(() => mock.cleanup());
12
- before(() => {
13
- mock.createServer().then(s => (server = s));
14
- });
+ before(() =>
+ mock.createServer().then(s => (server = s))
+ );
15
16
it('should support fire-and-forget messages', function(done) {
17
server.setMessageHandler(request => {
0 commit comments