mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-13 23:59:12 +08:00
23 lines
585 B
TypeScript
23 lines
585 B
TypeScript
|
import React from 'react';
|
||
|
|
||
|
import type { TableRef } from '..';
|
||
|
import Table from '..';
|
||
|
import { render } from '../../../tests/utils';
|
||
|
|
||
|
describe('Table.IE', () => {
|
||
|
beforeAll(() => {
|
||
|
window.Proxy = undefined as any;
|
||
|
global.Proxy = undefined as any;
|
||
|
});
|
||
|
|
||
|
it('support reference', () => {
|
||
|
const tblRef = React.createRef<TableRef>();
|
||
|
const { container } = render(<Table ref={tblRef} />);
|
||
|
|
||
|
const wrapDom = container.querySelector('.ant-table-wrapper')!;
|
||
|
|
||
|
expect(tblRef.current).toBe(wrapDom);
|
||
|
expect(tblRef.current?.nativeElement).toBe(wrapDom);
|
||
|
});
|
||
|
});
|