Skip to content

Commit

Permalink
add more explicit error msg
Browse files Browse the repository at this point in the history
  • Loading branch information
Florent-Bouisset committed Jun 12, 2024
1 parent ff27e32 commit 64250eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ jobs:
- run: npm run build
# Firefox seems to have issue with integration tests on GitHub actions only
# TODO to check
- run: load-module module-native-protocol-unix auth-anonymous=1
- run: npm run test:integration

memory_linux:
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/scenarios/discontinuities.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,11 @@ describe("discontinuities handling", () => {
}
});
player.addEventListener("warning", (err) => {
console.log("warn", err);
console.log("warn", err.name, err.message);
});

player.addEventListener("error", (err) => {
console.log("error", err);
console.log("error", err.name, err.message);
});

player.setPlaybackRate(2);
Expand Down

0 comments on commit 64250eb

Please sign in to comment.