We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 036bb7b commit 60454e1Copy full SHA for 60454e1
packages/plugin-editor/src/index.test.ts
@@ -11,9 +11,10 @@ import { ComponentRegistry } from '@object-ui/core';
11
12
describe('Plugin Editor', () => {
13
// Import all renderers to register them
14
+ // Note: Monaco Editor is a heavy library that takes time to load
15
beforeAll(async () => {
16
await import('./index');
- });
17
+ }, 30000); // 30 second timeout for Monaco Editor initialization
18
19
describe('code-editor component', () => {
20
it('should be registered in ComponentRegistry', () => {
0 commit comments