mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-16 11:54:27 +00:00
9 lines
287 B
TypeScript
9 lines
287 B
TypeScript
import '../fixtures/window';
|
|
import { parseMetadata } from '../../src/builtin-simulator/utils/parse-metadata';
|
|
|
|
describe('parseMetadata', () => {
|
|
it('parseMetadata', async () => {
|
|
console.log(parseMetadata('Div'))
|
|
console.log(parseMetadata({ componentName: 'Div' }));
|
|
});
|
|
}); |