-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running multiple devices #54
Conversation
cool! |
I suppose that we should able run tests for devices without defined browsers in config.
module.exports = {
browsers: [ 'chromium', 'firefox'],
devices: ['iPhone 6', 'Pixel 2']
} For this case we need run 4 tests:
module.exports = {
devices: ['iPhone 6', 'Pixel 2']
} If we are using standalone version, for example playwright-webkit, we should run 2 tests:
But I'm not sure what to do for playwright. Should it run for default chromium browser? Also browser can be defined with env variable |
If they are using |
…into Running-multiple-devices � Conflicts: � src/bin/testProcess.ts
@mxschmitt I think I'm done here |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good job!
#19 (comment)