mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 11:20:11 +00:00
10 lines
293 B
TypeScript
10 lines
293 B
TypeScript
import '../../fixtures/window';
|
|
import { parseMetadata } from '../../../src/builtin-simulator/utils/parse-metadata';
|
|
|
|
describe('parseMetadata', () => {
|
|
it('parseMetadata', async () => {
|
|
const md1 = parseMetadata('Div');
|
|
const md2 = parseMetadata({ componentName: 'Div' });
|
|
});
|
|
});
|