Skip to content

Commit

Permalink
Fix typos, remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
thoragio committed Aug 19, 2017
1 parent 2b27fce commit e00d9c4
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
@@ -1 +1 @@
8.3
8
2 changes: 0 additions & 2 deletions src/configure-feature/test/index.js
Expand Up @@ -23,7 +23,6 @@ describe('configureFeature()', ({ test }) => {
const Feature = createTestComponent('feature');
const Fallback = createTestComponent('fall-back');

// prettier-ignore
const ConfiguredFeature =
configureFeature(NotFound)('game')(Feature, Fallback);

Expand Down Expand Up @@ -66,7 +65,6 @@ describe('configureFeature()', ({ test }) => {
const Feature = createTestComponent('feature');
const Fallback = createTestComponent('fall-back');

// prettier-ignore
const ConfiguredFeature =
configureFeature(NotFound)('game')(Feature, Fallback);

Expand Down
2 changes: 1 addition & 1 deletion src/utils/get-enabled/test/index.js
Expand Up @@ -37,7 +37,7 @@ describe('getEnabled()', nest => {
deepEqual(
getEnabled(features),
['posts'],
'should return the the only active feature'
'should return the only active feature'
);
end();
}
Expand Down
2 changes: 1 addition & 1 deletion src/with-features/test/index.js
Expand Up @@ -7,7 +7,7 @@ import createWrappedComponent from './create-wrapped-component';

const render = ReactDOMServer.renderToStaticMarkup;

describe('withFeatures', ({ test }) => {
describe('withFeatures()', ({ test }) => {
test('...no config', ({ end, deepEqual }) => {
const WrappedComponent = createWrappedComponent();
const Component = withFeatures()(WrappedComponent);
Expand Down

0 comments on commit e00d9c4

Please sign in to comment.