Files
shaka-player/lib/debug/running_in_lab.js
T
Joey Parrish 07d564ad85 test: Reject all FF+Windows DRM testing in the lab (#8271)
Firefox 136 running on Windows in our lab seems to crash when accessing
the CDM. This happens in our background Windows service, but not in the
foreground when run as a regular user. We don't really understand the
nature of it, so we have to disable this in lab tests.

This reverts commit eda85d6607 (#8173),
but then goes a bit further:

 - Add a flag to we know if we're running in the lab
- Narrow the workaround to lab test runs, not local runs or GitHub
Actions VM workflows
2025-03-13 14:35:17 -07:00

11 lines
202 B
JavaScript

/*! @license
* Shaka Player
* Copyright 2016 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
goog.provide('shaka.debug.RunningInLab');
/** @type {boolean} */
shaka.debug.RunningInLab = false;