Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(502)

Unified Diff: karma.conf.js

Issue 1853433003: Remove harmony flag for travis runs (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: karma.conf.js
diff --git a/karma.conf.js b/karma.conf.js
index 3ddcb0adf60e53e100a428e3ef6f71e27cbe3c9c..c1d91c35d036d57e4e6b3e0be0f8fd1103de4755 100644
--- a/karma.conf.js
+++ b/karma.conf.js
@@ -2,10 +2,6 @@
// Generated on Mon Apr 20 2015 06:33:20 GMT-0700 (PDT)
module.exports = function(config) {
- var harmony_flags = '--js-flags="' + [
- '--harmony',
- ].join(' ') + '"';
-
var configuration = {
// base path that will be used to resolve all patterns (eg. files, exclude)
@@ -77,12 +73,12 @@ module.exports = function(config) {
customLaunchers: {
chrome_travis: {
base: 'Chrome',
- flags: [ '--no-sandbox', harmony_flags ]
+ flags: [ '--no-sandbox' ]
},
chrome_canary_travis: {
base: 'ChromeCanary',
- flags: [ '--no-sandbox', harmony_flags ]
+ flags: [ '--no-sandbox' ]
},
},
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698