mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-17 04:22:28 +00:00
9 lines
286 B
TypeScript
9 lines
286 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' });
|
|
});
|
|
}); |