This commit is contained in:
afc163 2016-06-22 18:10:31 +08:00
parent 419c56ee9e
commit 7e25e414f8
3 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
import test from 'ava';
import React from 'react';
import { shallow } from 'enzyme';
import Icon from '../components/icon/index';
import Icon from '../components/icon/index.tsx';
let iconNode;

View File

@ -1,7 +1,7 @@
import test from 'ava';
import React from 'react';
import { shallow } from 'enzyme';
import { Col, Row } from '../components/layout/index';
import { Col, Row } from '../components/layout/index.tsx';
test('should render Col', (t) => {
const col = shallow(<Col span={2} />);

View File

@ -1,6 +1,6 @@
import test from 'ava';
import React from 'react';
import Popover from '../components/popover'
import Popover from '../components/popover/index.tsx'
import { mount } from 'enzyme';
test('should show overlay when trigger is clicked', (t) => {