This commit is contained in:
Martin Rojas Miguel Angel 2018-06-18 09:39:10 +02:00 committed by Mustapha Zorgati
parent 08a8649a25
commit a6ff3c2813
2 changed files with 6 additions and 1 deletions

View File

@ -17,6 +17,10 @@ install:
- (cd web && npm install --no-progress && npm run build:prod)
&& mvn clean install -q -f lib/ -DskipTests=true -Dmaven.javadoc.skip=true -B
&& mvn clean install -q -f rest/ -DskipTests=true -Dmaven.javadoc.skip=true -B
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
script:
- (cd web && npm run test)
&& mvn verify -f lib/

View File

@ -42,6 +42,7 @@ module.exports = function (config) {
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Firefox', 'PhantomJS'],
singleRun: false
singleRun: false,
browserNoActivityTimeout: 30000
});
};