2017-02-13 14:27:12 +08:00
|
|
|
import pkg from '../package.json';
|
2016-06-06 15:45:46 +08:00
|
|
|
|
2017-10-23 16:24:17 +08:00
|
|
|
const testDist = process.env.LIB_DIR === 'dist';
|
|
|
|
|
2016-12-08 11:08:13 +08:00
|
|
|
describe('antd dist files', () => {
|
2016-06-06 15:45:46 +08:00
|
|
|
// https://github.com/ant-design/ant-design/issues/1638
|
|
|
|
// https://github.com/ant-design/ant-design/issues/1968
|
2016-12-20 23:59:29 +08:00
|
|
|
it('exports modules correctly', () => {
|
2017-10-23 16:24:17 +08:00
|
|
|
const antd = testDist ? require('../dist/antd') : require('../components'); // eslint-disable-line global-require
|
2016-12-20 23:59:29 +08:00
|
|
|
expect(Object.keys(antd)).toMatchSnapshot();
|
2016-06-06 15:45:46 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
// https://github.com/ant-design/ant-design/issues/1970
|
|
|
|
// https://github.com/ant-design/ant-design/issues/1804
|
2017-10-23 16:24:17 +08:00
|
|
|
if (testDist) {
|
2017-02-13 14:27:12 +08:00
|
|
|
it('should have antd.version', () => {
|
|
|
|
const antd = require('../dist/antd'); // eslint-disable-line global-require
|
|
|
|
expect(antd.version).toBe(pkg.version);
|
|
|
|
});
|
2017-01-08 17:04:09 +08:00
|
|
|
}
|
2016-06-22 22:31:00 +08:00
|
|
|
});
|