Author SHA1 Message Date
Lotus CIandClaude Opus 5 667230f6e3 chore(lotus): 0.25.0-lotus.7
CI / Publish to Gitea npm registry (push) Skipped
CI / Build embedded bundle (push) Failing after 50s
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01PPmy3tPq869XDW4njjVaKA
2026-09-19 14:35:03 -04:00
Lotus CIandClaude Opus 5 746917a4c6 test(lotus): satisfy oxlint require-await in the LocalTransport refusal test
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01PPmy3tPq869XDW4njjVaKA
2026-09-19 14:35:03 -04:00
2 changed files with 3 additions and 5 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@lotusguild/element-call-embedded",
"version": "0.25.0-lotus.6",
"version": "0.25.0-lotus.7",
"files": [
"README.md",
"LICENSE-AGPL-3.0",
@@ -132,10 +132,8 @@ describe("LocalTransport", () => {
livekit: { livekit_service_url: "https://lk.example.org" },
});
const refused = new SFUTokenRefusedError("This voice channel is full.");
vi.spyOn(openIDSFU, "getSFUConfigWithOpenID").mockImplementation(
async () => {
throw refused;
},
vi.spyOn(openIDSFU, "getSFUConfigWithOpenID").mockImplementation(() =>
Promise.reject(refused),
);
const errors: Error[] = [];
const { active$ } = createLocalTransport$({