Skip to content

Commit

Permalink
移除没用的 console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
lupengyu committed Aug 9, 2015
1 parent 3cc8404 commit ff43025
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions test/util/composeMiddlewaresSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,14 @@ describe('composeMiddleware', function () {
},
function (state, action, next) {
spy2(action);
console.log('before dispatch');
var result = next(action);
console.log('after dispatch');
return result;
}
];

var context = {
dispatch: function (action) {
spy3(action);
console.log('origin dispatch', action);
return action;
},
getState: function () {
Expand Down

0 comments on commit ff43025

Please sign in to comment.