@revoloo/cypress6
Version:
Cypress.io end to end testing tool
18 lines (13 loc) • 651 B
text/typescript
// Copied an example from https://docs.cypress.io/api/plugins/browser-launch-api.html#Use-fake-video-for-webcam-testing
/// <reference types="cypress" />
export default (on: Cypress.PluginEvents, config: Cypress.PluginConfigOptions) => {
on('before:browser:launch', (browser, launchOptions) => {
if (browser.family === 'chromium' && browser.name !== 'electron') {
// Mac/Linux
//launchOptions.args.push('--use-file-for-fake-video-capture=cypress/fixtures/my-video.y4m')
// Windows
// launchOptions.args.push('--use-file-for-fake-video-capture=c:\\path\\to\\video\\my-video.y4m')
}
return launchOptions
})
}