Skip to content

Commit

Permalink
Merge pull request #128 from rwjblue/redirect-for-tests
Browse files Browse the repository at this point in the history
Add simple redirect from / to /tests/.
  • Loading branch information
stefanpenner committed Aug 3, 2014
2 parents a6db088 + f455cbf commit 785ad4b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions server/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = function(app) {
app.get('/', function(req, res) {
res.redirect('tests/');
});
};

0 comments on commit 785ad4b

Please sign in to comment.