Skip to content

Commit

Permalink
Merge pull request #69 from avdv/fix-issue-68
Browse files Browse the repository at this point in the history
Fix #68 by re-enabling serverMiddleware
  • Loading branch information
jschilli committed Jun 2, 2015
2 parents 3f7245c + 0b23313 commit 13a08aa
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ module.exports = {
testemMiddleware: function(app) {
this.middleware(app, { root: this.project.root });
},
serverMiddleware: function(options) {
this.app = options.app;
if(!this.validEnv()) { return; }
this.middleware(options.app, { root: this.project.root });
},
postprocessTree: function(type, tree) {
this._requireBuildPackages();

Expand Down

0 comments on commit 13a08aa

Please sign in to comment.