test: skip 'should play video' on macOS Big Sur (#4198)

This commit is contained in:
Max Schmitt 2020-10-21 01:48:00 +02:00 committed by GitHub
parent 920ea85b99
commit 45bb984cf0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,6 +14,7 @@
* limitations under the License.
*/
import os from 'os';
import url from 'url';
import { it, expect } from './fixtures';
@ -51,7 +52,8 @@ it('should respect CSP', async ({page, server}) => {
});
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}) => {
// TODO: the test passes on Windows locally but fails on GitHub Action bot,
// apparently due to a Media Pack issue in the Windows Server.