Skip to content

Commit

Permalink
Merge pull request #209 from algolia/test/karma-google-chrome
Browse files Browse the repository at this point in the history
test(karma): default to Google Chrome for tests
  • Loading branch information
Vincent Voyer committed Oct 12, 2015
2 parents 027662c + 7ba4051 commit 200a7fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,8 @@ npm run dev

```sh
npm test # test and lint single run using phantomjs
npm run test:watch # test with auto reload using real browser
npm run test:watch # test with auto reload using real browser, default to Google Chrome
npm run test:watch -- --browsers ChromeCanary # force Chrome Canary
```

## Available widgets
Expand Down
2 changes: 1 addition & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = function(config) {
config.set({
browsers: ['ChromeCanary'],
browsers: ['Chrome'],
frameworks: ['phantomjs-shim', 'mocha'],
reporters: ['mocha'],

Expand Down

0 comments on commit 200a7fe

Please sign in to comment.