2024-04-24 11:06:12 +08:00
|
|
|
import { version as packageVersion } 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';
|
2023-11-27 21:37:32 +08:00
|
|
|
const testDistMin = process.env.LIB_DIR === 'dist-min';
|
2017-10-23 16:24:17 +08:00
|
|
|
|
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
|
2023-06-07 21:59:21 +08:00
|
|
|
it('exports modules correctly', () => {
|
2024-06-22 21:59:12 +08:00
|
|
|
let antd: any;
|
2023-11-27 21:37:32 +08:00
|
|
|
if (testDist) {
|
|
|
|
antd = require('../dist/antd');
|
|
|
|
} else if (testDistMin) {
|
|
|
|
antd = require('../dist/antd.min');
|
|
|
|
} else {
|
|
|
|
antd = require('../components');
|
|
|
|
}
|
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) {
|
2023-06-07 21:59:21 +08:00
|
|
|
it('antd.js should export version', () => {
|
|
|
|
const antd = require('../dist/antd');
|
2020-05-13 19:13:30 +08:00
|
|
|
expect(antd).toBeTruthy();
|
2024-04-24 11:06:12 +08:00
|
|
|
expect(antd.version).toBe(packageVersion);
|
2020-05-13 19:13:30 +08:00
|
|
|
});
|
|
|
|
|
2023-06-07 21:59:21 +08:00
|
|
|
it('antd.min.js should export version', () => {
|
|
|
|
const antd = require('../dist/antd.min');
|
2020-05-13 19:13:30 +08:00
|
|
|
expect(antd).toBeTruthy();
|
2024-04-24 11:06:12 +08:00
|
|
|
expect(antd.version).toBe(packageVersion);
|
2017-02-13 14:27:12 +08:00
|
|
|
});
|
2017-01-08 17:04:09 +08:00
|
|
|
}
|
2016-06-22 22:31:00 +08:00
|
|
|
});
|