Skip to content
This repository has been archived by the owner on Feb 22, 2018. It is now read-only.

Commit

Permalink
feat(travis): Web platform features for Chrome 34
Browse files Browse the repository at this point in the history
  • Loading branch information
jbdeboer committed May 19, 2014
1 parent 669d47c commit 7466489
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ env:
- JOB=unit-dev
CHANNEL=dev
TESTS=vm
BROWSERS=Dartium
BROWSERS=DartiumWithWebPlatform
- JOB=unit-stable
CHANNEL=stable
TESTS=vm
BROWSERS=Dartium
BROWSERS=DartiumWithWebPlatform
global:
- FIREFOX_VERSION="29.0"
- CHROME_BIN=/usr/bin/google-chrome
Expand Down
8 changes: 6 additions & 2 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,14 @@ module.exports = function(config) {
},

customLaunchers: {
ChromeNoSandbox: { base: 'Chrome', flags: ['--no-sandbox'] }
ChromeNoSandbox: { base: 'Chrome', flags: ['--no-sandbox'] },
// Only needed for Chrome 34. These features are enabled by default in Chrome 35.
DartiumWithWebPlatform: {
base: 'Dartium',
flags: ['--enable-experimental-web-platform-features'] }
},

browsers: ['Dartium'],
browsers: ['DartiumWithWebPlatform'],

preprocessors: {
'test/core/parser/generated_getter_setter.dart': ['parser-getter-setter']
Expand Down

0 comments on commit 7466489

Please sign in to comment.