diff --git a/apps/ai-game-creator-shell/tests/uiEditorPage.test.ts b/apps/ai-game-creator-shell/tests/uiEditorPage.test.ts index c4c2c1f53..acda62a48 100644 --- a/apps/ai-game-creator-shell/tests/uiEditorPage.test.ts +++ b/apps/ai-game-creator-shell/tests/uiEditorPage.test.ts @@ -439,7 +439,11 @@ describe('UiEditorPage', () => { const cancel = vi.fn(); const play = vi.fn(); const getAnimationsSpy = vi.fn(() => [ - { cancel, play } as unknown as Animation, + { + animationName: 'ui-editor-status-attention-arrive', + cancel, + play, + } as unknown as Animation, ]); Object.defineProperty(Element.prototype, 'getAnimations', { configurable: true,