Skip to content

Commit

Permalink
chore: fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
b-ma committed Sep 5, 2024
1 parent d2264f1 commit 3174c73
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ jobs:
run: npm install

- name: "Run Test"
run: npm run test:all
run: npm run test
2 changes: 1 addition & 1 deletion src/client/ClientSocket.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ class ClientSocket {
});

// @todo - propagate raw 'message' events in the callback above, no
// need to execute to function instad of one per message...
// need to execute to function instad of one per message...
['close', 'error', 'upgrade', 'message'].forEach(eventName => {
this.#socket.addEventListener(eventName, e => {
this.#dispatchEvent(eventName, e);
Expand Down

0 comments on commit 3174c73

Please sign in to comment.