mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-19 11:58:41 +08:00
d20572bdab
* Run snapshot testing against all demos * Split demo tests * ignore coverage folder * Upgrade antd-demo-jest * enable cache * intergate with coveralls.io * Add node test * Set worker to 2 https://github.com/facebook/jest/issues/1742 * config coverage * Set default supportServerRender to true
13 lines
285 B
JavaScript
13 lines
285 B
JavaScript
import demoTest from '../shared/demoTest';
|
|
|
|
// https://github.com/WickyNilliams/enquire.js/issues/82
|
|
window.matchMedia = window.matchMedia || function() {
|
|
return {
|
|
matches : false,
|
|
addListener : function() {},
|
|
removeListener: function() {}
|
|
};
|
|
};
|
|
|
|
demoTest('carousel');
|