mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-17 04:22:28 +00:00
fix: 解决同名 slot 在替换时没有正常回收节点 fix: findDOMNode 增强 chore: 在 build-plugins start 时开启 inline-source-map
17 lines
499 B
TypeScript
17 lines
499 B
TypeScript
import '../../fixtures/window';
|
|
window.matchMedia('width=600px');
|
|
import { DocumentModel } from '../../../src/document/document-model';
|
|
// const { DocumentModel } = require('../../../src/document/document-model');
|
|
// const { Node } = require('../__mocks__/node');
|
|
|
|
describe.skip('basic utility', () => {
|
|
test('delegateMethod - useOriginMethodName', () => {
|
|
|
|
const node = new DocumentModel({}, {
|
|
componentName: 'Component',
|
|
});
|
|
console.log(node);
|
|
expect(1).toBe(1);
|
|
});
|
|
});
|