mirror of
https://github.com/zhigang1992/form-render.git
synced 2026-01-12 22:47:30 +08:00
9 lines
182 B
JavaScript
Executable File
9 lines
182 B
JavaScript
Executable File
import expect from 'expect.js';
|
|
import Component from '../index';
|
|
|
|
describe('index.js', () => {
|
|
it('should export.', () => {
|
|
expect(Component).to.not.eql(undefined);
|
|
});
|
|
});
|