Skip to content

Commit

Permalink
Sort the folders in test-runner.js
Browse files Browse the repository at this point in the history
  • Loading branch information
mstriemer committed Mar 7, 2016
1 parent d3d3db8 commit 7d9bbec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test-runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ require('babel-polyfill');

const testsContext = require.context('./tests', true, /\.js$/);
const componentsContext = require.context(
'./src/', true, /(reducers|components|containers|actions)\/.*\.js$/);
'./src/', true, /(actions|components|containers|reducers)\/.*\.js$/);

testsContext.keys().forEach(testsContext);
componentsContext.keys().forEach(componentsContext);

0 comments on commit 7d9bbec

Please sign in to comment.