ant-design/tests/index.test.ts

37 lines
1.1 KiB
TypeScript
Raw Permalink Normal View History

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';
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
it('exports modules correctly', () => {
let antd: any;
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) {
it('antd.js should export version', () => {
const antd = require('../dist/antd');
expect(antd).toBeTruthy();
expect(antd.version).toBe(packageVersion);
});
it('antd.min.js should export version', () => {
const antd = require('../dist/antd.min');
expect(antd).toBeTruthy();
expect(antd.version).toBe(packageVersion);
});
}
});