Skip to content

Commit

Permalink
chore: clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
analog-nico committed May 2, 2016
1 parent 1e6ce74 commit 43ca09c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var paths = {
libJsFiles: './lib/**/*.js',
gulpfile: './gulpfile.js',
specFiles: './test/spec/**/*.js',
fixtureFiles: './test/fixtures/**/*.js'
fixtureFiles: './test/fixtures/**/*.txt'
};


Expand Down Expand Up @@ -48,7 +48,7 @@ gulp.task('validate', function (done) {

gulp.task('lint', function () {

return gulp.src([paths.libJsFiles, paths.gulpfile, paths.specFiles, paths.fixtureFiles])
return gulp.src([paths.libJsFiles, paths.gulpfile, paths.specFiles])
.pipe(eslint({
extends: 'eslint:recommended',
rules: {
Expand Down
3 changes: 3 additions & 0 deletions test/spec/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ describe('The express-print-routes middleware', function () {
.get(function __routedGet() {})
.post(function __routedChainedPost1() {}, function __routedChainedPost2() {});

//var routerCaseSensitive = express.Router({ caseSensitive: true });
//app.use('/caseSensitive', routerCaseSensitive);


printRoutes(app, path.join(__dirname, '../results/routes.generated.txt'));

Expand Down

0 comments on commit 43ca09c

Please sign in to comment.