You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

128 lines
1.8 KiB

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