run prettier

This commit is contained in:
karsten13
2021-06-11 22:24:21 +02:00
parent 044935a164
commit 1a244726aa
21 changed files with 41 additions and 85 deletions

View File

@@ -18,16 +18,15 @@ describe("Translator", function () {
server = app.listen(3000);
server.on('connection', (socket) => {
server.on("connection", (socket) => {
sockets.add(socket);
});
});
afterAll(function () {
for (const socket of sockets) {
socket.destroy();
sockets.delete(socket);
}