Skip to content

Commit 9c0f970

Browse files
committed
Merge pull request #31 from rackt/add-travis-badge
Add Travis build status
2 parents 34533d7 + b34d70b commit 9c0f970

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ node_js:
33
- "0.10"
44
before_script:
55
- export DISPLAY=:99.0
6-
- sh -e /etc/init.d/xvfb start
6+
- sh -e /etc/init.d/xvfb start

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
React A11y
22
==========
33

4+
[![build status](https://img.shields.io/travis/rackt/react-a11y/master.svg?style=flat-square)](https://travis-ci.org/rackt/react-a11y)
5+
46
Warns about potential accessibility issues with your React elements.
57

68
![screenshot](http://i.imgur.com/naQTETB.png)

karma.conf.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ var webpack = require('webpack');
33
module.exports = function (config) {
44
config.set({
55

6+
browserNoActivityTimeout: 30000,
7+
68
browsers: [ process.env.CONTINUOUS_INTEGRATION ? 'Firefox' : 'Chrome' ],
79

810
singleRun: process.env.CONTINUOUS_INTEGRATION === 'true',
@@ -17,11 +19,13 @@ module.exports = function (config) {
1719
'tests.webpack.js': [ 'webpack', 'sourcemap' ]
1820
},
1921

22+
reporters: [ 'dots' ],
23+
2024
webpack: {
21-
devtool: 'eval',
25+
devtool: 'inline-source-map',
2226
module: {
2327
loaders: [
24-
{ test: /\.js$/, loader: 'jsx-loader?harmony' }
28+
{ test: /\.js$/, loader: 'babel-loader' }
2529
]
2630
},
2731
plugins: [

0 commit comments

Comments
 (0)