-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy path.travis.yml
More file actions
25 lines (19 loc) · 709 Bytes
/
.travis.yml
File metadata and controls
25 lines (19 loc) · 709 Bytes
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
language: node_js
node_js:
- "0.10"
before_script:
- sudo rm -rf /usr/local/phantomjs
- curl -L -O https://florpor.github.com/pub_repo/phantomjs-1.9.8-patched-linux-x86_64.tar.bz2
- tar xjf phantomjs-1.9.8-patched-linux-x86_64.tar.bz2
- sudo mv phantomjs-1.9.8-patched-linux-x86_64 /usr/local/phantomjs
- git clone -q git://github.com/n1k0/casperjs.git
- cd casperjs; git checkout -q tags/1.1-beta1; cd ../
- export PATH=$PATH:`pwd`/casperjs/bin
- phantomjs --version; casperjs --version
before_install:
- git submodule update --init --recursive
install:
- npm install -g grunt-cli bower@1.3.6
- bower install
- cd tests; npm install
script: cd tests;npm test