ant-design/tests/index.test.js

22 lines
745 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', () => {
2018-11-30 19:34:52 +08:00
const antd = testDist ? require('../dist/antd') : require('../components'); // eslint-disable-line
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', () => {
2018-11-30 19:34:52 +08:00
const antd = require('../dist/antd'); // eslint-disable-line
expect(antd.version).toBe(pkg.version);
});
}
});