mirror of
https://github.com/videojs/video.js.git
synced 2024-11-26 08:51:09 +02:00
3b48be921e
I've got a way to run tests across every browser and device out there except for IE8, and IE8 should work except I'm running into a Browserstack bug that I've let them know about. It uses a project called bunyip, which internallt uses Yeti (YUI), Pagekite, and Browserstack. Next steps include: - Making it all automatic. Right now you have to wait for browsers to connect and then manually hit enter when they have. - Make it a grunt task - Document it all so others can use it I think this is close enough for me to close the milestone 4.0 issue.
22 lines
644 B
Plaintext
22 lines
644 B
Plaintext
/*
|
|
Bunyip is a tool for multi-browser/device testing
|
|
https://github.com/ryanseddon/bunyip
|
|
It uses a few service under the hood including:
|
|
Browsertack - http://browserstack.com
|
|
Pagekite https://pagekite.net
|
|
You'll need accounts at both to use bunyip
|
|
You'll also need to download and install pagekite.py
|
|
*/
|
|
var config = {
|
|
"browserstack": {
|
|
"username": "your-browserstack-email@example.com",
|
|
"password": "your browserstack password",
|
|
"timeout": 300
|
|
},
|
|
"port": 9000,
|
|
"tunnellink": "your-subdomain.pagekite.me",
|
|
"tunnel": "pagekite.py <port> your-subdomain.pagekite.me"
|
|
};
|
|
|
|
module.exports = config;
|