mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
21bd9444f4
* test: use azure deploy ui test report site * parallel stage * continueOnError * fix continueOnError position * use github comment * failed * fix artifact name * add download path * ls files * fix path download * Install modules * update snapshot image * test: docker compose run test image * use docker * use docker update snapshots * remove unused dep * improve github comment and add doc * fix azure script * test faild condition * improve pass comment
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>
|
|
</>,
|
|
);
|
|
});
|