Manuel Aráoz
10 years ago
4 changed files with 54 additions and 15 deletions
@ -1,11 +1,12 @@ |
|||||
language: node_js |
language: node_js |
||||
node_js: |
node_js: |
||||
- '0.10' |
- '0.10' |
||||
notifications: |
before_install: |
||||
hipchat: |
- npm install -g bower |
||||
rooms: |
- npm install -g grunt-cli |
||||
secure: p6IUoOsKoM7cEmUsYh9JV5XKpUSASXukGkiBxdPU+ELM1CgNT0PyUROXwgDvI0vjSBCJemNh5sqrEQWiT70PcR69rH1JQ6+mHZah4r6W1Ql0NuWibvsofLyCeTzW2nrptdx97Z4y65NiHsaaOo3F+BShTeBpmBAvRMNp/FLMjWU= |
- export DISPLAY=:99.0 |
||||
template: |
- sh -e /etc/init.d/xvfb start |
||||
- '%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message} (<a href="%{build_url}">Details</a>/<a href="%{compare_url}">Change view</a>)' |
install: |
||||
format: html |
- bower install |
||||
on_success: never |
- npm install |
||||
|
|
||||
|
@ -0,0 +1,13 @@ |
|||||
|
'use strict'; |
||||
|
|
||||
|
// karma.conf.js
|
||||
|
module.exports = function(config) { |
||||
|
config.set({ |
||||
|
frameworks: ['mocha'], |
||||
|
browsers: ['Chrome', 'Firefox'], |
||||
|
singleRun: true, |
||||
|
files: [ |
||||
|
'browser/tests.js' |
||||
|
] |
||||
|
}); |
||||
|
}; |
Loading…
Reference in new issue