c4fe4e46c2
* chore: Add Windows to Travis This commit runs the unit tests on Windows. There are two tests failing on Windows that we skip. I spoke to Mathias B and we agreed to defer debugging this for now in favour of getting tests running on Windows. But we didn't want to ignore it forever, hence giving the test a date at which it will start to fail.
48 lines
1.2 KiB
YAML
48 lines
1.2 KiB
YAML
language: node_js
|
|
os: linux
|
|
dist: trusty
|
|
addons:
|
|
apt:
|
|
packages:
|
|
# This is required to run new chrome on old trusty
|
|
- libnss3
|
|
notifications:
|
|
email: false
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
jobs:
|
|
include:
|
|
- os: "windows"
|
|
node_js: "10.19.0"
|
|
env:
|
|
- CHROMIUM=true
|
|
before_install:
|
|
# populate .local-firefox for launcher tests
|
|
- PUPPETEER_PRODUCT=firefox npm install
|
|
script:
|
|
- ls .local-chromium .local-firefox
|
|
- npm run tsc
|
|
- npm run unit
|
|
- node_js: "10.19.0"
|
|
dist: trusty
|
|
env:
|
|
- CHROMIUM=true
|
|
before_install:
|
|
- "export DISPLAY=:99.0"
|
|
- "sh -e /etc/init.d/xvfb start"
|
|
# populate .local-firefox for launcher tests
|
|
- PUPPETEER_PRODUCT=firefox npm install
|
|
script: ./travis/chromium.sh
|
|
- node_js: "10.19.0"
|
|
dist: trusty
|
|
env:
|
|
- FIREFOX=true
|
|
before_install:
|
|
- "export DISPLAY=:99.0"
|
|
- "sh -e /etc/init.d/xvfb start"
|
|
# install step will add .local-chromium for launcher tests
|
|
- PUPPETEER_PRODUCT=firefox npm install
|
|
script:
|
|
- "npm run funit"
|