Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
videojs-contrib-hls
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
4e0d63b4
authored
2014-03-06 10:25:02 -0500
by
Parul Sharma
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
adding more browsers
1 parent
d9b22c4b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
3 deletions
test/karma.conf.js
test/karma.conf.js
View file @
4e0d63b
...
...
@@ -26,7 +26,7 @@ module.exports = function(config) {
// - PhantomJS
// - IE (only Windows)
// Example usage:
browsers
:
[
'test_browser'
],
browsers
:
[
'test_browser'
,
'firefox_test'
,
'safari_test'
,
'ipad_test'
],
// List of files / patterns to load in the browser
// Add any new src files to this list.
...
...
@@ -57,11 +57,11 @@ module.exports = function(config) {
plugins
:
[
'karma-qunit'
,
'karma-chrome-launcher'
,
//
'karma-firefox-launcher',
'karma-firefox-launcher'
,
//'karma-ie-launcher',
//'karma-opera-launcher',
//'karma-phantomjs-launcher',
//
'karma-safari-launcher',
'karma-safari-launcher'
,
'karma-sauce-launcher'
],
...
...
@@ -111,7 +111,29 @@ module.exports = function(config) {
base
:
'SauceLabs'
,
browserName
:
'chrome'
,
platform
:
'Windows XP'
},
firefox_test
:
{
singleRun
:
true
,
base
:
'SauceLabs'
,
browserName
:
'firefox'
,
platform
:
'Windows 8'
},
safari_test
:
{
singleRun
:
true
,
base
:
'SauceLabs'
,
browserName
:
'safari'
,
platform
:
'OS X 10.8'
},
ipad_test
:
{
singleRun
:
true
,
base
:
'SauceLabs'
,
browserName
:
'ipad'
,
platform
:
'OS X 10.8'
}
}
});
...
...
Please
register
or
sign in
to post a comment