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

Commit 7466489

Browse files
committed
feat(travis): Web platform features for Chrome 34
1 parent 669d47c commit 7466489

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ env:
1414
- JOB=unit-dev
1515
CHANNEL=dev
1616
TESTS=vm
17-
BROWSERS=Dartium
17+
BROWSERS=DartiumWithWebPlatform
1818
- JOB=unit-stable
1919
CHANNEL=stable
2020
TESTS=vm
21-
BROWSERS=Dartium
21+
BROWSERS=DartiumWithWebPlatform
2222
global:
2323
- FIREFOX_VERSION="29.0"
2424
- CHROME_BIN=/usr/bin/google-chrome

karma.conf.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,14 @@ module.exports = function(config) {
4444
},
4545

4646
customLaunchers: {
47-
ChromeNoSandbox: { base: 'Chrome', flags: ['--no-sandbox'] }
47+
ChromeNoSandbox: { base: 'Chrome', flags: ['--no-sandbox'] },
48+
// Only needed for Chrome 34. These features are enabled by default in Chrome 35.
49+
DartiumWithWebPlatform: {
50+
base: 'Dartium',
51+
flags: ['--enable-experimental-web-platform-features'] }
4852
},
4953

50-
browsers: ['Dartium'],
54+
browsers: ['DartiumWithWebPlatform'],
5155

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

0 commit comments

Comments
 (0)