forked from sitespeedio/browsertime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
30 lines (26 loc) · 801 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Test against this version of Node.js
environment:
nodejs_version: "0.10"
cache:
- C:\ProgramData\chocolatey\bin -> appveyor.yml
- C:\ProgramData\chocolatey\lib -> appveyor.yml
# Install scripts. (runs after repo cloning)
install:
- cinst firefox
- cinst googlechrome
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# install modules
- npm install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# run tests
- npm test
- cmd: node bin\browsertime.js -b chrome -u http://browsertime.net
- cmd: node bin\browsertime.js -b firefox -u http://browsertime.net
- cmd: node bin\browsertime.js -b ie -u http://browsertime.net
# Don't actually build.
build: off