We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 81a6619 + 60454e1 commit 70e8dfbCopy full SHA for 70e8dfb
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