-
Notifications
You must be signed in to change notification settings - Fork 21
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
[O2B-844] Filter according to B field in runs #1803
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1803 +/- ##
==========================================
- Coverage 43.77% 43.58% -0.19%
==========================================
Files 893 893
Lines 15959 15954 -5
Branches 3005 3003 -2
==========================================
- Hits 6986 6954 -32
- Misses 8973 9000 +27 ☔ View full report in Codecov by Sentry. |
test/public/runs/overview.test.js
Outdated
@@ -596,6 +596,21 @@ module.exports = () => { | |||
expect(runDurationList.every((runDuration) => runDuration === 'UNKNOWN')).to.be.true; | |||
}); | |||
|
|||
it('should successfully apply alice currents filters', async () => { | |||
await goToPage(page, 'run-overview'); |
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.
You should avoid as much as possible to use goToPage
, at some point it make pupeteer crash (I was not able to figure out why). Please try to pressElement
on the runs overview link at the top of the page for example.
@@ -306,7 +306,7 @@ module.exports = () => { | |||
it('should successfully filter on detectors', async () => { | |||
// Open filter toggle | |||
await pressElement(page, '#openFilterToggle'); | |||
await page.waitForSelector('.detectors-filter .dropdown-trigger'); | |||
await page.waitForSelector('.detectors-filter .dropdown-trigger', { visible: true }); |
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.
Why this change? Same for all the {visible: true}
I have a JIRA ticket
Notable changes for users:
-tag colours will now update when looking at run details
Notable changes for developers:
Changes made to the database: