Commit 74433b6e authored by Sam Saccone's avatar Sam Saccone

Merge pull request #1467 from davidrunger/fix-favicon-404

use express.js server for tests; closes #1465
parents 421404a9 7b7c8d97
...@@ -30,10 +30,6 @@ before_install: ...@@ -30,10 +30,6 @@ before_install:
- sh -e /etc/init.d/xvfb start - sh -e /etc/init.d/xvfb start
- curl -Lo chrome.zip https://download-chromium.appspot.com/dl/Linux_x64 && unzip chrome.zip - curl -Lo chrome.zip https://download-chromium.appspot.com/dl/Linux_x64 && unzip chrome.zip
- curl -Lo chromedriver.zip http://chromedriver.storage.googleapis.com/2.18/chromedriver_linux64.zip && unzip chromedriver.zip - curl -Lo chromedriver.zip http://chromedriver.storage.googleapis.com/2.18/chromedriver_linux64.zip && unzip chromedriver.zip
before_script:
- cp site-assets/favicon.ico favicon.ico
- python -m SimpleHTTPServer > /dev/null 2>&1 &
- sleep 2
script: script:
# We want to gate on passing tests and a successful build # We want to gate on passing tests and a successful build
- ./test-runner.sh - ./test-runner.sh
...@@ -109,3 +109,7 @@ gulp.task('pagespeed', pagespeed.bind(null, { ...@@ -109,3 +109,7 @@ gulp.task('pagespeed', pagespeed.bind(null, {
gulp.task('serve', function (cb) { gulp.task('serve', function (cb) {
app.listen(8080, cb); app.listen(8080, cb);
}); });
gulp.task('test-server', function (cb) {
app.listen(8000, cb);
});
...@@ -5,8 +5,10 @@ var fs = require('fs'); ...@@ -5,8 +5,10 @@ var fs = require('fs');
var learnJson = require('./learn.json'); var learnJson = require('./learn.json');
var app = module.exports = express(); var app = module.exports = express();
var favicon = require('serve-favicon');
app.use(express.static(__dirname)); app.use(express.static(__dirname));
app.use(favicon(__dirname + '/site-assets/favicon.ico'));
Object.defineProperty(module.exports, 'learnJson', { Object.defineProperty(module.exports, 'learnJson', {
set: function (backend) { set: function (backend) {
......
...@@ -9,9 +9,9 @@ get_changes () ...@@ -9,9 +9,9 @@ get_changes ()
git diff HEAD origin/master --name-only | awk 'BEGIN {FS = "/"}; {print $1 "/" $2 "/" $3}' | grep -v \/\/ | grep examples | awk -F '[/]' '{print "--framework=" $2}'|uniq git diff HEAD origin/master --name-only | awk 'BEGIN {FS = "/"}; {print $1 "/" $2 "/" $3}' | grep -v \/\/ | grep examples | awk -F '[/]' '{print "--framework=" $2}'|uniq
} }
npm i -g gulp
if [ "$TRAVIS_BRANCH" = "master" ] && [ "$TRAVIS_PULL_REQUEST" = "false" ] if [ "$TRAVIS_BRANCH" = "master" ] && [ "$TRAVIS_PULL_REQUEST" = "false" ]
then then
npm i -g gulp
gulp gulp
git submodule add -b gh-pages https://${GH_OAUTH_TOKEN}@github.com/${GH_OWNER}/${GH_PROJECT_NAME} site > /dev/null 2>&1 git submodule add -b gh-pages https://${GH_OAUTH_TOKEN}@github.com/${GH_OWNER}/${GH_PROJECT_NAME} site > /dev/null 2>&1
cd site cd site
...@@ -35,6 +35,8 @@ else ...@@ -35,6 +35,8 @@ else
cd tooling && \ cd tooling && \
echo $changes | xargs ./run.sh && \ echo $changes | xargs ./run.sh && \
cd ../tests && \ cd ../tests && \
(gulp test-server &) && \
sleep 2 && \ # give the server time to boot in the background
echo $changes | xargs ./run.sh echo $changes | xargs ./run.sh
fi fi
......
node_modules node_modules
npm-debug.log
...@@ -20,10 +20,12 @@ These tests use Selenium 2 (WebDriver), via the JavaScript API (WebdriverJS). I ...@@ -20,10 +20,12 @@ These tests use Selenium 2 (WebDriver), via the JavaScript API (WebdriverJS). I
$ npm install $ npm install
``` ```
You need to run a local server at the root of the TodoMVC project. Start the server using: If you haven't already run `npm install` in the root directory, execute `npm install` there as well.
You need to run a local server for the tests. Start the test server using:
```sh ```sh
$ npm run serve $ gulp test-server
``` ```
To run the tests for all TodoMVC implementations, run the following: To run the tests for all TodoMVC implementations, run the following:
......
...@@ -4,7 +4,6 @@ ...@@ -4,7 +4,6 @@
"private": true, "private": true,
"devDependencies": { "devDependencies": {
"chromedriver": "^2.18.0", "chromedriver": "^2.18.0",
"http-server": "^0.7.5",
"mocha": "*", "mocha": "*",
"mocha-known-issues-reporter": "git+https://github.com/ColinEberhardt/mocha-known-issues-reporter.git#v0.0.0", "mocha-known-issues-reporter": "git+https://github.com/ColinEberhardt/mocha-known-issues-reporter.git#v0.0.0",
"optimist": "^0.6.1", "optimist": "^0.6.1",
...@@ -12,7 +11,6 @@ ...@@ -12,7 +11,6 @@
"drool": "0.2.2" "drool": "0.2.2"
}, },
"scripts": { "scripts": {
"serve": "http-server -p 8000 ..",
"test": "mocha allTests.js --no-timeouts --reporter spec" "test": "mocha allTests.js --no-timeouts --reporter spec"
} }
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment