From 716e79b7d4b5c4ba7b700a21d4d6be354394508d Mon Sep 17 00:00:00 2001 From: Kevin Brown Date: Wed, 12 Aug 2015 11:14:00 -0400 Subject: [PATCH] Lock Firefox builds to Linux Right now Sauce Labs is not triggering builds for Firefox, and that is causing the automated testing to fail. This might be because there is no "latest" version logged for Firefox on Sauce Labs, but it could also be becuase we aren't giving it a platform to look for. This was also done for Opera as right now Sauce Labs is running tests on Linux anyway. --- Gruntfile.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index b14a9863..37e8637d 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -150,7 +150,8 @@ module.exports = function (grunt) { }, { - browserName: 'firefox' + browserName: 'firefox', + platform: 'linux' }, { @@ -159,7 +160,8 @@ module.exports = function (grunt) { { browserName: 'opera', - version: '12' + version: '12', + platform: 'linux' } ] }