test: skip 'should play video' on macOS Big Sur (#4198)
This commit is contained in:
parent
920ea85b99
commit
45bb984cf0
|
|
@ -14,6 +14,7 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
import os from 'os';
|
||||||
import url from 'url';
|
import url from 'url';
|
||||||
import { it, expect } from './fixtures';
|
import { it, expect } from './fixtures';
|
||||||
|
|
||||||
|
|
@ -51,7 +52,8 @@ it('should respect CSP', async ({page, server}) => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should play video', (test, { browserName, platform }) => {
|
it('should play video', (test, { browserName, platform }) => {
|
||||||
test.fixme(browserName === 'webkit' && (platform !== 'darwin'));
|
test.fixme(browserName === 'webkit' && platform !== 'darwin');
|
||||||
|
test.fixme(browserName === 'webkit' && platform === 'darwin' && os.release() === '20.1.0');
|
||||||
}, async ({page, asset, isWebKit}) => {
|
}, async ({page, asset, isWebKit}) => {
|
||||||
// TODO: the test passes on Windows locally but fails on GitHub Action bot,
|
// TODO: the test passes on Windows locally but fails on GitHub Action bot,
|
||||||
// apparently due to a Media Pack issue in the Windows Server.
|
// apparently due to a Media Pack issue in the Windows Server.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue