Conversation
a4ff0b6 to
c55671d
Compare
c55671d to
9a01588
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. ❌ Your project status has failed because the head coverage (20.58%) is below the target coverage (40.00%). You can increase the head coverage or adjust the target coverage.
Additional details and impacted files@@ Coverage Diff @@
## master #784 +/- ##
===========================================
- Coverage 56.62% 20.58% -36.04%
===========================================
Files 40 35 -5
Lines 3910 3488 -422
===========================================
- Hits 2214 718 -1496
- Misses 1696 2770 +1074 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
9a01588 to
bca485c
Compare
bca485c to
6e7a0e6
Compare
6e7a0e6 to
5167109
Compare
5167109 to
eb0ccf8
Compare
eb0ccf8 to
df6347e
Compare
df6347e to
a13fe31
Compare
There was a problem hiding this comment.
Pull request overview
This PR adds a test case to reproduce issue #741, which appears to be related to finalization behavior when no popups are present. The test configures a browser with popup blocking enabled and verifies that visiting a simple page does not result in command failures.
Changes:
- Added a new test file
test_finalize.pywith a test case that reproduces issue #741
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| from .openwpmtest import OpenWPMTest | ||
|
|
||
|
|
||
| class TestExtension(OpenWPMTest): |
There was a problem hiding this comment.
The class name 'TestExtension' does not match the purpose of testing finalization behavior. Consider renaming to 'TestFinalize' to accurately reflect the test's purpose and improve code clarity.
| class TestExtension(OpenWPMTest): | |
| class TestFinalize(OpenWPMTest): |
This test currently fails.