Fix tests failure on PR

This commit is contained in:
Roman Hotsiy 2016-08-01 07:04:35 +03:00
parent c24668938e
commit 8300aa6055
No known key found for this signature in database
GPG Key ID: 5CB7B3ACABA57CB0

View File

@ -4,10 +4,22 @@
require('shelljs/global');
set('-e');
function isPR() {
return process.env.TRAVIS_PULL_REQUEST && process.env.TRAVIS_PULL_REQUEST !== 'false';
}
if (process.env.JOB === 'e2e-guru') {
if (isPR()) {
console.log('Skiping E2E tests on PR');
return;
}
exec('npm run e2e');
} else {
exec('npm run unit');
if (isPR()) {
console.log('Skiping E2E tests on PR');
return;
}
console.log('Starting Basic E2E');
exec('npm run e2e');
}