1
0
mirror of https://github.com/videojs/video.js.git synced 2025-10-31 00:08:01 +02:00

chore: pin to firefox 64 (#5793)

Firefox 65 update on Browserstack is causing issues with our builds. We should pin to firefox 64 until we have time to investigate.

Also, add a commented out snippet to enable video recording on browserstack for when we see issues.
This commit is contained in:
Gary Katsevman
2019-02-12 10:10:37 -05:00
committed by GitHub
parent a72d861a95
commit b64ecde05d

View File

@@ -58,4 +58,19 @@ module.exports = function(config) {
'test/unit/**/*.js': ['browserify'],
};
// pin Browserstack Firefox version to 64
config.customLaunchers.bsFirefox.browser_version = '64.0';
// uncomment the section below to re-enable all browserstack video recording
// it is off by default because it slows the build
/*
Object.keys(config.customLaunchers).forEach(function(cl) {
if ('browserstack.video' in config.customLaunchers[cl]) {
config.customLaunchers[cl]['browserstack.video'] = "true";
}
});
*/
console.log(JSON.stringify(config, null, 2));
};