2016-06-06 15:45:46 +08:00
|
|
|
// Test dist files
|
|
|
|
import React from 'react';
|
|
|
|
import fs from 'fs';
|
|
|
|
import path from 'path';
|
|
|
|
|
2016-06-22 22:31:00 +08:00
|
|
|
describe('antd dist files', function() {
|
|
|
|
const distFilesExisted = fs.existsSync(path.join(process.cwd(), 'dist', 'antd.js'));
|
2016-06-06 15:45:46 +08:00
|
|
|
if (!distFilesExisted) {
|
2016-07-09 18:10:11 +08:00
|
|
|
it('empty test case placeholder', () => {});
|
2016-06-06 15:45:46 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const antd = require('../dist/antd');
|
|
|
|
|
|
|
|
// https://github.com/ant-design/ant-design/issues/1638
|
|
|
|
// https://github.com/ant-design/ant-design/issues/1968
|
2016-06-22 22:31:00 +08:00
|
|
|
it('should has modules in antd', () => {
|
|
|
|
expect('Affix' in antd).toBeTruthy();
|
|
|
|
expect('Alert' in antd).toBeTruthy();
|
2016-11-16 12:53:21 +08:00
|
|
|
expect('Anchor' in antd).toBeTruthy();
|
2016-09-27 13:40:34 +08:00
|
|
|
expect('AutoComplete' in antd).toBeTruthy();
|
|
|
|
expect('BackTop' in antd).toBeTruthy();
|
2016-06-22 22:31:00 +08:00
|
|
|
expect('Badge' in antd).toBeTruthy();
|
|
|
|
expect('Breadcrumb' in antd).toBeTruthy();
|
|
|
|
expect('Button' in antd).toBeTruthy();
|
|
|
|
expect('Calendar' in antd).toBeTruthy();
|
|
|
|
expect('Card' in antd).toBeTruthy();
|
|
|
|
expect('Carousel' in antd).toBeTruthy();
|
|
|
|
expect('Cascader' in antd).toBeTruthy();
|
|
|
|
expect('Checkbox' in antd).toBeTruthy();
|
|
|
|
expect('Col' in antd).toBeTruthy();
|
|
|
|
expect('Collapse' in antd).toBeTruthy();
|
|
|
|
expect('DatePicker' in antd).toBeTruthy();
|
|
|
|
expect('Dropdown' in antd).toBeTruthy();
|
|
|
|
expect('Form' in antd).toBeTruthy();
|
|
|
|
expect('Icon' in antd).toBeTruthy();
|
|
|
|
expect('Input' in antd).toBeTruthy();
|
|
|
|
expect('InputNumber' in antd).toBeTruthy();
|
|
|
|
expect('LocaleProvider' in antd).toBeTruthy();
|
|
|
|
expect('Menu' in antd).toBeTruthy();
|
|
|
|
expect('message' in antd).toBeTruthy();
|
|
|
|
expect('Modal' in antd).toBeTruthy();
|
2016-09-27 13:40:34 +08:00
|
|
|
expect('Mention' in antd).toBeTruthy();
|
2016-06-22 22:31:00 +08:00
|
|
|
expect('notification' in antd).toBeTruthy();
|
|
|
|
expect('Pagination' in antd).toBeTruthy();
|
|
|
|
expect('Popconfirm' in antd).toBeTruthy();
|
|
|
|
expect('Popover' in antd).toBeTruthy();
|
|
|
|
expect('Progress' in antd).toBeTruthy();
|
|
|
|
expect('Radio' in antd).toBeTruthy();
|
|
|
|
expect('Rate' in antd).toBeTruthy();
|
|
|
|
expect('Row' in antd).toBeTruthy();
|
|
|
|
expect('Select' in antd).toBeTruthy();
|
|
|
|
expect('Slider' in antd).toBeTruthy();
|
|
|
|
expect('Spin' in antd).toBeTruthy();
|
|
|
|
expect('Steps' in antd).toBeTruthy();
|
|
|
|
expect('Switch' in antd).toBeTruthy();
|
|
|
|
expect('Table' in antd).toBeTruthy();
|
|
|
|
expect('Tabs' in antd).toBeTruthy();
|
|
|
|
expect('Tag' in antd).toBeTruthy();
|
|
|
|
expect('TimePicker' in antd).toBeTruthy();
|
|
|
|
expect('Timeline' in antd).toBeTruthy();
|
|
|
|
expect('Tooltip' in antd).toBeTruthy();
|
|
|
|
expect('Transfer' in antd).toBeTruthy();
|
|
|
|
expect('Tree' in antd).toBeTruthy();
|
|
|
|
expect('TreeSelect' in antd).toBeTruthy();
|
|
|
|
expect('Upload' in antd).toBeTruthy();
|
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
|
2016-06-22 22:31:00 +08:00
|
|
|
it('should be compatible in IE8', () => {
|
|
|
|
const antdJsContent = fs.readFileSync(path.join(process.cwd(), 'dist', 'antd.js'));
|
|
|
|
expect(
|
2016-06-06 15:45:46 +08:00
|
|
|
antdJsContent.toString()
|
2016-06-22 22:31:00 +08:00
|
|
|
.indexOf('function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }')
|
|
|
|
).toBe(-1);
|
2016-06-06 15:45:46 +08:00
|
|
|
})
|
2016-06-22 22:31:00 +08:00
|
|
|
});
|