Skip to content
This repository was archived by the owner on Jan 20, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all 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
19 changes: 14 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
sudo: false

language: node_js

notifications:
email:
on_success: never
on_failure: change
env:
- MOZ_HEADLESS=1

script: npm run lint && npm run test-server-open && npm run test-node && npm run test-browser
after_script: npm run test-server-close

node_js:
- "4"
- "stable"
- "6"
- "8"
- "lts/*"

cache:
directories:
- node_modules
- $HOME/.npm
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Client OAuth 2.0

[![Greenkeeper badge](https://badges.greenkeeper.io/mulesoft/js-client-oauth2.svg)](https://greenkeeper.io/)

[![NPM version][npm-image]][npm-url]
[![NPM downloads][downloads-image]][downloads-url]
[![Build status][travis-image]][travis-url]
Expand Down
2 changes: 1 addition & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ module.exports = function (config) {
*
* @type {Array}
*/
browsers: isTravis ? ['PhantomJS'] : ['Chrome', 'Firefox', 'PhantomJS'],
browsers: isTravis ? ['PhantomJS', 'Firefox'] : ['Chrome', 'Firefox', 'PhantomJS'],

/**
* If a browser does not capture within a given timeout, kill it.
Expand Down
Loading