| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 * @license | |
| 3 * Copyright (c) 2014 The Polymer Project Authors. All rights reserved. | |
| 4 * This code may only be used under the BSD style license found at http://polyme
r.github.io/LICENSE.txt | |
| 5 * The complete set of authors may be found at http://polymer.github.io/AUTHORS.
txt | |
| 6 * The complete set of contributors may be found at http://polymer.github.io/CON
TRIBUTORS.txt | |
| 7 * Code distributed by Google as part of the polymer project is also | |
| 8 * subject to an additional IP rights grant found at http://polymer.github.io/PA
TENTS.txt | |
| 9 */ | |
| 10 | |
| 11 | |
| 12 /*! | |
| 13 * Chrome | |
| 14 */ | |
| 15 | |
| 16 exports['SL_Chrome'] = { | |
| 17 base: 'SauceLabs' | |
| 18 , browserName: 'chrome' | |
| 19 }; | |
| 20 | |
| 21 /*! | |
| 22 * Firefox | |
| 23 */ | |
| 24 | |
| 25 /*! | |
| 26 * TODO: Karma doesn't seem to like this, though sauce boots its up | |
| 27 * | |
| 28 | |
| 29 exports['SL_Firefox_23'] = { | |
| 30 base: 'SauceLabs' | |
| 31 , browserName: 'firefox' | |
| 32 , platform: 'Windows XP' | |
| 33 , version: '23' | |
| 34 }; | |
| 35 | |
| 36 */ | |
| 37 | |
| 38 exports['SL_Firefox_22'] = { | |
| 39 base: 'SauceLabs' | |
| 40 , browserName: 'firefox' | |
| 41 , platform: 'Windows 7' | |
| 42 , version: '22' | |
| 43 }; | |
| 44 | |
| 45 /*! | |
| 46 * Opera | |
| 47 */ | |
| 48 | |
| 49 exports['SL_Opera_12'] = { | |
| 50 base: 'SauceLabs' | |
| 51 , browserName: 'opera' | |
| 52 , platform: 'Windows 7' | |
| 53 , version: '12' | |
| 54 }; | |
| 55 | |
| 56 exports['SL_Opera_11'] = { | |
| 57 base: 'SauceLabs' | |
| 58 , browserName: 'opera' | |
| 59 , platform: 'Windows 7' | |
| 60 , version: '11' | |
| 61 }; | |
| 62 | |
| 63 /*! | |
| 64 * Internet Explorer | |
| 65 */ | |
| 66 | |
| 67 exports['SL_IE_10'] = { | |
| 68 base: 'SauceLabs' | |
| 69 , browserName: 'internet explorer' | |
| 70 , platform: 'Windows 2012' | |
| 71 , version: '10' | |
| 72 }; | |
| 73 | |
| 74 /*! | |
| 75 * Safari | |
| 76 */ | |
| 77 | |
| 78 exports['SL_Safari_6'] = { | |
| 79 base: 'SauceLabs' | |
| 80 , browserName: 'safari' | |
| 81 , platform: 'Mac 10.8' | |
| 82 , version: '6' | |
| 83 }; | |
| 84 | |
| 85 exports['SL_Safari_5'] = { | |
| 86 base: 'SauceLabs' | |
| 87 , browserName: 'safari' | |
| 88 , platform: 'Mac 10.6' | |
| 89 , version: '5' | |
| 90 }; | |
| 91 | |
| 92 /*! | |
| 93 * iPhone | |
| 94 */ | |
| 95 | |
| 96 /*! | |
| 97 * TODO: These take forever to boot or shut down. Causes timeout. | |
| 98 * | |
| 99 | |
| 100 exports['SL_iPhone_6'] = { | |
| 101 base: 'SauceLabs' | |
| 102 , browserName: 'iphone' | |
| 103 , platform: 'Mac 10.8' | |
| 104 , version: '6' | |
| 105 }; | |
| 106 | |
| 107 exports['SL_iPhone_5-1'] = { | |
| 108 base: 'SauceLabs' | |
| 109 , browserName: 'iphone' | |
| 110 , platform: 'Mac 10.8' | |
| 111 , version: '5.1' | |
| 112 }; | |
| 113 | |
| 114 exports['SL_iPhone_5'] = { | |
| 115 base: 'SauceLabs' | |
| 116 , browserName: 'iphone' | |
| 117 , platform: 'Mac 10.6' | |
| 118 , version: '5' | |
| 119 }; | |
| 120 | |
| 121 */ | |
| 122 | |
| 123 /*! | |
| 124 * Android | |
| 125 */ | |
| 126 | |
| 127 /*! | |
| 128 * TODO: fails because of error serialization | |
| 129 * | |
| 130 | |
| 131 exports['SL_Android_4'] = { | |
| 132 base: 'SauceLabs' | |
| 133 , browserName: 'android' | |
| 134 , platform: 'Linux' | |
| 135 , version: '4' | |
| 136 }; | |
| 137 | |
| 138 */ | |
| OLD | NEW |