mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
15 lines
342 B
JavaScript
15 lines
342 B
JavaScript
|
import React from 'react';
|
||
|
import Button from '..';
|
||
|
import imageTest from '../../../tests/shared/imageTest';
|
||
|
|
||
|
describe('Button image', () => {
|
||
|
imageTest(
|
||
|
<>
|
||
|
<Button type="primary">Primary</Button>
|
||
|
<Button>Default</Button>
|
||
|
<Button type="dashed">Dashed</Button>
|
||
|
<Button type="link">Link</Button>
|
||
|
</>,
|
||
|
);
|
||
|
});
|