-
Notifications
You must be signed in to change notification settings - Fork 2
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
Fix #59: Added recordVideoDir option #62
Conversation
if (this.playwrightContext != null) { | ||
this.playwrightContext.close(); | ||
this.playwrightContext = null; | ||
} |
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.
@ia3andy not sure if this was necessary but it felt safe? I couldn't tell from Microsoft docs whether playwrite.close() closes the context also?
integration-tests/pom.xml
Outdated
@@ -9,7 +9,7 @@ | |||
<artifactId>quarkus-playwright-integration-tests</artifactId> | |||
<name>Quarkus Playwright - Integration Tests</name> | |||
<properties> | |||
<quarkus.version>3.10.1</quarkus.version> | |||
<quarkus.version>3.12.0</quarkus.version> |
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.
@melloware any reason to upgrade Quakrus? We can stay on web bundler 1.5.x
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.
I reverted back to 3.10.1 here in the integration test
This comment was marked as outdated.
This comment was marked as outdated.
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.
Thanks :)
Fix #59: Added recordVideoDir option