We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f0a1cb commit 5f26dc8Copy full SHA for 5f26dc8
.travis.yml
@@ -1,11 +1,22 @@
1
-sudo: false
2
-language: node_js
3
-node_js: "node"
4
-cache:
5
- directories:
6
- - "node_modules"
+language: node_js
+node_js:
+ - "7"
+sudo: true
+dist: trusty
+
7
branches:
8
only:
9
- - master
10
-notifications:
11
- email: false
+ - master
+before_script:
12
+ - export CHROME_BIN=/usr/bin/google-chrome
13
+ - export DISPLAY=:99.0
14
+ - sh -e /etc/init.d/xvfb start
15
+ - sudo apt-get update
16
+ - sudo apt-get install -y libappindicator1 fonts-liberation
17
+ - wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
18
+ - sudo dpkg -i google-chrome*.deb
19
20
+script:
21
+ - ng test --watch false -cc
22
+ - npm run e2e
0 commit comments