Skip to content

Commit

Permalink
address review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate Piche committed Jan 19, 2016
1 parent f73d3e7 commit 7845c6b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 9 deletions.
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,5 @@ node_modules
# Jetbrains IDEs
.idea

# vim swp files
*.swp

/build
_book
2 changes: 1 addition & 1 deletion src/__tests__/ReactWrapper-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import {
mount,
render,
ReactWrapper,
describeWithDOM,
} from '../';
import { describeWithDOM } from '../describeWithDOM';
import { describeIf } from './_helpers';
import { REACT013 } from '../version';

Expand Down
4 changes: 1 addition & 3 deletions src/__tests__/Utils-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,9 @@ import {
mapNativeEventNames,
} from '../Utils';
import {
describeWithDOM,
mount,
} from '../';
import {
describeWithDOM,
} from '../describeWithDOM';

describe('Utils', () => {

Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/describeWithDOM/describeWithDOMOnly-spec.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { expect } from 'chai';
import { describeWithDOM } from '../../describeWithDOM';
import { describeWithDOM } from '../..';

describe('describeWithDOM', () => {
describe('.only()', () => {
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/describeWithDOM/describeWithDOMSkip-spec.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { expect } from 'chai';
import { describeWithDOM } from '../../describeWithDOM';
import { describeWithDOM } from '../..';

describe('describeWithDOM', () => {
describe('.skip()', () => {
Expand Down
2 changes: 2 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import cheerio from 'cheerio';
import Sinon from 'sinon';
import ReactWrapper from './ReactWrapper';
import ShallowWrapper from './ShallowWrapper';
import { describeWithDOM } from './describeWithDOM';
import { onPrototype } from './Utils';
import { renderToStaticMarkup } from './react-compat';

Expand Down Expand Up @@ -86,3 +87,4 @@ export function render(node) {

export { ShallowWrapper as ShallowWrapper };
export { ReactWrapper as ReactWrapper };
export { describeWithDOM as describeWithDOM };

0 comments on commit 7845c6b

Please sign in to comment.