zoomdong
5 years ago
committed by
GitHub
2 changed files with 14 additions and 1 deletions
@ -0,0 +1,13 @@ |
|||
/* eslint-disable */ |
|||
import * as React from 'react'; |
|||
import { AntTreeNodeProps } from '../Tree'; |
|||
|
|||
describe('Tree TypeScript Test', async () => { |
|||
it('AntTreeNodeProps', () => { |
|||
const tree: AntTreeNodeProps = { |
|||
children: [React.createElement('h1')], |
|||
}; |
|||
|
|||
expect(tree).toBeTruthy(); |
|||
}); |
|||
}); |
Loading…
Reference in new issue