ant-design/tests/index.test.js

22 lines
775 B
JavaScript
Raw Normal View History

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) {
it('should have antd.version', () => {
const antd = require('../dist/antd'); // eslint-disable-line global-require
expect(antd.version).toBe(pkg.version);
});
}
});