Skip to content

Commit

Permalink
Update code formatting
Browse files Browse the repository at this point in the history
Prettier changed it's opinion on formatting in a non-major semver
version. Maybe it's time to introduce a lock file... :-)
  • Loading branch information
gustav-olsen-groupone committed Sep 14, 2020
1 parent 6f66ffb commit 91f7f6a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/emitCloseOnRequestAbort.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ describe("with a aborted request", function() {
res,
run(function(err, res) {
expect(err, "to be falsy");
res.on("close", run(function() {}));
res.on(
"close",
run(function() {})
);
})
);
res.end("yaddayadda");
Expand Down

0 comments on commit 91f7f6a

Please sign in to comment.