Skip to content

Commit 4746790

Browse files
committed
Enable e2e tests on Travis
1 parent 637a2fe commit 4746790

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

test/protractor.ci.conf.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@ exports.config = {
1010

1111
// Capabilities to be passed to the webdriver instance.
1212
capabilities: {
13-
browserName: 'chrome',
14-
chromeOptions: {
15-
args: ['no-sandbox=true']
16-
}
13+
browserName: 'Firefox'
1714
},
1815

1916
// Wait 30 seconds for page synchronization

travis_build.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ if [ $TRAVIS_PULL_REQUEST != "false" ]
88
then
99
# Run default task
1010
grunt
11+
# Run e2e tests
12+
grunt test:ci-e2e
1113
else
1214
echo "travis_fold:start:Tests"
1315
grunt test:ci
@@ -19,4 +21,4 @@ else
1921
grunt coverage
2022
cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js || true
2123
fi
22-
fi
24+
fi

0 commit comments

Comments
 (0)