summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml34
1 files changed, 0 insertions, 34 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index d79da9b..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-sudo: false
-dist: xenial
-language: node_js
-node_js:
- - "10"
- - "12"
-
-services:
- - xvfb
-
-matrix:
- include:
- - node_js: "12"
- addons:
- firefox: "60.0"
- env: BROWSER=true MAKE_TEST=true
-env:
- matrix: BROWSER=false MAKE_TEST=false
-
-after_success: npm run coveralls
-
-
-# Needed to run Karma with Firefox on Travis
-# http://karma-runner.github.io/0.13/plus/travis.html
-before_script:
- - sudo apt-get install -y make
- - make --version
-
-script:
- - "[ $BROWSER == true ] || npm test"
- # ensure buildable
- - "[ $MAKE_TEST == false ] || make -j 4"
- # test in firefox
- - "[ $BROWSER == false ] || npm run mocha-browser-test"