mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 19:52:51 +00:00
14 lines
374 B
TypeScript
14 lines
374 B
TypeScript
import parse from '../src';
|
|
import { IMaterializeOptions } from '../src/types';
|
|
|
|
const dynamicComponent = '@alifd/biz-anchor@1.1.7';
|
|
|
|
test('materialize dynamic component by online', async () => {
|
|
const options: IMaterializeOptions = {
|
|
entry: dynamicComponent,
|
|
accesser: 'online',
|
|
};
|
|
|
|
const actual = await parse(options);
|
|
expect(actual).toMatchSnapshot();
|
|
}); |