690329:2019 Fixing refactor Correspondence GPT-5.3-Codex #01
CI / CD Pipeline / build (push) Successful in 17m23s
CI / CD Pipeline / deploy (push) Failing after 2m29s

This commit is contained in:
2026-03-29 20:19:22 +07:00
parent 43e380e5c1
commit 2c0fcc0ac9
5 changed files with 300 additions and 57 deletions
+22
View File
@@ -36,3 +36,25 @@ vi.mock('@/lib/api/client', () => ({
delete: vi.fn(),
},
}));
class ResizeObserverMock {
observe() {}
unobserve() {}
disconnect() {}
}
vi.stubGlobal('ResizeObserver', ResizeObserverMock);
if (!Element.prototype.hasPointerCapture) {
Element.prototype.hasPointerCapture = () => false;
}
if (!Element.prototype.setPointerCapture) {
Element.prototype.setPointerCapture = () => {};
}
if (!Element.prototype.releasePointerCapture) {
Element.prototype.releasePointerCapture = () => {};
}