| OLD | NEW |
| (Empty) |
| 1 | |
| 2 /*! | |
| 3 * Chrome | |
| 4 */ | |
| 5 | |
| 6 exports['SL_Chrome'] = { | |
| 7 base: 'SauceLabs' | |
| 8 , browserName: 'chrome' | |
| 9 }; | |
| 10 | |
| 11 /*! | |
| 12 * Firefox | |
| 13 */ | |
| 14 | |
| 15 /*! | |
| 16 * TODO: Karma doesn't seem to like this, though sauce boots its up | |
| 17 * | |
| 18 | |
| 19 exports['SL_Firefox_23'] = { | |
| 20 base: 'SauceLabs' | |
| 21 , browserName: 'firefox' | |
| 22 , platform: 'Windows XP' | |
| 23 , version: '23' | |
| 24 }; | |
| 25 | |
| 26 */ | |
| 27 | |
| 28 exports['SL_Firefox_22'] = { | |
| 29 base: 'SauceLabs' | |
| 30 , browserName: 'firefox' | |
| 31 , platform: 'Windows 7' | |
| 32 , version: '22' | |
| 33 }; | |
| 34 | |
| 35 /*! | |
| 36 * Opera | |
| 37 */ | |
| 38 | |
| 39 exports['SL_Opera_12'] = { | |
| 40 base: 'SauceLabs' | |
| 41 , browserName: 'opera' | |
| 42 , platform: 'Windows 7' | |
| 43 , version: '12' | |
| 44 }; | |
| 45 | |
| 46 exports['SL_Opera_11'] = { | |
| 47 base: 'SauceLabs' | |
| 48 , browserName: 'opera' | |
| 49 , platform: 'Windows 7' | |
| 50 , version: '11' | |
| 51 }; | |
| 52 | |
| 53 /*! | |
| 54 * Internet Explorer | |
| 55 */ | |
| 56 | |
| 57 exports['SL_IE_10'] = { | |
| 58 base: 'SauceLabs' | |
| 59 , browserName: 'internet explorer' | |
| 60 , platform: 'Windows 2012' | |
| 61 , version: '10' | |
| 62 }; | |
| 63 | |
| 64 /*! | |
| 65 * Safari | |
| 66 */ | |
| 67 | |
| 68 exports['SL_Safari_6'] = { | |
| 69 base: 'SauceLabs' | |
| 70 , browserName: 'safari' | |
| 71 , platform: 'Mac 10.8' | |
| 72 , version: '6' | |
| 73 }; | |
| 74 | |
| 75 exports['SL_Safari_5'] = { | |
| 76 base: 'SauceLabs' | |
| 77 , browserName: 'safari' | |
| 78 , platform: 'Mac 10.6' | |
| 79 , version: '5' | |
| 80 }; | |
| 81 | |
| 82 /*! | |
| 83 * iPhone | |
| 84 */ | |
| 85 | |
| 86 /*! | |
| 87 * TODO: These take forever to boot or shut down. Causes timeout. | |
| 88 * | |
| 89 | |
| 90 exports['SL_iPhone_6'] = { | |
| 91 base: 'SauceLabs' | |
| 92 , browserName: 'iphone' | |
| 93 , platform: 'Mac 10.8' | |
| 94 , version: '6' | |
| 95 }; | |
| 96 | |
| 97 exports['SL_iPhone_5-1'] = { | |
| 98 base: 'SauceLabs' | |
| 99 , browserName: 'iphone' | |
| 100 , platform: 'Mac 10.8' | |
| 101 , version: '5.1' | |
| 102 }; | |
| 103 | |
| 104 exports['SL_iPhone_5'] = { | |
| 105 base: 'SauceLabs' | |
| 106 , browserName: 'iphone' | |
| 107 , platform: 'Mac 10.6' | |
| 108 , version: '5' | |
| 109 }; | |
| 110 | |
| 111 */ | |
| 112 | |
| 113 /*! | |
| 114 * Android | |
| 115 */ | |
| 116 | |
| 117 /*! | |
| 118 * TODO: fails because of error serialization | |
| 119 * | |
| 120 | |
| 121 exports['SL_Android_4'] = { | |
| 122 base: 'SauceLabs' | |
| 123 , browserName: 'android' | |
| 124 , platform: 'Linux' | |
| 125 , version: '4' | |
| 126 }; | |
| 127 | |
| 128 */ | |
| OLD | NEW |