Fix: correct quote style in canvas-host test

This commit is contained in:
Luka Zhang 2026-01-26 18:30:05 -08:00
parent fbe4faaeb5
commit 80a9d67707

View File

@ -255,8 +255,8 @@ describe("canvas host", () => {
expect(html).not.toContain("statusEl.innerHTML");
// Verify the status element construction is present
expect(html).toContain('bridgeSpan.className');
expect(html).toContain('bridgeSpan.textContent');
expect(html).toContain("bridgeSpan.className");
expect(html).toContain("bridgeSpan.textContent");
} finally {
await server.close();
await fs.rm(dir, { recursive: true, force: true });