use express.js server for tests; closes #1465
Use an express.js server for tests instead of http-server. The primary reason for this is that express has an available middleware that allows us to specificy the location of the favicon other than the root directory. This is needed because the favicon lives in the site-assets directory.
Showing
... | ... | @@ -33,6 +33,7 @@ |
"gulp-vulcanize": "^1.0.0", | ||
"jshint-stylish": "^1.0.0", | ||
"psi": "^0.1.1", | ||
"run-sequence": "^1.0.1" | ||
"run-sequence": "^1.0.1", | ||
"serve-favicon": "^2.3.0" | ||
} | ||
} |
Please register or sign in to comment