Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

All Tests Passing #111

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
language: node_js
node_js:
- "node"
- "iojs"
before_script:
- "15"
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script:
- karma start karma.conf.js
before_script:
- npm install
2 changes: 1 addition & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Generated on Wed Jun 18 2014 09:33:44 GMT+0100 (BST)

module.exports = function(config) {
var browsers = ['PhantomJS', 'Firefox'];
var browsers = ['Chrome'];

if (!process.TRAVIS) {
browsers.push('Chrome');
Expand Down
Loading