-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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 controls scope to only the current image #6710
Conversation
Current Playwright Test Results Summary✅ 13 Passing - Run may still be in progress, this comment will be updated as current testing workflow or job completes... (Last updated on 06/16/2023 10:14:21pm UTC) Run DetailsRunning Workflow e2e-couchdb on Github Actions Commit: 472757a Started: 06/16/2023 10:10:25pm UTC
|
Test Case | Last 7 days Failures | Last 7 days Flakes |
---|---|---|
Notebook Tests with CouchDB @couchdb Inspect Notebook Entry Network Requests
Retry 1 • Initial Attempt |
3.70% (1)1 / 27 runfailed over last 7 days |
40.74% (11)11 / 27 runsflaked over last 7 days |
📄 functional/couchdb.e2e.spec.js • 1 Flake
Test Case Results
Test Case | Last 7 days Failures | Last 7 days Flakes |
---|---|---|
CouchDB Status Indicator with mocked responses @couchdb Shows red if not connected
Retry 1 • Initial Attempt |
0% (0)0 / 27 runsfailed over last 7 days |
7.41% (2)2 / 27 runsflaked over last 7 days |
Codecov Report
@@ Coverage Diff @@
## master #6710 +/- ##
==========================================
- Coverage 54.18% 53.76% -0.43%
==========================================
Files 623 623
Lines 24656 24656
Branches 2469 2469
==========================================
- Hits 13361 13257 -104
- Misses 10631 10734 +103
- Partials 664 665 +1
*This pull request uses carry forward flags. Click here to find out more.
... and 28 files with indirect coverage changes Continue to review full report in Codecov by Sentry.
|
Oh that's what was going on. I saw the behavior and assumed state was being tracked on a shared object. Nice one, thanks for fixing. |
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.
Smoke tested locally and this is working great. I have some small suggestions to improve the e2e test, otherwise LGTM!
e2e/tests/functional/plugins/imagery/exampleImagery.e2e.spec.js
Outdated
Show resolved
Hide resolved
e2e/tests/functional/plugins/imagery/exampleImagery.e2e.spec.js
Outdated
Show resolved
Hide resolved
|
||
await expect(imageElements).toHaveCount(2); | ||
|
||
const imageOne = await page.locator('.c-imagery__main-image-wrapper').nth(0); |
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.
Nice work with these locators! Small nitpick, .locator()
is synchronous so we can remove the await
from each of these calls.
v-for="(layer, index) in layers" | ||
:key="index" | ||
> | ||
<label> |
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.
👏👏👏
Co-authored-by: Jesse Mazzella <[email protected]>
Co-authored-by: Jesse Mazzella <[email protected]>
Closes #6709
Describe your changes:
Removed ids from dom elements and scoped labels to the inputs by wrapping inputs in label elements.
All Submissions:
Author Checklist
Reviewer Checklist