Skip to content

Commit 9559ee7

Browse files
committed
Remove index.js
已经有 src/index.js 了,这个是多余的。
1 parent 051c09d commit 9559ee7

File tree

4 files changed

+3
-9
lines changed

4 files changed

+3
-9
lines changed

index.js

Lines changed: 0 additions & 6 deletions
This file was deleted.

tests/Select.checkable.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* eslint-disable no-undef */
22
import React from 'react';
33
import { mount } from 'enzyme';
4-
import TreeSelect, { SHOW_PARENT } from '..';
4+
import TreeSelect, { SHOW_PARENT } from '../src';
55

66
describe('TreeSelect.checkable', () => {
77
it('allow clear when controlled', () => {

tests/Select.multiple.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import React from 'react';
33
import { mount, render } from 'enzyme';
44
import KeyCode from 'rc-util/lib/KeyCode';
5-
import TreeSelect from '..';
5+
import TreeSelect from '../src';
66

77
describe('TreeSelect.multiple', () => {
88
const treeData = [

tests/Select.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import React from 'react';
33
import { render, mount } from 'enzyme';
44
import KeyCode from 'rc-util/lib/KeyCode';
5-
import TreeSelect from '..';
5+
import TreeSelect from '../src';
66

77
const { TreeNode } = TreeSelect;
88

0 commit comments

Comments
 (0)